:root {
  --color-primary-dark: #0a2040;
  --color-text-light: #a4b2c8;
  --color-text-dark: #333;
  --color-white: #ffffff;
  --color-black: #000000;
  --font-dm-sans: "Dm Sans", sans-serif;
  --font-heebo: "Heebo", sans-serif;
  --transition-standard: all 0.3s ease;
  --radius-sm: 4px;
  --space-2: 8px;
  --size-arrow-sm: 10px;
  --heading-size-lg: 56px;
  --shadow-soft: 0 4px 12px rgba(0, 0, 0, 0.15);
  --shadow-hover: 0 6px 20px rgba(0, 0, 0, 0.25);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* DM Sans */
@font-face {
  font-family: "DM Sans";
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url("/fonts/dm-sans/dm-sans-v17-latin-300.woff2") format("woff2");
}
@font-face {
  font-family: "DM Sans";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("/fonts/dm-sans/dm-sans-v17-latin-regular.woff2") format("woff2");
}
@font-face {
  font-family: "DM Sans";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("/fonts/dm-sans/dm-sans-v17-latin-500.woff2") format("woff2");
}
@font-face {
  font-family: "DM Sans";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("/fonts/dm-sans/dm-sans-v17-latin-600.woff2") format("woff2");
}
@font-face {
  font-family: "DM Sans";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("/fonts/dm-sans/dm-sans-v17-latin-700.woff2") format("woff2");
}

/* Heebo */
@font-face {
  font-family: "Heebo";
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url("/fonts/heebo/heebo-v28-latin-300.woff2") format("woff2");
}
@font-face {
  font-family: "Heebo";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("/fonts/heebo/heebo-v28-latin-regular.woff2") format("woff2");
}
@font-face {
  font-family: "Heebo";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("/fonts/heebo/heebo-v28-latin-500.woff2") format("woff2");
}
@font-face {
  font-family: "Heebo";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("/fonts/heebo/heebo-v28-latin-600.woff2") format("woff2");
}
@font-face {
  font-family: "Heebo";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("/fonts/heebo/heebo-v28-latin-700.woff2") format("woff2");
}

body {
  margin: 0;
  padding: 0;
  font-family: "Heebo", sans-serif;
  font-size: 15px;
  line-height: 1.6em;
  font-weight: 400;
  color: #263037;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
.top-bar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--nav-topbar-height, 40px);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 clamp(20px, 3vw, 42px);
  box-sizing: border-box;
  z-index: var(--z-fixed, 1001);
  color: rgba(255, 255, 255, 0.7);
  pointer-events: none;
  transform: translateY(0);
  transition:
    transform 0.25s ease,
    background-color var(--transition-base) ease;
  will-change: transform;
}

.top-bar.is-hidden {
  transform: translateY(-100%);
}

/* Homepage top bar */
.top-bar--home {
  background-color: transparent;
}

/* Inner pages top bar */
.top-bar--inner {
  background-color: rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.top-bar__left,
.top-bar__right {
  display: flex;
  align-items: center;
  gap: 10px;
}

.top-bar__lang-switch {
  pointer-events: auto;
  color: inherit;
  text-decoration: none;
  cursor: pointer;
  flex-direction: row-reverse;
}

.top-bar__lang-switch:hover {
  opacity: 0.85;
}

.top-bar__left span,
.top-bar__right span {
  font-size: 13px;
}

.top-bar__left i {
  margin-right: 0;
}

.top-bar__right i {
  margin-right: 0;
}

/*Site Header */

.site-header {
  position: fixed;
  top: var(--nav-topbar-height, 34px);
  left: 0;
  right: 0;
  width: 100%;
  z-index: var(--z-dropdown, 1000);
  transform: translateY(0);
  transition:
    transform 0.25s ease,
    background-color var(--transition-base) ease;
  will-change: transform;
}

.site-header.is-hidden {
  transform: translateY(calc(-100% - var(--nav-topbar-height, 34px)));
}

/* header: Primary color with opacity */
.site-header--inner {
  background-color: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: none;
}

.site-header--inner .brand span,
.site-header--inner .nav-link,
.site-header--inner .nav-links a {
  color: var(--color-white);
}

.site-header--inner .nav-btn {
  color: var(--color-white);
  border-color: rgba(255, 255, 255, 0.5);
}

.site-header--inner .nav-btn:hover,
.site-header--inner .nav-btn.is-active-btn {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--color-white);
  color: var(--color-white);
}

.site-header--inner .nav-search {
  color: var(--color-white, #fff);
}

.site-header--inner .nav-search:hover {
  opacity: 0.8;
}

.site-header--inner .hamburger__line {
  color: var(--color-white, #fff);
}

.nav {
  --nav-item-gap: 24px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: var(--nav-item-gap);
  width: 100%;
  max-width: 1400px;
  margin: 0;
  margin-top: 31px;
  padding: var(--header-nav-padding-y) var(--header-nav-padding-x);
}

.brand {
  text-decoration: none;
  display: flex;
  align-items: center;
}

.brand img {
  height: var(--header-logo-height);
  width: auto;
}

/* Logo switching based on header type */
.brand__logo--dark {
  display: none;
}

.brand__logo--light {
  display: block;
}

/* Always show light logo on desktop */
.site-header--inner .brand__logo--light {
  display: block;
}

.site-header--inner .brand__logo--dark {
  display: none;
}

.brand span {
  color: #2d3748;
  font-size: 1.25rem;
  font-weight: 600;
}

/* HAMBURGER MENU */

.hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  align-items: center;
  justify-content: center;
  width: 47px;
  height: 47px;
}

.brand--mobile,
.hamburger {
  margin: 0 30px;
}

.hamburger__lines {
  display: flex;
  flex-direction: column;
  gap: 6px;
  align-items: center;
  justify-content: center;
}

.hamburger__line {
  width: 28px;
  height: 2.5px;
  background-color: #2d3748;
  transition: all 0.3s ease;
  border-radius: 2px;
}

.hamburger.active .hamburger__line:nth-child(1) {
  transform: translateY(4.25px) rotate(45deg);
}

.hamburger.active .hamburger__line:nth-child(2) {
  transform: translateY(-4.25px) rotate(-45deg);
}

/* NAVIGATION MENU */

.nav-right {
  display: flex;
  align-items: center;
  gap: 18px;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: var(--nav-item-gap);
  margin: 0;
  padding: 0;
  align-items: center;
}

.nav-links li {
  margin: 0;
}

.nav-links__brand {
  display: none;
}

/* Contact Us list item */
.nav-links__contact {
  margin-left: 8px;
}

.nav-link,
.nav-links a {
  color: #2d3748;
  text-decoration: none;
  font-size: var(--header-nav-link-size);
  font-weight: 500;
  transition: color 0.3s ease;
  position: relative;
  display: inline-block;
}

.nav-link__label {
  position: relative;
  display: inline-block;
}

.nav-link__label::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 4px;
  width: 100%;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.nav-link:hover .nav-link__label::after,
.nav-link.is-active .nav-link__label::after {
  transform: scaleX(1);
}

/* CONTACT US BUTTON */

.nav-link-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-left: 8px;
  width: 12px;
  height: 12px;
  transition: transform 0.3s ease;
}

.nav-link-arrow svg {
  stroke: currentColor;
  fill: none;
  stroke-width: 1.5;
  width: 100%;
  height: 100%;
  display: block;
}

.nav-link:hover .nav-link-arrow {
  transform: translate(2px, -2px);
}

.qodef-m-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-left: 4px;
  width: 11px;
  height: 11px;
  overflow: hidden;
  position: relative;
}

.qodef-svg--button-arrow {
  width: 100%;
  height: 100%;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.5;
  display: block;
}

.qodef-svg--button-arrow g:first-child {
  transition: transform 0.3s ease;
  transform: translate(0, 0);
}

.qodef-svg--button-arrow g:last-child {
  transition: transform 0.3s ease;
  transform: translate(-100%, 100%);
}

.nav-link:hover .qodef-svg--button-arrow g:first-child {
  transform: translate(100%, -100%);
}

.nav-link:hover .qodef-svg--button-arrow g:last-child {
  transform: translate(0, 0);
}

/* Contact Us link with frosted glass button styling */
.nav-links a[href*="contact"],
.nav-links a[href*="Contact"],
.nav-links a.nav-link--contact {
  display: inline-flex;
  align-items: center;
  vertical-align: middle;
  width: auto;
  margin: 0;
  gap: 8px;
  padding: 6px 33px 7px;
  background-color: rgba(255, 255, 255, 0.15);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  color: var(--color-white, #fff);
  border: none;
  border-radius: 25px;
  text-decoration: none;
  font-family: "Dm Sans", sans-serif;
  font-size: 15px;
  line-height: 2em;
  font-weight: 400;
  outline: 0;
  transition:
    color 0.27s ease-out,
    background-color 0.27s ease-out,
    border-color 0.27s ease-out;
  white-space: nowrap;
}

.nav-links a[href*="contact"]:hover,
.nav-links a[href*="Contact"]:hover,
.nav-links a.nav-link--contact:hover {
  background-color: rgba(255, 255, 255, 0.2);
  color: var(--color-white, #fff);
  transform: none;
}

.nav-links a[href*="contact"].is-active,
.nav-links a[href*="Contact"].is-active,
.nav-links a.nav-link--contact.is-active {
  background-color: var(--color-primary-dark);
  color: var(--color-white, #fff);
}

.nav-links a[href*="contact"] .nav-link-arrow,
.nav-links a[href*="Contact"] .nav-link-arrow,
.nav-links a.nav-link--contact .nav-link-arrow {
  width: 12px;
  height: 12px;
  transition: transform 0.3s ease;
}

.nav-links a[href*="contact"]:hover .nav-link-arrow,
.nav-links a[href*="Contact"]:hover .nav-link-arrow,
.nav-links a.nav-link--contact:hover .nav-link-arrow {
  transform: translate(2px, -2px);
}

/* NAVIGATION BUTTON */

.nav-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  vertical-align: middle;
  width: auto;
  margin: 0;
  padding: 6px 33px 7px;
  background-color: rgba(255, 255, 255, 0.15);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  color: var(--color-white, #fff);
  border: none;
  border-radius: 25px;
  text-decoration: none;
  font-family: "Dm Sans", sans-serif;
  font-size: 15px;
  line-height: 2em;
  font-weight: 400;
  white-space: nowrap;
  cursor: pointer;
  outline: 0;
  transition:
    color 0.27s ease-out,
    background-color 0.27s ease-out,
    border-color 0.27s ease-out;
}

.nav-btn:hover,
.nav-btn.is-active-btn {
  background-color: rgba(255, 255, 255, 0.35);
  color: var(--color-white, #fff);
}

/* SEARCH BUTTON */

.nav-search-container {
  display: flex;
  align-items: center;
  gap: 16px;
}

.nav-search {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  min-width: var(--header-search-input-height);
  min-height: var(--header-search-input-height);
}

.nav-search svg {
  width: var(--header-search-icon-size);
  height: var(--header-search-icon-size);
  stroke: currentColor;
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
  color: inherit;
  transition: color 0.3s ease;
  display: block;
}

/* Default (non-homepage) search icon - inherits white from parent */
.nav-search:hover svg {
  opacity: 0.8;
}

/* Inline search for mobile (hidden by default) */
.nav-search-inline {
  display: none;
}

/* MAIN CONTENT PADDING */

/* main {
  padding-top: 84px;
} */

/* RESPONSIVE NAVIGATION */

@media (max-width: 1024px) {
  /* Hide top bar on mobile */
  .top-bar {
    display: none;
  }

  /* Reset header to top on mobile */
  .site-header,
  .site-header--inner {
    top: 0;
  }

  .hamburger {
    display: flex;
    width: 47px;
    height: 47px;
    padding: 0;
  }

  .hamburger__lines {
    gap: 7px;
  }

  .hamburger__line {
    width: 34px;
    height: 1px;
    border-radius: 0;
  }

  /* White background for mobile - all pages */
  .site-header,
  .site-header--inner {
    background-color: var(--color-white, #ffffff) !important;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  }

  .site-header .brand,
  .site-header--inner .brand {
    position: relative;
    display: flex;
    align-items: center;
    max-height: 100%;
    margin-right: auto;
  }

  .site-header .brand img,
  .site-header--inner .brand img {
    filter: none;
    height: 30px;
    width: auto;
  }

  /* On small screens: show dark logo and hide light logo */
  .site-header .brand__logo--dark,
  .site-header--inner .brand__logo--dark {
    display: block !important;
  }

  /* Hide light logo on small screens */
  .site-header .brand__logo--light,
  .site-header--inner .brand__logo--light {
    display: none !important;
  }

  /* Dark text and icons for mobile - all pages */
  .site-header .brand span,
  .site-header .nav-link,
  .site-header .nav-links a,
  .site-header--inner .brand span,
  .site-header--inner .nav-link,
  .site-header--inner .nav-links a {
    color: #2d3748 !important;
  }

  .site-header .hamburger__line,
  .site-header--inner .hamburger__line {
    background-color: #2d3748 !important;
  }

  .site-header .nav-btn,
  .site-header--inner .nav-btn {
    color: #2d3748 !important;
    border-color: #2d3748 !important;
  }

  .site-header .nav-btn:hover,
  .site-header--inner .nav-btn:hover,
  .site-header .nav-btn.is-active-btn,
  .site-header--inner .nav-btn.is-active-btn {
    background: #2d3748 !important;
    color: var(--color-white, #ffffff) !important;
  }

  .site-header .nav-search,
  .site-header--inner .nav-search {
    color: #2d3748 !important;
  }

  .site-header .nav-search:hover,
  .site-header--inner .nav-search:hover {
    opacity: 0.7 !important;
  }

  .nav-right {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: var(--color-white, #ffffff);
    border-top: 1px solid #e1e1e1;
    border-bottom: 1px solid #e1e1e1;
    flex-direction: column;
    gap: 0;
    max-height: 0;
    overflow-x: hidden;
    overflow-y: scroll;
    transition: max-height 0.3s ease;
    padding: 0;
    margin: 0;
    z-index: 10;
  }

  .nav-right.active {
    max-height: calc(100vh - 70px);
    padding: 0 7%;
  }

  /* Search at top of mobile menu */
  .site-header .nav-search-container,
  .site-header--inner .nav-search-container {
    display: flex !important;
  }

  .nav-search-container {
    display: none !important;
  }

  .nav-search {
    display: none;
  }

  /* Show inline search on mobile, open by default */
  .nav-search-inline {
    display: block;
    width: 100%;
  }

  .nav-search-inline__input {
    width: 100%;
    height: var(--header-search-input-height);
    padding: 0 var(--spacing-base);
    font-size: var(--header-search-input-font-size);
    border: none;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    background: #f8f9fa;
    color: #2d3748;
    outline: none !important;
    font-family: inherit;
    transition: all 0.3s ease;
  }

  .nav-search-inline__input:focus {
    border-bottom-color: #223035;
    background: var(--color-white, #ffffff);
  }

  .nav-search-inline__input::placeholder {
    color: rgba(45, 55, 72, 0.5);
  }

  .nav-links {
    flex-direction: column;
    gap: 0;
    width: 100%;
    margin: 0 auto;
    align-items: flex-start;
    padding: 34px 0;
    list-style: none;
  }

  .nav-links li {
    position: relative;
    margin: 0;
    padding: 3px 0;
    width: 100%;
  }

  .nav-links a,
  .nav-links a[href*="contact"],
  .nav-links a[href*="Contact"],
  .nav-links a.nav-link--contact {
    font-family: "Dm Sans", sans-serif;
    font-size: 15px;
    line-height: 1.6em;
    font-weight: 500;
    color: #263037 !important;
    display: block;
    text-align: left;
    width: 100%;
  }
  /* Show Contact Us as a plain link in mobile menu, matching other nav items */
  .nav-links a[href*="contact"],
  .nav-links a[href*="Contact"],
  .nav-links a.nav-link--contact {
    background-color: transparent;
    border-radius: 0;
    padding: 0;
  }

  /* Hide Contact Us arrow icon on mobile */
  .nav-links a[href*="contact"] .qodef-m-arrow,
  .nav-links a[href*="Contact"] .qodef-m-arrow,
  .nav-links a.nav-link--contact .qodef-m-arrow {
    display: none;
  }

  .nav-links a.is-active::after {
    display: none;
  }

  .nav-links a.is-active {
    color: inherit;
    font-weight: 500;
  }

  .nav-btn {
    width: 100%;
    text-align: center;
  }

  .nav-search {
    width: 100%;
    justify-content: center;
    padding: 12px;
  }

  .site-header {
    padding: 0;
  }

  .nav {
    position: relative;
    justify-content: space-between;
    gap: 0;
    margin-top: 0;
    height: 70px;
    min-height: 70px;
    padding: 0 7%;
  }

  .brand--mobile,
  .hamburger {
    margin: 0;
  }

  .nav-right {
    gap: 16px;
  }

  .brand--mobile {
    display: flex;
  }

  .brand--mobile img {
    height: 32px;
    width: auto;
  }

  .nav-links__brand {
    display: none;
  }
}

@media (max-width: 480px) {
  .site-header .brand img,
  .site-header--inner .brand img {
    height: 32px;
    width: auto;
  }

  .nav {
    min-height: 68px;
    padding: 10px 18px;
  }

  .hamburger {
    width: 47px;
    height: 47px;
    padding: 0;
  }

  .hamburger__lines {
    gap: 7px;
  }

  .hamburger__line {
    width: 34px;
    height: 1px;
    border-radius: 0;
  }

  .hamburger.active .hamburger__line:nth-child(1) {
    transform: translateY(3.5px) rotate(45deg);
  }

  .hamburger.active .hamburger__line:nth-child(2) {
    transform: translateY(-3.5px) rotate(-45deg);
  }
}

@media (min-width: 1025px) {
  .site-header .brand img,
  .site-header--inner .brand img {
    height: 48px;
    width: auto;
    filter: brightness(0) invert(1);
  }

  .brand--mobile {
    display: none;
  }

  .nav-links__brand {
    display: flex;
    align-items: center;
  }

  .brand--nav {
    display: inline-flex;
    align-items: center;
  }

  .nav-right {
    flex: 1;
    min-width: 0;
    gap: var(--nav-item-gap);
  }

  .site-header--inner .nav {
    --nav-item-gap: 34px;
    max-width: none;
    padding: 16px 36px;
    margin-top: 0;
  }

  .site-header--inner .nav-right {
    flex: 1;
    min-width: 0;
    gap: var(--nav-item-gap);
    justify-content: flex-end;
  }

  .site-header--inner .nav-links {
    width: auto;
    display: flex;
    align-items: center;
    gap: var(--nav-item-gap);
  }

  .site-header--inner .nav-links > li {
    display: flex;
    align-items: center;
    height: 100%;
  }

  .site-header--inner .brand img {
    height: 48px;
  }

  .site-header--inner .nav-links a {
    display: flex;
    align-items: center;
    height: 100%;
    font-family: "Dm Sans", sans-serif;
    font-size: 15px;
    line-height: 1.6em;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.9);
  }

  .site-header--inner .nav-links a[href*="contact"],
  .site-header--inner .nav-links a[href*="Contact"],
  .site-header--inner .nav-links a.nav-link--contact {
    display: inline-flex;
    align-items: center;
    height: auto;
    width: auto;
    margin: 0;
    gap: 8px;
    padding: 6px 33px 7px;
    border-radius: 25px;
    background-color: rgba(255, 255, 255, 0.15);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border: none;
    color: var(--color-white, #fff);
    font-size: 15px;
    line-height: 2em;
    white-space: nowrap;
  }

  .site-header--inner .nav-links a[href*="contact"] .nav-link__label::after,
  .site-header--inner .nav-links a[href*="Contact"] .nav-link__label::after,
  .site-header--inner .nav-links a.nav-link--contact .nav-link__label::after {
    display: none;
  }

  .site-header--inner .nav-search {
    min-width: 40px;
    min-height: 40px;
  }

  .site-header--inner .nav-links__brand {
    display: none;
  }
  .site-header--inner .nav-search {
    display: inline-flex;
    color: var(--color-white, #ffffff);
  }
}
/* Shared Home Page Variables */
:root {
  --home-color-title: #223035;
  --home-white-95: rgba(255, 255, 255, 0.95);
}

/* Hero Section */
.hero {
  position: relative;
  width: 100%;
  min-height: 0;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-size: cover;
  /* background-position: center; */
  background-repeat: no-repeat;
  background-color: var(--color-primary-dark);
  overflow: hidden;
  margin-top: -124px;
  padding-top: 124px;
}

.page-inner .hero {
  min-height: 800px;
  height: 70vh;
}

.hero__container {
  position: relative;
  z-index: 2;
  margin: auto;
  padding: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.hero__content {
  display: flex;
  justify-content: center;
  text-align: center;
}

.hero__title {
  font-size: var(--heading-size-lg);
  font-family: var(--font-dm-sans);
  font-weight: 400;
  line-height: 1.17857em;
  margin: 0;
  letter-spacing: 0;
  text-transform: uppercase;
  color: var(--color-primary-dark);
}

/* Home page desktop — full viewport */
.page-home .hero {
  height: 100vh;
  height: 100svh;
  min-height: 1100px;
  background-position: top center;
}

@media (max-width: 1300px) and (min-width: 769px) {
  .page-home .hero {
    background-position: center center !important;
  }
}

.page-home .hero__title {
  display: inline-block;
  padding: 6px 34px 7px;
}

.hero__subtitle {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: var(--home-white-95);
  line-height: 1.6;
  margin-bottom: 32px;
  max-width: 700px;
}

.hero__cta {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: 14px 32px;
  background: var(--color-white);
  color: #1d3557;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  border-radius: var(--radius-sm);
  transition: var(--transition-standard);
  box-shadow: var(--shadow-soft);
}

.hero__cta:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-hover);
}

@media (max-width: 768px) {
  .hero {
    height: 60vh;
    margin-top: -84px;
    padding-top: 84px;
  }

  .hero__title {
    font-size: 2rem;
  }

  .page-home .hero {
    height: 90.74vw;
    min-height: 280px;
    margin-top: -70px;
    padding-top: 70px;
  }

  .page-home .hero__title {
    padding: 6px 16px;
    font-size: 47px;
  }

  .hero__subtitle {
    font-size: 1rem;
  }

  .scroll-to-top {
    bottom: 20px;
    right: 20px;
    width: 44px;
    height: 44px;
  }

  .scroll-to-top svg {
    width: 20px;
    height: 20px;
  }
}

@media (max-width: 480px) {
  .hero__title {
    font-size: 1.75rem;
  }

  .page-home .hero__title {
    padding: 5px 12px;
  }

  .scroll-to-top {
    width: 40px;
    height: 40px;
  }
}

/* Text Section */
.text-section {
  padding: 80px 0;
  text-align: center;
}

.text-section__content {
  max-width: 1000px;
  margin: 0 auto;
}

.text-section__heading {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 600;
  margin-bottom: 24px;
  line-height: 1.3;
}

.text-section__text {
  font-size: clamp(1rem, 1.5vw, 1.125rem);
  line-height: 1.8;
  opacity: 0.95;
}

.text-section__text p {
  margin-bottom: 16px;
}

@media (max-width: 768px) {
  .text-section {
    padding: 60px 0;
  }
}

@media (max-width: 667px) {
  .page-home .hero {
    height: 70.74vw;
    min-height: 600px;
  }
}

/* Split Content Section (Who we are) */
.split-content-section {
  background-color: var(--color-primary-dark);
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.5);
  transition:
    background 0.3s,
    border 0.3s,
    border-radius 0.3s,
    box-shadow 0.3s;
  border-radius: 3px;
  margin-top: 0;
  margin-bottom: 0;
  padding: 0 3% 0 3%;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.split-content-section--has-bg {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.split-content-section__container {
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 56px;
  display: grid;
  grid-template-columns: minmax(300px, 390px) minmax(560px, 1fr);
  gap: clamp(72px, 8vw, 140px);
  align-items: stretch;
}

.split-content-section__left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 9px 0px 0px 0px;
}

.split-content-section__heading {
  font-family: "Dm Sans", sans-serif;
  font-size: 28px;
  font-weight: 400;
  line-height: 1.3125em;
  margin: 0;
  color: var(--color-white);
  word-wrap: break-word;
}

.split-content-section__text {
  font-family: "Heebo", sans-serif;
  font-size: 15px;
  line-height: 1.6em;
  font-weight: 400;
  max-width: 420px;
  margin-top: 13px;
  color: var(--color-text-light);
}

.split-content-section__text p {
  margin-bottom: 16px;
}

.split-content-section__link {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.4em;
  align-self: flex-start;
  vertical-align: middle;
  width: auto;
  margin: 20px 0 0 0;
  font-family: "Dm Sans", sans-serif;
  font-size: 15px;
  line-height: 2em;
  font-weight: 500;
  color: var(--color-text-light);
  text-decoration: none;
  padding: 0;
  border: 0;
  background-color: transparent;
  background-repeat: no-repeat;
  background-image: linear-gradient(90deg, currentColor 0, currentColor 100%);
  background-position: 100% calc(100% - 1px);
  background-size: 100% 1px;
  transition:
    color 0.27s ease-out,
    background-size 0.27s ease-out;
}

.split-content-section__link:hover {
  background-size: 0 1px;
  background-position: 0 calc(100% - 1px);
}

.split-content-section__link .qodef-m-arrow {
  display: inline-flex;
  width: var(--size-arrow-sm);
  height: var(--size-arrow-sm);
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.split-content-section__link .qodef-svg--button-arrow {
  width: 100%;
  height: 100%;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.5;
  display: block;
}

.split-content-section__link .qodef-svg--button-arrow g:first-child {
  transition: transform 0.3s ease;
  transform: translate(0, 0);
}

.split-content-section__link .qodef-svg--button-arrow g:last-child {
  transition: transform 0.3s ease;
  transform: translate(-100%, 100%);
}

.split-content-section__link:hover .qodef-svg--button-arrow g:first-child {
  transform: translate(100%, -100%);
}

.split-content-section__link:hover .qodef-svg--button-arrow g:last-child {
  transform: translate(0, 0);
}

.split-content-section__right {
  max-width: 740px;
  font-family: var(--font-dm-sans);
}

.split-content-section__right-heading {
  max-width: 544px;
  font-family: "Dm Sans", sans-serif;
  font-size: clamp(47px, 7vw, 56px);
  font-weight: 400;
  line-height: 1.17857em;
  margin: 25px 0;
  color: var(--color-white);
  word-wrap: break-word;
}

.split-content-section__right-text {
  font-family: "Dm Sans", sans-serif;
  font-size: clamp(36px, 5.5vw, 42px);
  line-height: 1.17857em;
  font-weight: 400;
  color: var(--color-text-light);
  max-width: 543px;
}

.split-content-section__right-text p {
  margin-bottom: 26px;
}

@media (min-width: 1025px) {
  .split-content-section__container {
    width: 100%;
    max-width: none;
    padding: 0;
    min-height: 760px;
    display: flex;
    gap: 0;
    align-items: stretch;
  }

  .split-content-section__left,
  .split-content-section__right {
    flex: 0 0 50%;
    max-width: 50%;
  }

  .split-content-section__left {
    padding-right: 7%;
    padding-bottom: 70px;
  }

  .split-content-section__right {
    padding-left: 2%;
    padding-top: 34px;
  }

  .split-content-section__heading {
    font-size: 28px;
    margin: 0;
  }

  .split-content-section__text {
    font-size: 15px;
    line-height: 1.78;
    max-width: 500px;
    margin-bottom: 28px;
  }

  .split-content-section__right-heading {
    font-size: 56px;
    line-height: 1.17857em;
    margin: 25px 0;
  }

  .split-content-section__right-text {
    font-size: 42px;
    line-height: 1.15;
  }
}

/* CTA Section (Join our team) */
.cta-section {
  position: relative;
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-size: cover;
  background-position: center;
  overflow: hidden;
  background-color: var(--color-primary-dark);
}

.cta-section__overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
}

.cta-section__container {
  position: relative;
  z-index: 2;
  max-width: 980px;
  margin: 0 auto;
  padding: 80px 24px;
  text-align: center;
  font-family: var(--font-heebo);
}

.cta-section__heading {
  font-size: var(--heading-size-lg);
  font-weight: 400;
  margin-bottom: 0;
  line-height: 1.2;
  color: var(--color-primary-dark);
}

.cta-section__text {
  font-size: 22px;
  line-height: 1.45;
  font-weight: 400;
  max-width: 700px;
  margin: 10px auto 0;
  color: var(--color-text-dark);
}

.cta-section__button {
  position: relative;
  display: inline-flex;
  align-items: center;
  vertical-align: middle;
  width: auto;
  gap: 8px;
  padding: 6px 33px 7px;
  margin-top: 34px;
  /* background-color: rgba(255, 255, 255, 0.2); */
  background-color: var(--color-primary-dark);
  -webkit-backdrop-filter: blur(4px) brightness(100%);
  backdrop-filter: blur(4px) brightness(100%);
  color: var(--color-text-light);
  border: 1px solid transparent;
  border-radius: 25px;
  text-decoration: none;
  font-family: "Dm Sans", sans-serif;
  font-size: 15px;
  line-height: 2em;
  font-weight: 400;
  outline: 0;
  cursor: pointer;
  white-space: nowrap;
  transition:
    color 0.27s ease-out,
    background-color 0.27s ease-out,
    border-color 0.27s ease-out;
}

.cta-section__button .qodef-m-arrow {
  display: inline-flex;
  width: var(--size-arrow-sm);
  height: var(--size-arrow-sm);
  align-items: center;
  justify-content: center;
}

.cta-section__button .qodef-svg--button-arrow {
  width: 100%;
  height: 100%;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.5;
  display: block;
}

.cta-section__button .qodef-svg--button-arrow g:first-child {
  transition: transform 0.3s ease;
  transform: translate(0, 0);
}

.cta-section__button .qodef-svg--button-arrow g:last-child {
  transition: transform 0.3s ease;
  transform: translate(-100%, 100%);
}

.cta-section__button:hover .qodef-svg--button-arrow g:first-child {
  transform: translate(100%, -100%);
}

.cta-section__button:hover .qodef-svg--button-arrow g:last-child {
  transform: translate(0, 0);
}

.cta-section__button:hover .qodef-m-arrow {
  transform: none;
}

.cta-section__button:active {
  transform: none;
}

/* Responsive for Split Content & CTA */
@media (max-width: 1024px) {
  .split-content-section__container {
    grid-template-columns: 1fr;
    gap: 60px;
    padding: 0 40px;
  }

  .split-content-section__left {
    position: static;
    justify-content: flex-start;
    padding-bottom: 0;
  }

  .split-content-section__right {
    padding-left: 0;
    max-width: none;
  }

  .split-content-section__right-heading {
    font-size: clamp(47px, 7vw, 56px);
    line-height: 1.17857em;
    max-width: none;
  }
  .cta-section__heading {
    font-size: 48px;
  }

  .cta-section__text {
    font-size: 20px;
    line-height: 1.45;
    margin: 8px auto 0;
  }
}

@media (max-width: 768px) {
  .split-content-section {
    padding: 60px 0;
  }

  .split-content-section__container {
    padding: 0 24px;
    gap: 40px;
  }

  .split-content-section__right-heading {
    font-size: clamp(40px, 6.5vw, 56px);
    max-width: none;
  }

  .split-content-section__right-text {
    font-size: clamp(32px, 5.2vw, 42px);
    max-width: none;
  }

  .cta-section {
    min-height: 400px;
  }

  .cta-section__container {
    padding: 60px 24px;
  }

  .cta-section__heading {
    font-size: 2.5rem;
  }

  .cta-section__text {
    font-size: 1.125rem;
    line-height: 1.5;
    margin: 10px auto 0;
  }
}
/* ARTICLE PAGE - SINGLE ARTICLE */

/* Article Hero */
.article-hero {
  position: relative;
  width: 100%;
  height: 100vh;
  background-color: #223035;
  overflow: hidden;
  margin-top: -124px;
  padding-top: 0;
}

.article-hero__image {
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 1;
}

.article-hero__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.article-hero__overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.15),
    rgba(0, 0, 0, 0.05)
  );
  z-index: 2;
}

/* Article Page Content */
.article-page {
  position: relative;
  padding: 130px 0 100px;
  background-color: var(--color-white, #ffffff);
}

.article-page__container {
  max-width: 1300px;
  margin: 0 auto;
}

/* Article Content */
.article-page__meta {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.875rem;
  color: var(--color-text-dark);
  margin-bottom: 24px;
}

.article-page__date {
  font-weight: 300;
  color: var(--color-text-dark);
}

.article-page__title {
  font-family: "Dm Sans", sans-serif;
  font-size: 56px;
  font-weight: 400;
  line-height: 1.17857em;
  color: var(--color-primary-dark);
  margin: 0 0 32px 0;
  word-wrap: break-word;
}

.article-page__body {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--color-text-dark);
}

.article-page__body p {
  margin: 0 0 20px 0;
}

.article-page__body p:last-child {
  margin-bottom: 0;
}

.article-page__body h2 {
  font-size: 1.75rem;
  font-weight: 600;
  margin: 40px 0 20px 0;
  color: #1f2937;
}

.article-page__body h3 {
  font-size: 1.375rem;
  font-weight: 600;
  margin: 32px 0 16px 0;
  color: #1f2937;
}

.article-page__body h4 {
  font-size: 1.125rem;
  font-weight: 600;
  margin: 24px 0 12px 0;
  color: #1f2937;
}

.article-page__body ul,
.article-page__body ol {
  margin: 0 0 20px 0;
  padding-left: 28px;
}

.article-page__body li {
  margin-bottom: 8px;
}

.article-page__body a {
  color: #223035;
  text-decoration: underline;
  transition: opacity 0.3s ease;
}

.article-page__body a:hover {
  opacity: 0.8;
}

.article-page__body blockquote {
  border-left: 4px solid #223035;
  padding-left: 20px;
  margin: 24px 0;
  font-style: italic;
  color: #4b5563;
}

.article-page__body img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin: 24px 0;
}

/* Article Share */
.article-share {
  background: var(--color-white, #ffffff);
  padding: 24px 0 16px;
}

.article-share__container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.article-share__wrapper {
  margin-left: auto;
}

html[dir="rtl"] .article-share__container {
  justify-content: flex-start;
}

html[dir="rtl"] .article-share__wrapper {
  margin-left: 0;
  margin-right: auto;
}

.article-share__wrapper .article-card__share-icons {
  transform: translateX(10px);
}

.article-share__wrapper:hover .article-card__share-icons,
.article-share__wrapper .article-card__share-icons:hover {
  transform: translateX(0);
}

html[dir="rtl"] .article-share__wrapper .article-card__share-icons {
  transform: translateX(-10px);
}

/* Article Navigation */
.article-navigation {
  background: var(--color-white, #ffffff);
  padding: 60px 0;
}

.article-navigation__container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

.article-nav-link--next {
  margin-left: auto;
}

.article-nav-link {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  background: none;
  color: #1f2937;
  text-decoration: none;
  font-size: 1rem;
  font-weight: 400;
  transition: all 0.3s ease;
  letter-spacing: 0.02em;
}

.article-nav-link__icon {
  fill: none;
  stroke: #1f2937;
  stroke-width: 1;
  transition: transform 0.3s ease;
}

.article-nav-link:hover {
  color: #223035;
}

.article-nav-link--prev:hover .article-nav-link__icon {
  transform: translateX(-4px);
}
.article-nav-link--next:hover .article-nav-link__icon {
  transform: translateX(4px);
}

/* RESPONSIVE */

@media (max-width: 1440px) {
  .article-page__title {
    font-size: 47px;
  }
}

@media (max-width: 1200px) {
  .article-page__container {
    max-width: 960px;
  }

  .article-navigation__container {
    max-width: 960px;
  }
}

@media (max-width: 1024px) {
  .article-page__container {
    max-width: none;
    width: 86%;
  }

  .article-share__container {
    max-width: none;
    width: 86%;
    padding: 0;
  }

  .article-navigation__container {
    max-width: none;
    width: 86%;
  }

  .article-page__title {
    font-size: 2rem;
  }
}

@media (max-width: 768px) {
  .article-hero {
    height: 70vh;
    margin-top: -84px;
    padding-top: 0;
  }

  .article-page {
    padding: 60px 0;
  }

  .article-page__container {
    padding: 0 16px;
  }

  .article-share__container {
    width: calc(100% - 32px);
    padding: 0;
  }

  .article-nav-link {
    font-size: 0.875rem;
    gap: 12px;
  }

  .article-nav-link__icon {
    width: 24px;
    height: 24px;
  }

  .article-page__title {
    font-size: 1.75rem;
  }

  .article-page__body {
    font-size: 0.9375rem;
  }

  .article-page__body h2 {
    font-size: 1.5rem;
  }

  .article-page__body h3 {
    font-size: 1.25rem;
  }

  .article-page__body h4 {
    font-size: 1.0625rem;
  }
}

@media (max-width: 480px) {
  .article-hero {
    height: 280px;
  }

  .article-page {
    padding: 40px 0;
  }

  .article-page__container {
    padding: 0 16px;
  }

  .article-page__title {
    font-size: 1.5rem;
    margin-bottom: 24px;
  }

  .article-page__meta {
    font-size: 0.8125rem;
    flex-wrap: wrap;
  }
}

/* ARTICLE HERO IMAGE PLACEHOLDER */
.article-hero__image--placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #2a3640;
  min-height: 340px;
}

.article-hero__placeholder {
  color: rgba(175, 193, 197, 0.3);
}

.article-hero__placeholder svg {
  width: 96px;
  height: 96px;
}
/* Contact Info Section */
.contact-info-section {
  padding: 4rem 2rem;
  background: #f8f9fa;
}

.contact-info-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

/* Contact Details (Left Side) */
.contact-details {
  padding: 2.5rem;
}

.contact-details h2 {
  font-size: 2rem;
  font-weight: 700;
  color: #223035;
  margin: 0 0 2rem 0;
}

.contact-item {
  display: flex;
  gap: 1.25rem;
  margin-bottom: 1rem;
  align-items: flex-start;
}

.contact-item:last-child {
  margin-bottom: 0;
}

.contact-item i {
  font-size: 1.5rem;
  color: #223035;
  width: 1.5rem;
  text-align: center;
  flex-shrink: 0;
  margin-top: 0.25rem;
}

.contact-text {
  flex: 1;
}

.contact-text strong {
  display: block;
  font-size: 1.125rem;
  color: #223035;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.contact-text p {
  margin: 0;
  color: var(--color-text-dark);
  line-height: 1.6;
  font-size: 1rem;
}

.contact-text a {
  color: #223035;
  text-decoration: none;
  transition: color 0.2s ease;
}

.contact-text a:hover {
  color: #3a5159;
  text-decoration: underline;
}

/* Map Section (Right Side) */
.contact-map {
  padding: 0;
  overflow: hidden;
  height: 100%;
  min-height: 400px;
}

.contact-map iframe {
  width: 100%;
  height: 100%;
  min-height: 400px;
  border: none;
}

/* Tablet View (768px and below) */
@media screen and (max-width: 768px) {
  .contact-info-section {
    padding: 3rem 1.5rem;
  }

  .contact-info-container {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .contact-details {
    padding: 2rem;
  }

  .contact-details h2 {
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
  }

  .contact-map {
    min-height: 350px;
  }

  .contact-map iframe {
    min-height: 350px;
  }
}

/* Mobile View (480px and below) */
@media screen and (max-width: 480px) {
  .contact-info-section {
    padding: 2rem 1rem;
  }

  .contact-details {
    padding: 1.5rem;
  }

  .contact-details h2 {
    font-size: 1.5rem;
    margin-bottom: 1.25rem;
  }

  .contact-item {
    gap: 1rem;
    margin-bottom: 1.5rem;
  }

  .contact-item i {
    font-size: 1.25rem;
    width: 1.25rem;
  }

  .contact-text strong {
    font-size: 1rem;
  }

  .contact-text p {
    font-size: 0.9375rem;
  }

  .contact-map {
    min-height: 300px;
  }

  .contact-map iframe {
    min-height: 300px;
  }
}
.entity-showcase {
  position: relative;
  background: var(--color-primary-dark, #223035);
  padding: clamp(3rem, 5vw, 5rem) 0;
  margin-bottom: clamp(1rem, 2vw, 1.75rem);
  color: #afc1c5;
  overflow: hidden;
}

.entity-showcase__container {
  max-width: 1760px;
  margin: 0 auto;
  padding: 0 clamp(1rem, 2vw, 2rem);
}

.entity-showcase__intro {
  margin: 10px 0;
  text-align: center;
  font-size: 24px;
  font-weight: 400;
  line-height: 29px;
  color: var(--color-text-light);
}

.entity-showcase__intro p {
  margin: 0;
}

.entity-showcase__layout {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: clamp(1rem, 2vw, 2.8rem);
  align-items: stretch;
}

.entity-showcase__nav {
  display: flex;
  align-items: stretch;
  min-width: 0;
}

.entity-showcase__nav--right {
  justify-content: flex-start;
  display: flex;
  width: 100%;
  gap: 0;
}

.entity-showcase__nav--left {
  display: flex;
  justify-content: flex-end;
}

.entity-nav-btn {
  border: 0;
  border-right: 0.5px solid rgba(175, 193, 197, 0.35);
  border-top: 0;
  border-bottom: 0;
  color: #69797d;
  cursor: pointer;
  width: auto;
  max-width: none;
  min-width: 130px;
  min-height: clamp(540px, 45vw, 760px);
  padding: 0;
  opacity: 0.78;
  transition:
    color 0.2s ease,
    opacity 0.2s ease;
  display: grid;
  grid-template-rows: auto 1fr auto auto;
  grid-template-areas:
    "arrow"
    "."
    "text"
    "index";
  row-gap: clamp(0.45rem, 1vw, 0.9rem);
  justify-items: stretch;
  align-items: center;
  overflow: hidden;
  background-color: var(--color-transparent);
}

.entity-showcase__nav--left .entity-nav-btn {
  width: 100%;
  max-width: 160px;
  min-width: 0;
}

.entity-showcase__nav--right .entity-nav-btn--right {
  display: grid;
  flex: 0 0 auto;
}

.entity-nav-btn.is-hidden {
  display: none !important;
}

.entity-nav-btn:hover,
.entity-nav-btn.active {
  opacity: 1;
}

.entity-nav-btn__index {
  display: inline-block;
  grid-area: index;
  width: auto;
  writing-mode: vertical-lr;
  text-orientation: mixed;
  text-align: center;
  font-size: 180px;
  line-height: 0.9;
  font-weight: 400;
  color: #afc1c5;
  align-self: end;
  justify-self: end;
  transform: rotate(180deg) translateX(-25%);
  font-family: "Dm Sans", sans-serif;
  position: relative;
  right: 21px;
  padding: 0 0;
  transition: color 0.3s ease;
}

.entity-nav-btn__text {
  grid-area: text;
  writing-mode: vertical-lr;
  text-orientation: mixed;
  font-family: "Dm Sans", sans-serif;
  font-size: 42px;
  font-weight: 400;
  line-height: 1.2381em;
  letter-spacing: -0.01em;
  position: relative;
  padding: 0 0.75em;
  justify-self: end;
  align-self: center;
  transform: rotate(180deg);
  color: var(--color-white);
}

.entity-nav-btn__text::before {
  display: none;
}

.entity-nav-btn__arrow {
  grid-area: arrow;
  display: inline-flex;
  width: 51.451px;
  height: 51.414px;
  opacity: 1;
  justify-self: end;
  align-self: start;
  padding-top: clamp(0.25rem, 0.7vw, 0.55rem);
  padding-right: clamp(0.5rem, 1vw, 0.95rem);
}

.entity-nav-btn__arrow svg {
  width: 100%;
  height: 100%;
  fill: none;
  transition: transform 0.45s ease-out;
  transform: rotate(0deg);
}

.entity-nav-btn.active .entity-nav-btn__arrow svg {
  transform: rotate(180deg);
}

.entity-nav-btn__arrow svg path {
  fill: none;
  stroke-width: 2;
}

.entity-nav-btn.active .entity-nav-btn__index,
.entity-nav-btn:hover .entity-nav-btn__index {
  color: var(--color-white);
}

.entity-nav-btn:not(.active) .entity-nav-btn__text,
.entity-nav-btn:not(.active) .entity-nav-btn__arrow path {
  color: var(--color-text-light);
  stroke: var(--color-text-light);
}

.entity-nav-btn:not(.active) .entity-nav-btn__index {
  color: var(--color-text-light);
}

.entity-nav-btn.active .entity-nav-btn__arrow,
.entity-nav-btn:hover .entity-nav-btn__arrow {
  opacity: 1;
}

.entity-nav-btn.active .entity-nav-btn__arrow path,
.entity-nav-btn:hover .entity-nav-btn__arrow path {
  stroke: var(--color-white);
}

.entity-showcase__main {
  min-height: clamp(520px, 43vw, 720px);
  display: flex;
  align-items: end;
}

.entity-card {
  display: none;
  width: 100%;
  height: 100%;
  align-items: end;
  align-content: end;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.entity-card.active {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: clamp(1.5rem, 3vw, 4rem);
  padding-bottom: 70px;
  opacity: 1;
}

.entity-card.active > .entity-card__content,
.entity-card.active > .entity-card__image-wrapper {
  flex: 0 0 50%;
  width: 50%;
  max-width: 50%;
}

.entity-card__content {
  color: #9eb1b6;
  align-self: end;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  padding-bottom: 0;
}

.entity-card__title {
  margin: 0 0 1.2rem;
  font-size: 25px;
  line-height: 1.4em;
  font-weight: 500;
  color: var(--color-white);
}

.entity-card__description {
  margin-bottom: 1.35rem;
  font-family: Heebo, sans-serif;
  font-size: 15px;
  line-height: 1.6em;
  color: var(--color-text-light);
  max-width: 345px;
}

.entity-card__description p {
  margin: 0;
}

.entity-card__link {
  display: inline-flex !important;
  align-items: center;
  gap: 0.5rem;
  color: var(--color-white, #fff);
  background-color: rgba(255, 255, 255, 0.2);
  text-decoration: none;
  border: 1px solid transparent;
  border-radius: 25px;
  -webkit-backdrop-filter: blur(4px) brightness(100%);
  backdrop-filter: blur(4px) brightness(100%);
  padding: 6px 33px 7px;
  width: auto !important;
  max-width: max-content;
  align-self: flex-start;
  white-space: nowrap;
  margin: 0;
  font-size: 15px;
  line-height: 2em;
  font-weight: 400;
  transition:
    color 0.27s ease-out,
    background-color 0.27s ease-out,
    border-color 0.27s ease-out,
    gap 0.2s ease;
}

.entity-showcase .entity-card__link.qodef-shortcode,
.entity-showcase .entity-card__link.qodef-button,
.entity-showcase .entity-card__link.qodef-html--link {
  width: auto !important;
  display: inline-flex !important;
}

.entity-card__link .qodef-svg--button-arrow g:first-child {
  transition: transform 0.3s ease;
  transform: translate(0, 0);
}

.entity-card__link .qodef-svg--button-arrow g:last-child {
  transition: transform 0.3s ease;
  transform: translate(-100%, 100%);
}

.entity-card__link:hover {
  transform: none;
  box-shadow: none;
}

.entity-card__link:hover .qodef-svg--button-arrow g:first-child {
  transform: translate(100%, -100%);
}

.entity-card__link:hover .qodef-svg--button-arrow g:last-child {
  transform: translate(0, 0);
}

.entity-card__link:hover .qodef-m-arrow {
  transform: none;
}

html[dir="rtl"] .entity-card__link .qodef-m-arrow {
  transform: scaleX(-1);
}

html[dir="rtl"] .entity-card__link:hover .qodef-m-arrow {
  transform: scaleX(-1);
}

.entity-card__image-wrapper {
  width: 100%;
  align-self: end;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.entity-card__image {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  aspect-ratio: auto;
  object-fit: initial;
  border: 0;
  border-radius: 0 !important;
  box-shadow: none;
}

.entity-showcase .entity-card__image-wrapper img {
  border: 0 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  height: auto;
  max-width: 100%;
}

@media (max-width: 1680px) {
  .entity-nav-btn__index {
    right: 6px;
    font-size: 120px;
  }
}

@media (max-width: 1280px) {
  .entity-showcase__layout {
    grid-template-columns: auto minmax(0, 1fr) auto;
    gap: clamp(0.8rem, 1.5vw, 1.8rem);
  }

  .entity-showcase__nav--right {
    gap: 0;
  }

  .entity-nav-btn__index {
    font-size: clamp(4rem, 6vw, 5.5rem);
  }

  .entity-nav-btn__text {
    font-size: clamp(1.65rem, 2.4vw, 2.45rem);
  }

  .entity-card {
    grid-template-columns: minmax(270px, 430px) minmax(350px, 1fr);
  }
}

@media (max-width: 1207px) {
  .entity-showcase {
    padding: 2.5rem 0;
  }

  .entity-showcase__container {
    padding: 0 3rem;
  }

  .entity-showcase__layout {
    display: flex;
    flex-direction: column;
    gap: 0;
  }

  .entity-showcase__nav {
    width: 100%;
    flex-direction: column;
  }

  .entity-showcase__nav--left {
    display: flex;
    order: 1;
  }

  .entity-showcase__nav--right {
    justify-content: stretch;
    display: flex;
    gap: 0;
    order: 3;
  }

  .entity-showcase__nav--right .entity-nav-btn:not(.active) {
    border-top: 1px solid rgba(175, 193, 197, 0.32);
    border-bottom: 1px solid rgba(175, 193, 197, 0.32);
  }

  .entity-showcase__nav--left .entity-nav-btn,
  .entity-showcase__nav--right .entity-nav-btn {
    width: 100%;
    max-width: 100%;
  }

  .entity-showcase__nav--right .entity-nav-btn--right.active {
    display: flex;
  }

  .entity-showcase__nav--right .entity-nav-btn--right {
    display: flex;
    align-items: center;
  }

  .entity-showcase__nav--right .entity-nav-btn__index {
    flex: 0 0 auto;
    margin-right: 0.35rem;
    line-height: 1;
  }

  .entity-showcase__nav--right .entity-nav-btn__text {
    flex: 1 1 auto;
    line-height: 1;
  }

  .entity-showcase__main {
    order: 2;
    min-height: 0;
    margin-top: 0.9rem;
  }

  .entity-nav-btn {
    border-right: 0;
    min-height: 0;
    max-width: 100%;
    min-width: 0;
    opacity: 1;
    display: flex;
    align-items: center;
    gap: 0.2rem;
    padding: 12px 0 10px 2px;
    border-bottom: 1px solid rgba(175, 193, 197, 0.32);
    position: relative;
    overflow: visible;
    cursor: pointer;
  }

  .entity-nav-btn__index {
    width: auto;
    writing-mode: horizontal-tb;
    text-orientation: mixed;
    min-width: 2.5ch;
    flex-shrink: 0;
    font-size: 37px;
    color: rgba(112, 129, 134, 0.7);
    line-height: 1;
    transform: none;
    justify-self: start;
    align-self: center;
    overflow: visible;
  }

  .entity-nav-btn__text {
    writing-mode: horizontal-tb;
    text-orientation: mixed;
    font-size: 37px;
    line-height: 1;
    padding-top: 0;
    padding-left: 0.4rem;
    flex: 1;
    text-align: left;
    transform: none;
    justify-self: start;
    align-self: center;
  }

  .entity-nav-btn__text::before {
    display: none;
  }

  .entity-nav-btn__arrow {
    width: 42px;
    height: 42px;
    margin-inline-start: 0;
    opacity: 0.72;
    position: absolute;
    right: 0;
    top: 50%;
    bottom: auto;
    transform: translateY(-50%);
  }

  .entity-showcase__nav--right .entity-nav-btn__arrow {
    position: static;
    top: auto;
    right: auto;
    bottom: auto;
    transform: none;
    margin-left: auto;
    align-self: center;
  }

  .entity-nav-btn.active {
    border-bottom: none;
  }

  .entity-nav-btn.active .entity-nav-btn__arrow svg {
    transform: rotate(90deg);
  }

  .entity-card {
    display: none;
    flex-direction: column;
    gap: 0.9rem;
    align-items: start;
  }

  .entity-card.active {
    display: flex;
    flex-direction: column;
    padding-bottom: 46px;
  }

  .entity-card.active > .entity-card__content,
  .entity-card.active > .entity-card__image-wrapper {
    flex: 0 0 auto;
    width: 100%;
    max-width: 100%;
  }

  .entity-card__image-wrapper {
    order: 1;
  }

  .entity-card__content {
    order: 2;
    padding-bottom: 0;
  }

  .entity-card__title {
    font-size: 22px;
    margin-bottom: 10px;
  }

  .entity-card__description {
    margin-bottom: 0.9rem;
    font-size: 15px;
    line-height: 1.5;
    max-width: none;
  }
}

/* IMAGE PLACEHOLDER */
.entity-card__image-wrapper--placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(175, 193, 197, 0.06);
  border: 1px dashed rgba(175, 193, 197, 0.18);
  border-radius: 6px;
  min-height: 320px;
}

.entity-card__placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  color: rgba(175, 193, 197, 0.35);
}

.entity-card__placeholder svg {
  width: 80px;
  height: 80px;
}

.entity-card__placeholder span {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}
.footer {
  background-color: var(--color-primary-dark);
  color: var(--color-text-light);
  padding: 120px 0 30px;
}

.footer__content {
  margin: 0 auto;
  padding: 0 60px;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 40px;
}

.footer__column {
  display: flex;
  flex-direction: column;
}

.footer__column--logo {
  gap: 24px;
}

.footer__heading {
  color: var(--color-white);
  font-family: "Dm Sans", sans-serif;
  font-size: 20px;
  line-height: 1.5em;
  font-weight: 500;
  margin: 0 0 16px;
  text-transform: capitalize;
  letter-spacing: 0.02em;
  overflow-wrap: break-word;
}

.footer__logo {
  height: 48px;
  width: auto;
  filter: brightness(0) invert(1);
}

.footer__social {
  display: flex;
  gap: 0;
  align-items: center;
}

.footer__social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 0.875rem;
}

.footer__social-link:hover {
  color: var(--color-white, #fff);
  transform: translateY(-2px);
}

.footer__link {
  color: var(--color-white, #fff);
  text-decoration: none;
  font-family: Heebo, sans-serif;
  font-size: 15px;
  line-height: 1.6em;
  font-weight: 400;
  transition: color 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.footer__link--animated {
  text-decoration: none;
}

.footer__link-label {
  position: relative;
  display: inline-block;
  color: var(--color-text-light);
}

.footer__link-label::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 100%;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.footer__link--animated:hover .footer__link-label::after {
  transform: scaleX(1);
}

.footer__link:hover {
  color: var(--color-white, #fff);
}

.footer__icon {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  color: var(--color-text-light);
}

.footer__phone,
.footer__careers-link {
  font-weight: 500;
}

.footer__address {
  color: var(--color-white, #fff);
  font-family: Heebo, sans-serif;
  font-size: 15px;
  line-height: 1.6em;
  font-weight: 400;
}

.footer__address-line {
  display: inline;
  width: fit-content;
}

.footer__address-segment {
  display: inline;
  background-image: linear-gradient(currentColor, currentColor);
  background-repeat: no-repeat;
  background-position: 0 100%;
  background-size: 0 1px;
  color: var(--color-text-light);
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
  transition: background-size 0.3s ease;
}

.footer__link--animated:hover .footer__address-segment {
  background-size: 100% 1px;
}

.footer__address p {
  margin-bottom: 4px;
}

.footer__bottom {
  margin: 0 auto;
  padding: 24px 60px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.footer__social {
  order: -1;
}

.footer__copyright {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.8125rem;
  margin: 0;
  order: 1;
}

.footer__text {
  color: var(--color-white, #fff);
  font-family: Heebo, sans-serif;
  font-size: 15px;
  line-height: 1.6em;
  font-weight: 400;
  margin: 0;
}

/* SCROLL TO TOP BUTTON */

.scroll-to-top,
#qodef-back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 40px;
  height: 60px;
  background-color: #20282d;
  color: var(--color-white, #fff);
  border: 1px solid transparent;
  border-radius: 25px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition:
    color 0.27s ease-out,
    background-color 0.27s ease-out,
    border-color 0.27s ease-out,
    transform 0.27s ease-out,
    opacity 0.27s ease-out;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  z-index: 9999 !important;
  overflow: hidden;
  margin: 0 !important;
  padding: 0 !important;
  border-collapse: separate !important;
}

.scroll-to-top.visible,
#qodef-back-to-top.qodef--on {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.scroll-to-top:hover,
#qodef-back-to-top:hover {
  background-color: #263037;
  border-color: transparent;
  transform: translateY(-2px);
}

.scroll-to-top:active,
#qodef-back-to-top:active {
  transform: translateY(-1px);
}

.scroll-to-top svg,
#qodef-back-to-top .qodef-back-to-top-icon,
#qodef-back-to-top svg {
  width: 20px;
  height: 20px;
}

.scroll-to-top .qodef-svg--back-to-top,
#qodef-back-to-top .qodef-svg--back-to-top {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
  transform: rotate(90deg);
}

/* RESPONSIVE FOOTER */

@media (max-width: 1024px) {
  .footer__content {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    padding: 0 7%;
  }

  .footer__bottom {
    padding: 24px 7% 0;
    flex-direction: column;
    align-items: stretch;
    gap: 16px;
  }

  .footer__social {
    order: -1;
  }

  .footer__copyright {
    order: 1;
    text-align: right;
  }
}

@media (max-width: 768px) {
  .footer__content {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    padding: 0 7%;
  }

  .footer__bottom {
    padding: 24px 7% 0;
    flex-direction: column;
    align-items: stretch;
    gap: 16px;
  }

  .footer__social {
    order: -1;
  }

  .footer__copyright {
    order: 1;
    text-align: right;
  }

  .footer__heading {
    font-size: 18px;
  }

  .footer__logo {
    height: 40px;
  }
}

@media (max-width: 600px) {
  .footer__content {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 0 7%;
  }

  .footer__bottom {
    padding: 24px 7% 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .footer__social {
    order: 0;
  }

  .footer__copyright {
    order: 1;
  }
}

@media (max-width: 480px) {
  .footer {
    padding: 40px 0 20px;
  }

  .footer__content {
    gap: 24px;
  }

  .footer__heading {
    margin-bottom: 12px;
  }

  .footer__social {
    gap: 6px;
  }

  .footer__social-link {
    width: 36px;
    height: 36px;
  }

  .scroll-to-top {
    width: 40px;
    height: 40px;
    bottom: 20px;
    right: 20px;
  }

  .scroll-to-top svg {
    width: 20px;
    height: 20px;
  }
}
/* MEDIA CENTER - ARTICLES LISTING */

.media-center {
  padding: 80px 0;
  background-color: var(--color-white, #ffffff);
}

.media-center__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.media-center__heading {
  font-size: 2.5rem;
  font-weight: 700;
  color: #1f2937;
  margin: 0 0 40px 0;
  text-align: center;
}

.media-center__empty {
  text-align: center;
  padding: 60px 24px;
  color: #6b7280;
  font-size: 1.125rem;
}

/* ARTICLES GRID */

.articles-grid {
  display: flex;
  flex-direction: column;
  gap: 40px;
  margin-top: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

/* ARTICLE CARD */

.article-card {
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
/* Article Card Image */
.article-card__image {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.article-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.article-card__image a {
  display: block;
  width: 100%;
  height: 100%;
}

/* Date Badge */
.article-card__date {
  position: absolute;
  top: 0;
  left: 0;
  color: var(--color-white, #fff);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 14px 18px 15px;
  font-family: "Dm Sans", sans-serif;
  z-index: 99;
  background-color: rgba(255, 255, 255, 0.2);
  -webkit-backdrop-filter: blur(4px) brightness(100%);
  backdrop-filter: blur(4px) brightness(100%);
}

.article-card__day {
  display: block;
  font-size: 20px;
  font-weight: 300;
  line-height: 1;
}

.article-card__month {
  display: block;
  font-size: 0.875rem;
  font-weight: 300;
  margin-top: 4px;
  opacity: 0.9;
}

/* Article Card Content */
.article-card__content {
  padding: 24px 0;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.article-card__categories {
  font-size: 15px;
  font-weight: 400;
  color: var(--color-text-dark);
  margin-bottom: 4px;
  line-height: 1.6em;
}

.article-card__title {
  font-family: "Dm Sans", sans-serif;
  font-size: 37px;
  font-weight: 400;
  line-height: 1.4;
  margin: 0 0 12px 0;
  color: var(--color-primary-dark);
}

.article-card__title a {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s ease;
}

.article-card__title a:hover {
  color: #223035;
}

.article-card__excerpt {
  font-family: Heebo, sans-serif;
  font-size: 15px;
  line-height: 1.6em;
  color: var(--color-text-dark);
  margin: 0 0 28px 0;
  flex: 1;
}

/* Article Card Footer */
.article-card__footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: auto;
}

.article-card__read-more {
  position: relative;
  display: inline-flex;
  align-items: center;
  vertical-align: middle;
  width: auto;
  margin: 0;
  gap: 8px;
  padding: 6px 33px 7px;
  color: var(--color-white, #fff);
  background-color: var(--color-primary-dark);
  border: 1px solid transparent;
  border-radius: 25px;
  font-family: "Dm Sans", sans-serif;
  font-size: 16px;
  line-height: 2em;
  font-weight: 400;
  text-decoration: none;
  outline: 0;
  transition:
    color 0.27s ease-out,
    background-color 0.27s ease-out,
    border-color 0.27s ease-out;
}

.article-card__read-more:hover {
  background-color: #1a262a;
}

.article-card__read-more .qodef-m-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 10px;
  height: 10px;
  overflow: hidden;
  position: relative;
}

.article-card__read-more .qodef-svg--button-arrow {
  width: 100%;
  height: 100%;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.5;
  display: block;
}

.article-card__read-more .qodef-svg--button-arrow g:first-child {
  transition: transform 0.3s ease;
  transform: translate(0, 0);
}

.article-card__read-more .qodef-svg--button-arrow g:last-child {
  transition: transform 0.3s ease;
  transform: translate(-100%, 100%);
}

.article-card__read-more:hover .qodef-svg--button-arrow g:first-child {
  transform: translate(100%, -100%);
}

.article-card__read-more:hover .qodef-svg--button-arrow g:last-child {
  transform: translate(0, 0);
}

/* Article Card Share */
.article-card__share-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  gap: 12px;
  flex-direction: row-reverse;
}

.article-card__share-toggle {
  display: flex;
  align-items: center;
  gap: 8px;
  background: none;
  border: none;
  font-size: 0.875rem;
  font-weight: 500;
  cursor: pointer;
  padding: 8px 12px;
  border-radius: 6px;
  transition: all 0.3s ease;
}

.article-card__share-toggle .share-label {
  font-size: 0.875rem;
}

.article-card__share-icons {
  display: flex;
  align-items: center;
  gap: 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateX(10px);
  transition: all 0.3s ease;
}

.article-card__share-wrapper:hover .article-card__share-icons,
.article-card__share-icons:hover {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}

.share-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--color-primary-dark);
  color: var(--color-white);
  text-decoration: none;
  font-size: 0.75rem;
  transition: all 0.3s ease;
}

.share-icon:hover {
  transform: scale(1.1);
  background: #111827;
}

/* PAGINATION */

.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin-top: 60px;
}

.pagination__numbers {
  display: flex;
  align-items: center;
  gap: 0;
}

.pagination__number {
  position: relative;
  margin: 0 4px;
  padding: 0 3px;
  font-family: "Dm Sans", sans-serif;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.6em;
  color: #b8b8b8;
  text-decoration: none;
  transition: color 0.27s ease-out;
  cursor: pointer;
}

.pagination__number:hover {
  color: #20282d;
}

.pagination__number--active {
  color: #20282d;
  font-weight: 400;
  pointer-events: none;
}

.pagination__ellipsis {
  position: relative;
  margin: 0 4px;
  padding: 0 3px;
  font-family: "Dm Sans", sans-serif;
  font-size: 15px;
  color: #b8b8b8;
  line-height: 1.6em;
}

.pagination__arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 4px;
  padding: 0 3px;
  color: #38464a;
  text-decoration: none;
  transition: color 0.27s ease-out;
}

.pagination__arrow:hover {
  color: #20282d;
}

.pagination__arrow .qodef-m-pagination-icon {
  width: 12px;
  height: 12px;
  stroke: currentColor;
  stroke-width: 1.5;
  fill: none;
}

.pagination__arrow--prev .qodef-m-pagination-icon {
  transform: scaleX(-1);
}

/* RESPONSIVE */

@media (max-width: 1024px) {
  .articles-grid {
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 32px;
  }
}

@media (max-width: 768px) {
  .media-center {
    padding: 60px 0;
  }

  .articles-grid {
    grid-template-columns: 1fr;
    gap: 32px;
    margin-top: 32px;
  }

  .article-card__image {
    height: 200px;
  }

  .article-card__content {
    padding: 20px;
  }

  .article-card__title {
    font-size: 1.125rem;
  }

  .article-card__footer {
    flex-wrap: wrap;
    gap: 12px;
  }

  .article-card__share-icons {
    position: relative;
  }
}

@media (max-width: 480px) {
  .media-center {
    padding: 40px 0;
  }

  .media-center__container {
    padding: 0 16px;
  }

  .article-card__date {
    top: 0;
    left: 0;
    padding: 10px 12px;
    min-width: 50px;
  }

  .article-card__day {
    font-size: 1.25rem;
  }

  .article-card__month {
    font-size: 0.75rem;
  }

  .article-card__title {
    font-size: 1rem;
  }

  .article-card__excerpt {
    font-size: 0.875rem;
  }

  .pagination {
    margin-top: 40px;
    gap: 10px;
  }

  .pagination__numbers {
    gap: 10px;
  }

  .pagination__number {
    font-size: 1rem;
  }

  .pagination__arrow {
    width: 26px;
    height: 26px;
  }

  .pagination__arrow .qodef-m-pagination-icon {
    width: 18px;
    height: 18px;
  }
}

/* ARTICLE CARD IMAGE PLACEHOLDER */
.article-card__placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  aspect-ratio: 16 / 10;
  background: #f0f2f4;
  color: #b0bec5;
}

.article-card__placeholder svg {
  width: 64px;
  height: 64px;
}
/* Rich Text Section Styling */
.rich-text-section {
  padding: 10px 24px 20px;
  background-color: #efefef;
}

.rich-text-section__container {
  max-width: 1400px;
  margin: 62px auto 40px;
  margin-left: 15%;
  font-family: "Dm Sans", sans-serif;
}

.rich-text-section__heading,
.rich-text-section__content {
  max-width: 900px;
  font-weight: 400 !important;
}

.rich-text-section__heading {
  font-size: 42px;
  color: var(--color-primary-dark);
  margin-bottom: 5px;
  line-height: 1.2381em;
}

.rich-text-section__content {
  font-size: 18px;
  line-height: 27px;
  color: var(--color-text-dark);
}

.rich-text-section__content p {
  margin: 10px 0;
  color: #7a7a7a;
}

.rich-text-section__content p:last-child {
  margin-bottom: 0;
}

.rich-text-section__content h2,
.rich-text-section__content h3,
.rich-text-section__content h4 {
  color: var(--color-primary-dark);
  font-weight: 600;
  margin-top: 30px;
  margin-bottom: 15px;
}

.rich-text-section__content h2 {
  font-size: 2rem;
}

.rich-text-section__content h3 {
  font-size: 1.5rem;
}

.rich-text-section__content h4 {
  font-size: 1.25rem;
}

.rich-text-section__content strong {
  font-weight: 600;
  color: var(--color-primary-dark);
}

.rich-text-section__content em {
  font-style: italic;
}

.rich-text-section__content a {
  color: var(--color-primary-dark);
  text-decoration: underline;
  transition: opacity 0.3s ease;
}

.rich-text-section__content a:hover {
  opacity: 0.7;
}

.rich-text-section__content ul,
.rich-text-section__content ol {
  margin-left: 20px;
  margin-bottom: 20px;
}

.rich-text-section__content li {
  margin-bottom: 10px;
}

.rich-text-section__content blockquote {
  border-left: 4px solid var(--color-primary-dark);
  padding-left: 20px;
  margin: 20px 0;
  font-style: italic;
  color: var(--color-text-dark);
  opacity: 0.9;
}

/* Tablet Layout */
@media (max-width: 1024px) {
  .rich-text-section {
    padding: 60px 20px;
  }

  .rich-text-section__container,
  .rich-text-section__heading,
  .rich-text-section__content {
    max-width: none;
  }

  .rich-text-section__container {
    margin-left: 8%;
  }

  .rich-text-section__heading {
    font-size: 2rem;
    margin-bottom: 25px;
  }

  .rich-text-section__content {
    font-size: 1rem;
  }

  .rich-text-section__content h2 {
    font-size: 1.75rem;
  }

  .rich-text-section__content h3 {
    font-size: 1.375rem;
  }

  .rich-text-section__content h4 {
    font-size: 1.125rem;
  }
}

/* Mobile Layout */
@media (max-width: 768px) {
  .rich-text-section {
    padding: 50px 20px;
  }

  .rich-text-section__container {
    margin-left: 4%;
  }

  .rich-text-section__heading {
    font-size: 1.75rem;
    margin-bottom: 20px;
    text-align: left;
  }

  .rich-text-section__content {
    font-size: 0.9375rem;
    line-height: 1.6;
  }

  .rich-text-section__content h2 {
    font-size: 1.5rem;
  }

  .rich-text-section__content h3 {
    font-size: 1.25rem;
  }

  .rich-text-section__content h4 {
    font-size: 1.125rem;
  }

  .rich-text-section__content p {
    margin-bottom: 15px;
  }
}

/* Small Mobile Layout */
@media (max-width: 480px) {
  .rich-text-section {
    padding: 40px 15px;
  }

  .rich-text-section__heading {
    font-size: 1.5rem;
  }

  .rich-text-section__content {
    font-size: 0.875rem;
  }

  .rich-text-section__content h2 {
    font-size: 1.375rem;
  }

  .rich-text-section__content h3 {
    font-size: 1.125rem;
  }

  .rich-text-section__content h4 {
    font-size: 1rem;
  }
}
/* Search Overlay */
.search-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: calc(var(--nav-topbar-height, 44px) + 84px);
  background: rgba(38, 48, 55, 0.35);
  backdrop-filter: blur(12px) saturate(130%);
  -webkit-backdrop-filter: blur(12px) saturate(130%);
  z-index: 10000;
  display: none;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.search-overlay.active {
  display: flex;
  opacity: 1;
  align-items: center;
  justify-content: space-between;
  padding: 10px 42px;
}

.search-overlay__content {
  flex: 0 1 360px;
  padding: 0;
  position: relative;
}

.search-overlay__close {
  flex-shrink: 0;
  background: none;
  border: none;
  color: white;
  cursor: pointer;
  padding: 0.5rem;
  margin-left: auto;
  transition:
    transform 0.2s ease,
    opacity 0.2s ease;
  opacity: 0.8;
}

.search-overlay__close svg {
  display: block;
  width: 23.707px;
  height: 23.707px;
  fill: currentColor;
  stroke: none;
  stroke-miterlimit: 10;
  transform: translateZ(0);
}

.search-overlay__close svg line {
  stroke: currentColor;
  stroke-width: 1;
}

.search-overlay__close:hover {
  opacity: 1;
  transform: rotate(90deg);
}

.search-overlay__form {
  position: relative;
  display: flex;
  align-items: center;
}

.search-overlay__input {
  width: 100%;
  padding: 0.75rem 3rem 0.75rem 0;
  font-size: 1rem;
  border: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  background: transparent;
  color: white;
  outline: none;
  font-family: inherit;
  transition: border-color 0.3s ease;
}

.search-overlay__input::placeholder {
  color: rgba(255, 255, 255, 0.6);
  font-weight: 300;
}

.search-overlay__input:focus {
  border-bottom-color: white;
}

.search-overlay__submit {
  position: absolute;
  right: 0;
  background: none;
  border: none;
  color: white;
  cursor: pointer;
  padding: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.7;
  transition: opacity 0.2s ease;
}

.search-overlay__submit svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
  display: block;
}

.search-overlay__submit:hover {
  opacity: 1;
}

/* Tablet View (768px and below) */
@media screen and (max-width: 768px) {
  .search-overlay.active {
    padding: 14px 24px;
  }

  .search-overlay__close {
    right: 24px;
    top: 14px;
  }

  .search-overlay__input {
    font-size: 0.95rem;
    padding: 0.625rem 2.5rem 0.625rem 0;
  }

  .search-overlay__submit svg {
    width: 16px;
    height: 16px;
  }
}

/* Mobile View (480px and below) */
@media screen and (max-width: 480px) {
  .search-overlay.active {
    padding: 12px 18px;
  }

  .search-overlay__close {
    right: 18px;
    top: 12px;
  }

  .search-overlay__close svg {
    width: 24px;
    height: 24px;
  }

  .search-overlay__input {
    font-size: 0.9rem;
    padding: 0.5rem 2.5rem 0.5rem 0;
  }
}
/* Search Results Page */
.search-results {
  min-height: 100vh;
}

/* body:has(.search-results) .top-bar {
  background-color: var(--color-primary-dark, #0a2040);
} */

body:has(.search-results) .site-header {
  box-shadow: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

/* Hero Section */
.search-results__hero {
  background: var(--color-primary-dark);
  padding: 10rem 2rem 4rem;
}

.search-results__hero-content {
  max-width: 1200px;
  margin: 0 auto;
  overflow: hidden;
}

.search-results__title {
  font-size: 2.5rem;
  line-height: 1.3;
  font-weight: 400;
  color: white;
  margin: 0;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.search-results__title span {
  font-weight: 600;
}

/* Container */
.search-results__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 3rem 2rem;
}

/* New Search Section */
.search-results__new-search {
  margin-bottom: 3rem;
}

.search-results__new-search h2 {
  font-size: 1.75rem;
  font-weight: 400;
  color: #223035;
  margin: 0 0 1.5rem 0;
}

.search-results__form {
  position: relative;
  margin-bottom: 1rem;
}

.search-results__input {
  width: 100%;
  padding: 1rem 3.5rem 1rem 0;
  font-size: 1rem;
  background: transparent;
  border: none;
  border-bottom: 1px solid #223035;
  font-family: inherit;
  transition: border-color 0.2s ease;
}

.search-results__input:focus {
  outline: none;
  border-bottom-color: #223035;
}

.search-results__submit {
  position: absolute;
  right: 0.5rem;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: #223035;
  cursor: pointer;
  padding: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.6;
  transition: opacity 0.2s ease;
}

.search-results__submit:hover {
  opacity: 1;
}

.search-results__submit .qodef-svg--search {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
}

.search-results__hint {
  color: #666;
  font-size: 0.9375rem;
  margin: 0;
}

/* Empty State */
.search-results__empty {
  text-align: center;
  padding: 4rem 2rem;
  color: #666;
}

.search-results__empty p {
  font-size: 1.125rem;
  margin: 0;
}

/* Articles Grid */
.search-results__container .articles-grid {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-top: 2.5rem;
  max-width: none;
}

/* Search Article Card - Horizontal Layout */
.search-article-card {
  display: flex;
  gap: 1.5rem;
  overflow: hidden;
  transition: box-shadow 0.3s ease;
}

.search-article-card__image {
  flex-shrink: 0;
  width: 180px;
  height: 140px;
  overflow: hidden;
}

.search-article-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.search-article-card__image a {
  display: block;
  width: 100%;
  height: 100%;
}

.search-article-card:hover .search-article-card__image img {
  transform: scale(1.05);
}

.search-article-card__placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  background: #f0f2f4;
  color: #b0bec5;
}

.search-article-card__placeholder svg {
  width: 48px;
  height: 48px;
}

.search-article-card__content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0.5rem 0;
}

.search-article-card__title {
  font-size: 1.125rem;
  font-weight: 600;
  line-height: 1.4;
  margin: 0 0 0.75rem 0;
  color: #1f2937;
}

.search-article-card__title a {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s ease;
}

.search-article-card__title a:hover {
  color: #223035;
}

.search-article-card__excerpt {
  font-size: 0.9375rem;
  line-height: 1.6;
  color: #6b7280;
  margin: 0;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Tablet View (768px and below) */
@media screen and (max-width: 768px) {
  .search-results__hero {
    padding: 5rem 1.5rem 3rem;
  }

  .search-results__title {
    font-size: 2rem;
  }

  .search-results__container {
    padding: 2.5rem 1.5rem;
  }

  .search-results__new-search h2 {
    font-size: 1.5rem;
  }

  .articles-grid {
    gap: 1.5rem;
  }

  .search-article-card__image {
    width: 150px;
    height: 120px;
  }

  .search-article-card__title {
    font-size: 1rem;
  }

  .search-article-card__excerpt {
    font-size: 0.875rem;
  }
}

/* Mobile View (480px and below) */
@media screen and (max-width: 480px) {
  .search-results__hero {
    padding: 4rem 1rem 2.5rem;
  }

  .search-results__title {
    font-size: 1.5rem;
  }

  .search-results__container {
    padding: 2rem 1rem;
  }

  .search-results__new-search {
    margin-bottom: 2rem;
  }

  .search-results__new-search h2 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
  }

  .search-results__input {
    padding: 0.875rem 3rem 0.875rem 1rem;
    font-size: 0.9375rem;
  }

  .search-results__hint {
    font-size: 0.875rem;
  }

  .articles-grid {
    gap: 1.25rem;
  }

  .search-article-card {
    flex-direction: column;
  }

  .search-article-card__image {
    width: 100%;
    height: 180px;
  }

  .search-article-card__content {
    padding: 1rem;
  }

  .search-results__empty {
    padding: 3rem 1rem;
  }

  .search-results__empty p {
    font-size: 1rem;
  }
}
/* Team Grid Section Styling */
.team-grid {
  padding: 5rem;
  background-color: #ffffff;
}

.team-grid--who-we-are-first {
  background-color: #efefef;
}

.team-grid--who-we-are-second {
  background-color: #d5dede;
}

.team-grid__container {
  margin: 0 auto;
}

.team-grid__layout {
  display: grid;
  grid-template-columns: minmax(280px, 460px) 1fr;
  gap: 200px;
  align-items: start;
}

.team-grid__intro {
  position: static;
}

.team-grid__heading {
  font-family: "Dm Sans", sans-serif;
  font-size: 42px;
  font-weight: 400;
  color: var(--color-primary-dark);
  line-height: 1.2381em;
}

.team-grid__description {
  font-size: 15px;
  line-height: 1.6;
  color: var(--color-text-dark);
  max-width: 460px;
  margin-bottom: 0;
  margin-top: 25px;
  font-family: Heebo, sans-serif;
}

.team-grid__members-wrap {
  width: 100%;
}

/* Team Members Grid */
.team-grid__members {
  display: grid;
  grid-template-columns: repeat(3, minmax(150px, 1fr));
  gap: 3.75rem 1.5rem;
  margin-top: 0;
}

/* Individual Team Member Card */
.team-member {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
}

.team-member__photo {
  width: 150px;
  height: 150px;
  aspect-ratio: 1;
  overflow: hidden;
  margin-bottom: 1rem;
  background-color: #e0e0e0;
}

.team-member__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.team-member__info {
  width: 100%;
}

.team-member__name {
  font-size: 18px;
  font-weight: 500;
  color: var(--color-primary-dark);
  line-height: 1.5em;
  font-family: "Dm Sans", sans-serif;
}

.team-member__title {
  font-size: 0.9375rem;
  color: var(--color-text-dark);
  line-height: 1.4;
  font-weight: 400;
  font-family: Heebo, sans-serif;
  margin-top: 2px;
}

/* Medium Desktop Layout (around 1102px) */
@media (max-width: 1200px) and (min-width: 1025px) {
  .team-grid {
    padding: 4rem 2rem;
  }

  .team-grid__layout {
    grid-template-columns: minmax(260px, 340px) 1fr;
    gap: 110px;
  }

  .team-grid__members {
    gap: 3rem 1.25rem;
  }

  .team-member__name {
    font-size: 18px;
  }
}

/* Tablet Layout (2 columns) */
@media (max-width: 1024px) {
  .team-grid {
    padding: 8rem 4rem;
  }

  .team-grid__layout {
    grid-template-columns: minmax(210px, 300px) 1fr;
    gap: 64px;
  }

  .team-grid__intro {
    position: static;
  }

  .team-grid__heading {
    font-size: 2rem;
  }

  .team-grid__description {
    font-size: 1rem;
    margin-bottom: 0;
  }

  .team-grid__members {
    grid-template-columns: repeat(2, 1fr);
    gap: 2.75rem 1.25rem;
  }

  .team-member__photo {
    width: 140px;
    height: 140px;
  }

  .team-member__title {
    font-size: 0.875rem;
  }
}

/* Mobile Layout (1 column) */
@media (max-width: 768px) {
  .team-grid {
    padding: 3.125rem 1.25rem;
  }

  .team-grid__layout {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .team-grid__heading {
    font-size: 1.75rem;
    margin-bottom: 1.25rem;
  }

  .team-grid__description {
    font-size: 0.9375rem;
    margin-bottom: 2rem;
  }

  .team-grid__members {
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem 1rem;
  }

  .team-member__photo {
    width: 130px;
    height: 130px;
    margin-bottom: 1rem;
  }

  .team-member__name {
    font-size: 1rem;
  }

  .team-member__title {
    font-size: 0.8125rem;
  }
}

/* Small Mobile Layout */
@media (max-width: 480px) {
  .team-grid {
    padding: 2.5rem 0.9375rem;
  }

  .team-grid__heading {
    font-size: 1.5rem;
  }

  .team-grid__description {
    font-size: 0.875rem;
    margin-bottom: 1.5rem;
  }

  .team-grid__members {
    grid-template-columns: 1fr;
    gap: 1.75rem;
  }

  .team-member__photo {
    width: 120px;
    height: 120px;
  }

  .team-member__name {
    font-size: 0.9375rem;
  }

  .team-member__title {
    font-size: 0.8125rem;
  }
}

@media (max-width: 680px) and (min-width: 481px) {
  .team-grid__members {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Team Member Photo Placeholder */
.team-member__placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  background: #e0e0e0;
  color: #9e9e9e;
}

.team-member__placeholder svg {
  width: 48px;
  height: 48px;
}
.vision-mission {
  background: var(--color-white, #fff);
}

.vision-mission__container {
  margin: 0 auto;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}

.vision-mission__card {
  padding: 16% 22% 14% 10%;
  background: var(--color-white);
  transition: color 0.4s ease;
  display: flex;
  flex-direction: column;
  min-height: 380px;
  position: relative;
  overflow: hidden;
  z-index: 0;
}

.vision-mission__card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--color-primary-dark);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: -1;
}

.vision-mission__card:hover::before {
  transform: scaleX(1);
}

.vision-mission__card:not(:hover)::before {
  transform-origin: left;
}

.vision-mission__card--vision {
  border-right: 1px solid rgba(0, 0, 0, 0.05);
}

.vision-mission__card:hover {
  color: var(--color-white);
}

.vision-mission__icon {
  width: 60px;
  height: 60px;
  color: var(--color-primary-dark);
  transition: color 0.4s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.vision-mission__icon svg {
  width: 100%;
  height: 100%;
  max-width: 60px;
  max-height: 60px;
}

.vision-mission__card:hover .vision-mission__icon {
  color: var(--color-white);
}

.vision-mission__heading {
  font-size: 25px;
  font-weight: 500;
  margin-top: 15px;
  color: var(--color-primary-dark);
  transition: color 0.4s ease;
}

.vision-mission__card:hover .vision-mission__heading {
  color: var(--color-white);
}

.vision-mission__text {
  font-family: Heebo, sans-serif;
  font-size: 15px;
  line-height: 1.6em;
  color: #7a7a7a;
  transition: color 0.4s ease;
  margin-top: 4px;
}

.vision-mission__card:hover .vision-mission__text {
  color: var(--color-text-light);
}

@media (max-width: 1024px) {
  .vision-mission__card {
    padding: 60px 40px;
  }
}

@media (max-width: 768px) {
  .vision-mission {
    padding: 60px 0;
  }

  .vision-mission__container {
    grid-template-columns: 1fr;
    padding: 0 24px;
  }

  .vision-mission__card {
    padding: 50px 32px;
    min-height: auto;
  }

  .vision-mission__card--vision {
    border-right: none;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  }

  .vision-mission__heading {
    font-size: 1.75rem;
  }

  .vision-mission__icon {
    width: 50px;
    height: 50px;
    margin-bottom: 24px;
  }

  .vision-mission__icon svg {
    max-width: 50px;
    max-height: 50px;
  }
}

@media (max-width: 480px) {
  .vision-mission__card {
    padding: 40px 24px;
  }

  .vision-mission__heading {
    font-size: 1.5rem;
    margin-bottom: 16px;
  }

  .vision-mission__icon {
    width: 45px;
    height: 45px;
    margin-bottom: 20px;
  }

  .vision-mission__icon svg {
    max-width: 45px;
    max-height: 45px;
  }

  .vision-mission__text {
    font-size: 0.9375rem;
  }
}

/* ==========================================================================
   CSP Inline Style Remediation — moved from inline style= attributes
   ========================================================================== */

/* Footer icons */
.footer__icon--sm {
  font-size: 15px;
}
.footer__icon--lg {
  font-size: 24px;
}

/* Footer careers placeholder (no link available) */
.footer__careers-placeholder {
  display: inline-block;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9375rem;
}
.footer__link--disabled {
  opacity: 0.7;
  pointer-events: none;
}

/* Footer copyright link */
.footer__copyright-link {
  color: inherit;
  text-decoration: none;
}

/* Top-bar icons (inner pages) */
.top-bar__icon-plane {
  font-size: 14px;
  display: inline-block;
  transform: rotate(90deg);
}
.top-bar__icon-world {
  font-size: 15px;
}

/* CTA button disabled state */
.cta-section__button--disabled {
  opacity: 0.7;
  pointer-events: none;
}
