/* ================================
   Related Content (YOUR VERSION)
================================ */
.related-content {
  border-top: 0px solid rgba(0, 0, 0, 0.1);
  background-color: #fff;
}
.related-content2 {
  background-color: rgba(0, 0, 0, 0.1);
}

.related-title {
  margin-bottom: 40px;
  font-size: 40px;
  font-weight: normal;
  font-family: var(--font_regular);
  color: #000;
}

/* Track the section heading scale (.blog-details__content h3):
   40px -> 35px (<=1199) -> 28px (<=767) */
@media only screen and (max-width: 1199px) {
  .related-title {
    font-size: 35px;
  }
}

.related-item {
  display: block;
}

.related-thumb {
  position: relative;
  width: 100%;
  aspect-ratio: 3 / 2;   /* scales proportionally with column width at every breakpoint */
  overflow: hidden;
  border-radius: 0;
}

.related-thumb img {
  display: block;
  width: 100%;
  height: 100%;          /* fill the aspect-ratio box (was fixed 300px) */
  object-fit: cover;
  transform: scale(1);
  transition: transform 0.8s ease;
}

.related-thumb:hover img {
  transform: scale(1.12);
}

.related-meta {
  display: block;
  margin-top: 15px;
  font-size: 14px;
  color: #777;
  letter-spacing: 0.5px;
}

.related-meta2 {
  display: block;
  margin-top: 0;
  font-size: 16px;
  color: #000;
  font-family: var(--font_light);
}

.related-text {
  margin-top: 0;
  font-size: 24px;
  font-weight: normal;
  font-family: var(--font_regular);
  line-height: 26px;
  color: #000;
  transition: color 0.3s ease;
}

/* ================================
   Footer - Screenshot Style
================================ */
.site-footer {
  background: #000;
  color: #fff;
  padding: 48px 0 48px;
  position: relative;
  z-index: 2;
}
.site-footer::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 2px;
  background: #000;
}
.site-footer a {
  color: #fff;
  text-decoration: none;
}

.footer-top-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
  min-height: 0;
}

.footer-social {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 0;
}

.footer-social a {
  width: 50px;
  height: 50px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: #fff;
  transition: all 0.3s ease;
}

.footer-social a:hover {
  background: #fff;
  color: #000;
  border-color: #fff;
}

.footer-top-page {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  font-size: 18px;
  letter-spacing: 0.5px;
  font-family: var(--font_light);
}

.footer-top-page__text {
  color: #fff;
}

.footer-top-page__icon {
  width: 50px;
  height: 50px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  transition: all 0.3s ease;
}

.footer-top-page:hover .footer-top-page__icon {
  background: #fff;
  color: #000;
  border-color: #fff;
}

.footer-divider {
  margin-top: 40px;
  margin-bottom: 24px;
  border-top: 0px solid rgba(255, 255, 255, 0.14);
}

.footer-bottom {
  margin-top: 0;
  padding-top: 0;
  border-top: 0;
}

.footer-bottom p {
  margin: 0;
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: 0.3px;
  color: #fff;
  font-family: var(--font_light);
}

.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-newsletter {
  padding: 0 0 6px;
  background: transparent;
  border: 0;
  color: #fff;
  font-size: 18px;
  letter-spacing: 0.5px;
  border-bottom: 1px solid #fff;
  cursor: pointer;
  transition: opacity 0.3s ease;
  font-family: var(--font_light);
}

.footer-newsletter:hover {
  opacity: 0.7;
}

/* ================================
   Newsletter Modal (Centered + Premium)
================================ */
.newsletter-modal {
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s ease, visibility 0.35s ease;
}

.newsletter-modal.is-open {
  opacity: 1;
  visibility: visible;
}

.newsletter-modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.78);
  backdrop-filter: blur(8px);
  transition: background 0.35s ease, backdrop-filter 0.35s ease;
}

.newsletter-modal__dialog {
  position: relative;
  z-index: 2;
}

.newsletter-modal__dialog--simple {
  width: min(640px, calc(100% - 30px));
  background: #000;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.35);
  transform: translateY(20px) scale(0.96);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.newsletter-modal.is-open .newsletter-modal__dialog--simple {
  transform: translateY(0) scale(1);
}

.newsletter-modal__content {
  padding: 42px;
}

.newsletter-modal__close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: transparent;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 3;
}

.newsletter-modal__close:hover {
  background: #fff;
  color: #000;
  border-color: #fff;
}

.newsletter-modal__eyebrow {
  display: block;
  margin-bottom: 14px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.55);
  letter-spacing: 0.6px;
  text-transform: uppercase;
  font-family: var(--font_light);
}

.newsletter-modal__title {
  margin-bottom: 14px;
  font-size: 42px;
  line-height: 1.05;
  font-weight: normal;
  font-family: var(--font_regular);
  color: #fff;
}

.newsletter-modal__text {
  max-width: 520px;
  margin-bottom: 24px;
  font-size: 16px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.7);
  font-family: var(--font_light);
}

.newsletter-simple-form {
  position: relative;
  display: flex;
  gap: 12px;
  align-items: stretch;
}

.newsletter-simple-form__field {
  flex: 1;
}

.newsletter-simple-form__field input {
  width: 100%;
  height: 56px;
  padding: 0 18px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: transparent;
  color: #fff;
  font-size: 16px;
  font-family: var(--font_light);
  outline: none;
  transition: border-color 0.3s ease, background-color 0.3s ease;
}

.newsletter-simple-form__field input::placeholder {
  color: rgba(255, 255, 255, 0.45);
}

.newsletter-simple-form__field input:focus {
  border-color: #fff;
  background: rgba(255, 255, 255, 0.03);
}

.newsletter-simple-form__field input.error {
  border-color: #e61e28;
}

.newsletter-simple-form__submit {
  position: relative;
  min-width: 160px;
  height: 56px;
  padding: 0 22px;
  border: 1px solid #fff;
  border-radius: 0px;
  background: #fff;
  color: #000;
  font-size: 14px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  font-family: var(--font_regular);
  cursor: pointer;
  transition: all 0.3s ease;
}

.newsletter-simple-form__submit:hover {
  background: transparent;
  color: #fff;
}

.newsletter-simple-form__submit.is-loading {
  opacity: 0.8;
  pointer-events: none;
}

.newsletter-simple-form__submit.is-loading::after {
  content: "";
  width: 16px;
  height: 16px;
  margin-left: 10px;
  border: 2px solid currentColor;
  border-right-color: transparent;
  border-radius: 50%;
  display: inline-block;
  vertical-align: -3px;
  animation: newsletter-spin 0.7s linear infinite;
}

@keyframes newsletter-spin {
  to {
    transform: rotate(360deg);
  }
}

.newsletter-simple-form__note,
.newsletter-simple-form__success,
.newsletter-simple-form__error {
  margin-top: 10px;
  line-height: 1.6;
  font-family: var(--font_light);
}

.newsletter-simple-form__note {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
}

.newsletter-simple-form__error,
.newsletter-simple-form__success {
  font-size: 18px;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.35s ease, transform 0.35s ease;
}

.newsletter-simple-form__error {
  color: #e61e28;
}

.newsletter-simple-form__success {
  color: #fff;
}

.newsletter-simple-form__error.is-visible,
.newsletter-simple-form__success.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.newsletter-simple-form__trap {
  position: absolute;
  left: -5000px;
}

.visually-hidden {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ================================
   Responsive
================================ */
@media only screen and (max-width: 991px) {
  .site-footer {
    padding: 90px 0 40px;
  }

  .footer-top-row {
    min-height: auto;
  }

  .footer-divider {
    margin-top: 50px;
  }
}

@media only screen and (max-width: 767px) {
  .related-title {
    font-size: 28px;
    margin-bottom: 24px;
  }

  .related-meta {
    margin-top: 12px;
    font-size: 13px;
    letter-spacing: 0.6px;
  }

  .related-meta2 {
    font-size: 15px;
  }

  .related-text {
    font-size: 18px;
    line-height: 24px;
  }

  .footer-top-page {
    display: none;
  }

  .footer-top-row {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
  }

  .footer-social {
    justify-content: center;
  }

  .footer-bottom-inner {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 14px;
  }

  .footer-bottom p {
    text-align: center;
  }

  .footer-newsletter {
    text-align: center;
    font-size: 15px;
  }

  .footer-divider {
    margin-top: 40px;
    margin-bottom: 20px;
  }

  .newsletter-modal__dialog--simple {
    width: calc(100% - 20px);
  }

  .newsletter-modal__content {
    padding: 26px 18px 18px;
  }

  .newsletter-modal__title {
    font-size: 26px;
    line-height: 1.1;
    padding-right: 40px;
  }

  .newsletter-modal__text {
    font-size: 15px;
    line-height: 1.6;
  }

  .newsletter-simple-form {
    flex-direction: column;
  }

  .newsletter-simple-form__submit {
    width: 100%;
  }
}

@media only screen and (max-width: 575px) {
  .related-title {
    font-size: 28px; /* same as .blog-details__content h3 on mobile */
  }

  .related-meta {
    font-size: 13px;
  }

  .related-meta2 {
    font-size: 15px;
  }

  .related-text {
    font-size: 18px;
    line-height: 24px;
  }

  .site-footer {
    padding: 70px 0 32px;
  }

  .footer-social a {
    width: 46px;
    height: 46px;
    font-size: 18px;
  }

  .footer-bottom p {
    font-size: 13px;
  }

  .footer-newsletter {
    font-size: 14px;
  }
}
.dw-btn {
  display: inline-block;
  padding: 12px 28px;   
  font-size: 16px;
  text-decoration: none;
  transition: all 0.3s ease;
}
.dw-btn--outline {
  border: 1px solid #000;
  color: #000;
  background: transparent;
}

.dw-btn--outline:hover {
  background: #000;
  color: #fff;
}
.firm-feature {
  background: #fff;
}

.firm-feature__grid {
  display: grid;
  grid-template-columns: 1.15fr 0.7fr 1fr;
  gap: 110px 130px;
  align-items: start;
}

.firm-feature__item--wide {
  grid-column: span 2;
}

.firm-feature__item--portrait {
  grid-column: 3;
}

.firm-feature__item--small {
  grid-column: 1;
}

.firm-feature__item--offset {
  grid-column: 2 / 4;
}

.firm-feature__media {
  margin: 0;
}

.firm-feature__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.firm-feature__item--portrait .firm-feature__media img,
.firm-feature__item--small .firm-feature__media img {
  height: 100%;
}

.firm-feature__media figcaption {
  margin-top: 8px;
  font-size: 12px;
  line-height: 1.4;
  color: #555;
  font-family: var(--font_light);
}

.firm-feature__content {
  margin-top: 60px;
  max-width: 920px;
}

.firm-feature__content h3 {
  margin-bottom: 20px;
  font-size: 40px;
  line-height: 1.1;
  color: #000;
}

.firm-feature__content p {
  margin-bottom: 60px;
  font-size: 18px;
  line-height: 25px;
  letter-spacing: 0.1px;
  color: #000;
  font-family: var(--font_extralight);
}

@media only screen and (max-width: 1199px) {
  .firm-feature__grid {
    gap: 70px 60px;
  }
}

@media only screen and (max-width: 991px) {
  .firm-feature__grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .firm-feature__item,
  .firm-feature__item--wide,
  .firm-feature__item--portrait,
  .firm-feature__item--small,
  .firm-feature__item--offset {
    grid-column: 1;
  }

  .firm-feature__media img,
  .firm-feature__item--portrait .firm-feature__media img,
  .firm-feature__item--small .firm-feature__media img {
    height: auto;
  }
}

@media only screen and (max-width: 575px) {
  .firm-feature__content h3 {
    font-size: 28px;
  }
}
.img-caption {
  font-size: 14px;
  line-height: 1.4;
  color: #555; /* adjust if background is light */
}
@media only screen and (max-width: 991px) {

  .firm-feature__thumb2 img {
    width: 80%;
    margin: 0 auto;
  }

}

@media only screen and (max-width: 575px) {

  .firm-feature__thumb2 img {
    width: 100%;
  }

}
@media only screen and (max-width: 991px) {

  .firm-feature__thumb2 + .img-caption,
  .firm-feature__thumb2 ~ .img-caption {
    text-align: center;
    display: none;
  }

}
@media only screen and (max-width: 767px) {

  .firm-feature__thumb2 {
    display: none;
  }

}
/* Image name (strong) */
.img-name {
  font-family: var(--font_medium); /* matches your system */
  font-weight: 500;
  color: #000;
}

/* Photographer (lighter) */
.img-author {
  font-family: var(--font_light);
  font-weight: 300;
  opacity: 0.7;
}

/* Add the slash automatically */
.img-author::before {
  content: " | ";
  opacity: 0.5;
}
.award-3--dark {
  background-color: #000;
  color: rgba(255, 255, 255, 0.72);
}

.award-3--dark .section-title-3__wrapper .sub-title {
  letter-spacing: 0.1px;
  font-family: var(--font_regular);
  color: #e61e28;
}

.award-3--dark .section-title-3__wrapper .title {
  color: #fff;
}

.award-3--dark .section-title-3__wrapper p {
  color: rgba(255, 255, 255, 0.68);
}

.award-3--dark .award-3__list {
  border-top: 0px solid rgba(255, 255, 255, 0.16);
}

.award-3--dark .award-3__list li {
  color: #fff;
  border-bottom: 0px solid rgba(255, 255, 255, 0.16);
}

.award-3--dark .award-3__list li span {
  font-family: var(--font_slight);
  color: rgba(255, 255, 255, 0.5);
}

.award-3--dark[data-background] {
  background-blend-mode: soft-light;
  background-size: cover;
  background-position: center;
}
.award-3--dark .award-3__list li a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;

  color: inherit; /* uses your white text */
  text-decoration: none;
}

.award-3--dark .award-3__list li a:hover {
  color: rgba(255, 255, 255, 0.6); /* subtle hover */
}

.award-3--dark .award-3__list li a span {
  color: rgba(255, 255, 255, 0.5); /* year stays lighter */
}
.firm-feature__link {
  display: block;
  color: inherit;
  text-decoration: none;
}

/* Only the image area clips the zoom */
.firm-feature__thumb {
  overflow: hidden;
}

.firm-feature__thumb img {
  width: 100%;
  display: block;
  transition: transform 0.6s ease;
}

.firm-feature__link:hover .firm-feature__thumb img {
  transform: scale(1.02);
}
.firm-feature__thumb2 img {
  width: 60%;
  display: block;
  transition: transform 0.6s ease;
}

.firm-feature__link:hover .firm-feature__thumb2 img {
  transform: scale(1.02);
}

/* Keep caption normal, outside image */
.firm-feature__media .img-caption {
  position: static;
  z-index: auto;
}
.img-caption--center {
  text-align: center;
}

.img-caption--center .img-name,
.img-caption--center .img-author {
  display: inline; /* ðŸ‘ˆ keep them on same line */
}
/* Remove white seam above footer */

.site-footer {
  margin-top: -6px !important;
  position: relative;
  background: #000 !important;
}

.site-footer::before {
  content: "";
  position: absolute;
  left: 0;
  top: -8px;
  width: 100%;
  height: 8px;
  background: #000;
  z-index: 5;
}
/* Dark mode overrides only.
   This keeps the original font sizes, spacing, card dimensions, and desktop layout. */

.dewan-news-dark-section {
  background-color: #000;
}

.dewan-news-dark-section,
.dewan-news-dark-section .news-card,
.dewan-news-dark-section .news-card__content,
.dewan-news-dark-section .news-card__title {
  color: #fff;
}

.dewan-news-dark-section .news-card__category {
  color: rgba(255, 255, 255, 0.65);
  border-color: rgba(255, 255, 255, 0.28);
}

.dewan-news-dark-section .news-card__date {
  color: rgba(255, 255, 255, 0.55);
}

.dewan-news-dark-section .news-card:hover,
.dewan-news-dark-section .news-card:hover .news-card__title {
  color: #fff;
}

/* Responsive safety only.
   These do not change desktop sizing; they only prevent overflow when pasted into pages
   that do not already include the original responsive grid CSS. */

@media (max-width: 1199px) {
  .dewan-news-dark-section .works-section-12__wrapper {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 767px) {
  .dewan-news-dark-section .works-section-12__wrapper {
    grid-template-columns: 1fr;
  }

  .dewan-news-dark-section .works-section-12__item,
  .dewan-news-dark-section .news-card {
    width: 100%;
  }
}
/* ===== DWN NEWS CARDS — fully scoped ===== */
.dwn-news-section {
  --dwn-ink: #000000;
  --dwn-muted: rgba(17, 17, 17, 0.48);
  --dwn-line: rgba(17, 17, 17, 0.12);
  --dwn-thumb-bg: #f4f4f4;

  padding: 100px 0;
  background-color: #f4f4f4;
  font-family: inherit;
}

.dwn-news-section *,
.dwn-news-section *::before,
.dwn-news-section *::after {
  box-sizing: border-box;
}

.dwn-news-section .dwn-container {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 15px;
}

/* ----- Grid: 3 cols, with vertical divider lines between columns.
       Dividers are drawn as background gradients so they span the
       full height of every row, matching the original design. ----- */
.dwn-news-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  column-gap: 0;
  row-gap: 56px;
  align-items: start;
  background-image:
    linear-gradient(to right, transparent calc(33.333% - 0.5px), var(--dwn-line) calc(33.333% - 0.5px), var(--dwn-line) calc(33.333% + 0.5px), transparent calc(33.333% + 0.5px)),
    linear-gradient(to right, transparent calc(66.666% - 0.5px), var(--dwn-line) calc(66.666% - 0.5px), var(--dwn-line) calc(66.666% + 0.5px), transparent calc(66.666% + 0.5px));
  background-repeat: no-repeat;
  background-size: 100% 100%;
}

.dwn-news-item {
  min-width: 0;
  padding-right: 14px;
  padding-left: 14px;
}

/* first / last column flush with the container edges (3-col layout) */
.dwn-news-item:nth-child(3n + 1) { padding-left: 0; }
.dwn-news-item:nth-child(3n)     { padding-right: 0; }

/* ----- Card ----- */
.dwn-news-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  color: var(--dwn-ink);
  text-decoration: none;
}

.dwn-news-card:hover,
.dwn-news-card:focus,
.dwn-news-card:focus-visible {
  color: var(--dwn-ink);
  text-decoration: none;
}

.dwn-news-card__media {
  position: relative;
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 1.45 / 1; /* uniform landscape thumb on every card */
  margin: 0 0 22px;
  overflow: hidden;
  background-color: var(--dwn-thumb-bg);
}

.dwn-news-card__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1);
  transform-origin: center center;
  transition: transform 0.65s cubic-bezier(0.19, 1, 0.22, 1);
  will-change: transform;
}

.dwn-news-card:hover .dwn-news-card__media img,
.dwn-news-card:focus-visible .dwn-news-card__media img {
  transform: scale(1.07);
}

/* ----- Text content ----- */
.dwn-news-card__content {
  max-width: 92%;
  padding-bottom: 6px;
}

.dwn-news-card__category {
  display: inline-block;
  width: fit-content;
  padding: 5px 10px;
  margin: 0 0 14px;
  border: 1px solid var(--dwn-line);
  border-radius: 0;
  color: var(--dwn-ink);
  font-size: 12px;
  font-weight: normal;
  line-height: 1;
  letter-spacing: normal;
  text-transform: uppercase;
}

.dwn-news-card__title {
  margin: 0;
  color: var(--dwn-ink);
  font-size: 19px;
  font-weight: normal;
  line-height: 1.18;
  letter-spacing: normal;
  text-decoration: none;
}

.dwn-news-card__date {
  display: block;
  margin-top: 11px;
  color: var(--dwn-muted);
  font-size: 14px;
  font-weight: normal;
  line-height: 1.2;
  letter-spacing: normal;
}

/* ----- Still 3 columns, slightly smaller cards ----- */
@media only screen and (max-width: 1199px) {
  .dwn-news-grid {
    row-gap: 50px;
  }

  .dwn-news-card__title { font-size: 18px; }
}

/* ----- 2 columns ----- */
@media only screen and (max-width: 991px) {
  .dwn-news-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    row-gap: 44px;
    background-image:
      linear-gradient(to right, transparent calc(50% - 0.5px), var(--dwn-line) calc(50% - 0.5px), var(--dwn-line) calc(50% + 0.5px), transparent calc(50% + 0.5px));
  }

  .dwn-news-item:nth-child(3n + 1) { padding-left: 14px; }
  .dwn-news-item:nth-child(3n)     { padding-right: 14px; }
  .dwn-news-item:nth-child(2n + 1) { padding-left: 0; }
  .dwn-news-item:nth-child(2n)     { padding-right: 0; }

  .dwn-news-card__content { max-width: 100%; }

  .dwn-news-card__title {
    font-size: 18px;
    line-height: 1.22;
  }

}

/* ----- 1 column ----- */
@media only screen and (max-width: 575px) {
  .dwn-news-section { padding: 70px 0; }

  .dwn-news-grid {
    grid-template-columns: 1fr;
    row-gap: 0;
    background-image: none;
  }

  .dwn-news-item,
  .dwn-news-item:nth-child(2n),
  .dwn-news-item:nth-child(2n + 1) {
    padding-right: 0;
    padding-left: 0;
    padding-bottom: 34px;
    margin-bottom: 34px;
    border-bottom: 1px solid var(--dwn-line);
  }

  .dwn-news-item:last-child {
    padding-bottom: 0;
    margin-bottom: 0;
    border-bottom: 0;
  }

  .dwn-news-card__media { margin-bottom: 18px; }

  .dwn-news-card__title { font-size: 17px; }
}

/* ================================
   Mobile Navigation Overlay
   (Full-screen panel, slides down from top)
   Scoped under `.mobile-nav` so it only affects
   the primary offcanvas menu, not other .side-info
   instances elsewhere in the template.
================================ */
.mobile-nav .side-info {
  top: 0;
  right: 0;
  left: 0;
  width: 100%;
  max-width: none;
  height: 100vh;
  height: 100dvh;
  background: #000;
  padding: 0;
  overflow-y: auto;
  transform: translateY(-100%);
  transition: transform 0.55s cubic-bezier(0.65, 0, 0.35, 1);
  display: flex;
  flex-direction: column;
}

.mobile-nav .side-info.info-open {
  opacity: 1;
  transform: translateY(0);
}

.mobile-nav .side-info-content {
  display: flex;
  flex-direction: column;
  width: 100%;
  min-height: 100%;
  box-sizing: border-box;
  padding: clamp(24px, 5vh, 40px) clamp(24px, 6vw, 64px);
}

/* ---- Header row: logo + close (top of panel) ---- */
.mobile-nav__header {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.mobile-nav__logo {
  width: 180px;
}

.mobile-nav__logo img {
  display: block;
  width: 100%;
  height: auto;
}

/* Close button â€” matches the Newsletter Modal close button
   (same size/shape/hover as .mobile-nav__social a below) */
.mobile-nav__close {
  width: 44px;
  height: 44px;
  min-width: 44px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  line-height: 1;
  color: #fff;
  background: transparent;
  cursor: pointer;
  transition: all 0.3s ease;
}

.mobile-nav__close:hover {
  background: #fff;
  color: #000;
  border-color: #fff;
  transform: none;
}

/* ---- Nav links (vertically centered in remaining space) ---- */
.mobile-nav__menu {
  flex: 1 1 auto;
  display: flex;
  align-items: center;
  min-height: 0;
  margin: 24px 0;
  overflow-y: auto;
  scrollbar-width: none;
}

.mobile-nav__menu::-webkit-scrollbar {
  display: none;
}

.mobile-nav__menu ul {
  list-style: none;
  margin: 0;
  padding: 0;
  width: 100%;
}

.mobile-nav__menu li + li {
  margin-top: clamp(10px, 2.4vh, 22px);
}

.mobile-nav__menu a {
  display: inline-block;
  font-family: var(--font_regular);
  font-weight: normal;
  font-size: clamp(30px, 7vw, 52px);
  line-height: 1.15;
  letter-spacing: normal;
  color: #fff;
  text-decoration: none;
  transition: opacity 0.3s ease;
}

.mobile-nav__menu a:hover {
  opacity: 0.6;
}

/* ---- Footer row: social + copyright (bottom of panel) ---- */
.mobile-nav__footer {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.mobile-nav__social {
  display: flex;
  align-items: center;
  gap: 14px;
}

/* Social buttons â€” same size/shape as .mobile-nav__close above */
.mobile-nav__social a {
  width: 44px;
  height: 44px;
  min-width: 44px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: #fff;
  transition: all 0.3s ease;
}

.mobile-nav__social a:hover {
  background: #fff;
  color: #000;
  border-color: #fff;
}

.mobile-nav__copy {
  margin: 0;
  font-family: var(--font_light);
  font-size: 13px;
  letter-spacing: 0.3px;
  color: rgba(255, 255, 255, 0.65);
}

/* ---- Landscape iPad Pro / tablet-width consistency (992â€“1199px,
   the range in which the mobile toggle button is shown) ---- */
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .mobile-nav .side-info-content {
    padding: clamp(32px, 5vh, 56px) clamp(48px, 6vw, 96px);
  }

  .mobile-nav__close,
  .mobile-nav__social a {
    width: 48px;
    height: 48px;
    min-width: 48px;
    font-size: 18px;
  }

  .mobile-nav__menu a {
    font-size: 46px;
  }

  .mobile-nav__copy {
    font-size: 14px;
  }
}

/* ---- Short-viewport safety (landscape phones) ---- */
@media only screen and (max-height: 500px) {
  .mobile-nav .side-info-content {
    padding-top: 18px;
    padding-bottom: 18px;
  }

  .mobile-nav__menu {
    align-items: flex-start;
    margin: 14px 0;
    padding: 4px 0;
  }

  .mobile-nav__menu a {
    font-size: clamp(22px, 6.5vh, 32px);
  }

  .mobile-nav__menu li + li {
    margin-top: 8px;
  }
}

/* ---- Small phones: prevent copyright line from crowding icons ---- */
@media only screen and (max-width: 380px) {
  .mobile-nav__footer {
    justify-content: flex-start;
  }

  .mobile-nav__copy {
    width: 100%;
    order: 3;
  }
}
/* Align hamburger right spacing with logo left spacing (all headers, responsive) */
@media (max-width: 1199px) {
  [class*="header-area"] .header__navicon .side-toggle,
  [class*="header-area"] .header-right .side-toggle {
    padding-right: 0 !important;
    margin-right: 0 !important;
  }

  [class*="header-area"] .header-right {
    margin-right: 0 !important;
  }
}
/* =========================================================
   EXPLORE CTA — "Explore More of Our Work"
   Full-bleed grey band sitting between the team grid and the
   footer. Content is centred inside the shared 1650 container.
========================================================= */
.explore-cta {
  background-color: #666666;
  padding-top: 100px;
  padding-bottom: 100px;
}

.explore-cta__inner {
  width: min(100%, 1120px);
  margin: 0 auto;
  text-align: center;
}

.explore-cta__title {
  margin: 0;
  color: var(--white);
  font-family: var(--font_regular);
  font-size: 44px;
  line-height: 1.1;
  letter-spacing: normal;
}

.explore-cta__btn {
  margin-top: 40px;
}

.explore-cta__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 15px 34px;
  border: 1px solid rgba(255, 255, 255, 0.65);
  color: var(--white);
  font-family: var(--font_regular);
  font-size: 17px;
  line-height: 1;
  letter-spacing: normal;
  white-space: nowrap;
  transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}

.explore-cta__link:hover {
  background-color: var(--white);
  border-color: var(--white);
  color: var(--primary);
}

.explore-cta__text {
  margin: 40px auto 0;
  max-width: 1040px;
  color: var(--white);
  font-family: var(--font_extralight);
  font-size: 24px;
  line-height: 1.5;
  letter-spacing: normal;
}

.explore-cta__email {
  display: inline-block;
  margin-top: 32px;
  color: var(--white);
  font-family: var(--font_regular);
  font-size: 24px;
  line-height: 1.4;
  letter-spacing: normal;
}

.explore-cta__email:hover {
  color: var(--white);
  text-decoration: underline;
  text-underline-offset: 4px;
}

@media only screen and (max-width: 1399px) {
  .explore-cta {
    padding-top: 72px;
    padding-bottom: 72px;
  }
  .explore-cta__title {
    font-size: 44px;
  }
  .explore-cta__btn {
    margin-top: 32px;
  }
  .explore-cta__text {
    margin-top: 34px;
    font-size: 21px;
  }
  .explore-cta__email {
    margin-top: 28px;
    font-size: 21px;
  }
}

@media only screen and (max-width: 991px) {
  .explore-cta {
    padding-top: 54px;
    padding-bottom: 54px;
  }
  .explore-cta__title {
    font-size: 36px;
  }
  .explore-cta__btn {
    margin-top: 28px;
  }
  .explore-cta__text {
    margin-top: 30px;
    font-size: 19px;
  }
  .explore-cta__email {
    margin-top: 24px;
    font-size: 19px;
  }
}

@media only screen and (max-width: 575px) {
  .explore-cta__title {
    font-size: 28px;
    line-height: 1.15;
  }
  .explore-cta__link {
    min-height: 48px;
    padding: 13px 26px;
    font-size: 15px;
  }
  .explore-cta__text {
    font-size: 17px;
    line-height: 1.55;
  }
  .explore-cta__email {
    font-size: 17px;
    word-break: break-word;
  }
}
