@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
@font-face {
  font-family: "kohinoorlatinbold";
  src: url("../fonts/kohinoorlatin-bold-bf63c76513f09da-webfont.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "kohinoorlatinbook";
  src: url("../fonts/kohinoorlatin-book-bf63c76513e60f1-webfont.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "kohinoorlatindemi";
  src: url("../fonts/kohinoorlatin-demi-bf63c765144638d-webfont.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html,
body {
  min-height: 100vh;
}

html {
  scroll-behavior: smooth;
}

body {
  display: flex;
  flex-direction: column;
  background: #fff;
  color: #373F51;
  font: 400 1rem/1.5rem kohinoorlatinbook, sans-serif;
}
@media (max-width: 767px) {
  body {
    overflow-x: hidden;
  }
}
body.page {
  padding-top: 76px;
}
@media (min-width: 992px) {
  body.page {
    padding-top: 116px;
  }
}

img {
  width: 100%;
}

a {
  color: #c36;
}
a.link {
  color: #B11F24;
  font: 700 12px kohinoorlatinbold, sans-serif;
  text-decoration: none;
}
.page a .section {
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.page p,
.page ul,
.page ol {
  margin-bottom: 2rem;
}

ul,
ol {
  list-style-position: inside;
}

strong {
  font-family: kohinoorlatinbold, sans-serif;
}

.animate {
  opacity: 0;
  transform: scale(1.2);
  transition: all 0.8s ease-out;
}

.animate.fade-in {
  opacity: 1;
  transform: scale(1);
}

.blinking-underscore {
  animation: blink 1s infinite;
}

.mb-video {
  margin-bottom: 1rem;
}

.text-light {
  color: #7A7A7A;
}

@keyframes blink {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
.text-center {
  text-align: center;
}

.button {
  padding: 12px;
  width: 100%;
  background: #CD2328;
  border: none;
  border-radius: 3px;
  color: #fff;
  cursor: pointer;
  font-size: 14px;
  text-align: center;
  text-decoration: none;
  transition: 0.5s;
}
@media (min-width: 640px) {
  .button {
    padding: 12px 24px;
    width: auto;
    font-size: 15px;
  }
}
.button:hover {
  background: #B11F24;
}

.heading1 {
  color: #373F51;
  font-weight: 400;
  font-size: 2.2rem;
  line-height: 3rem;
}
@media (min-width: 768px) {
  .heading1 {
    font-size: 2.75rem;
    line-height: 3.85rem;
  }
}
.page .heading1 {
  margin-bottom: 1.5rem;
}

.heading2 {
  margin-bottom: 1.5rem;
  font: 400 1.5rem/1.2 kohinoorlatindemi, sans-serif;
}
.heading2 .heading2__inner {
  display: block;
}
.heading2 .heading2__inner:before {
  content: "";
  display: block;
  margin: 15px auto 25px;
  width: 64px;
  border-top: 4px solid #B11F24;
}
@media (min-width: 768px) {
  .heading2 {
    margin-bottom: 3rem;
    font-size: 2rem;
  }
}

.heading3 {
  margin-bottom: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid #BED3CB;
  color: #333;
  font-weight: 500;
  font-size: 1.125rem;
  line-height: 1.1;
}
.page .heading3 {
  margin-bottom: 1rem;
  border: none;
}

.heading4 {
  margin-bottom: 1rem;
  font-weight: 400;
  font-size: 1.125rem;
  line-height: 1.2;
}

.heading5 {
  font: italic 500 20px "Poppins", Sans-serif;
}

.heading6 {
  margin-bottom: 1rem;
  font: 1rem kohinoorlatinbold, sans-serif;
}

.inner {
  margin: 0 auto;
  padding: 0 1rem;
  width: 100%;
  max-width: 1320px;
}
@media (min-width: 1025px) {
  .inner {
    width: 90%;
    max-width: 1320px;
  }
}

.content-container {
  margin: 0 auto;
  padding: 20px 0;
  max-width: 680px;
}
.content-container a {
  text-decoration: none;
}
.content-container a:hover {
  text-decoration: underline;
}
.content-container .video-container {
  position: relative;
  padding-top: 56.25%;
  margin-bottom: 20px;
}
.content-container .video-container iframe,
.content-container .video-container video {
  border: none;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.content-container .image-container {
  margin-bottom: 20px;
}
.content-container .quote-box {
  background-color: #f4f4f4;
  border-left: 5px solid #b12025;
  padding: 15px;
  margin: 20px 0;
  font-style: italic;
}
.content-container .content-container__footer {
  margin-top: 40px;
  padding: 15px;
  background-color: #f4f4f4;
  font-size: 14px;
  text-align: center;
}
.content-container .large-image-container {
  position: relative;
  padding-top: 170%; /* Taller aspect ratio */
  width: 220%; /* Wider than the container */
  margin-left: -10%; /* Centers the wider image */
  margin-top: 0;
  margin-bottom: 20px;
}
.content-container .large-image-container img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.content-container .heading3 {
  padding-bottom: 0;
  font-family: "kohinoorlatinbold", sans-serif;
}
.content-container ul {
  padding-left: 20px;
}
.content-container li {
  margin-bottom: 5px;
}
.content-container .article-link {
  text-align: center;
  margin-top: 20px;
}
.content-container .highlight {
  font-family: "kohinoorlatinbold", sans-serif;
}

.intro {
  position: fixed;
  z-index: 10;
  display: flex;
  align-items: center;
  width: 100vw;
  height: 100vh;
  background: #800000;
  color: #fff;
  text-align: center;
  opacity: 1;
  animation: intro 0.5s ease-in 3s forwards;
  animation-fill-mode: forwards;
}
.intro p {
  margin: 0 auto;
  padding: 0 1rem;
  width: 100%;
  max-width: 1320px;
}
@media (min-width: 1025px) {
  .intro p {
    width: 90%;
    max-width: 1320px;
  }
}
.intro p {
  font: 400 2.2rem/1.4 kohinoorlatinbook, sans-serif;
}
@media (min-width: 1025px) {
  .intro p {
    font-size: 3rem;
  }
}

@keyframes intro {
  90% {
    opacity: 0;
  }
  100% {
    opacity: 0;
    display: none;
  }
}
.header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 2;
  padding: 0.5rem 1rem;
  width: 100%;
  color: #fff;
  transition: background 0.6s;
}
@media (min-width: 1025px) {
  .header {
    padding: 1rem 0;
  }
}
.header.header--index {
  color: #000;
}
@media (min-width: 1025px) {
  .header.header--index:not(.header--scroll) .menu li.menu__has-menu a:after {
    border-color: #373F51 !important;
  }
}
.header .header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (min-width: 1025px) {
  .header .header__inner {
    margin: 0 auto;
    padding: 0 1rem;
    width: 100%;
    max-width: 1320px;
  }
}
@media (min-width: 1025px) and (min-width: 1025px) {
  .header .header__inner {
    width: 90%;
    max-width: 1320px;
  }
}
.header .hamburger-menu #menu-toggle {
  display: none;
}
@media (max-width: 1024px) {
  .header .hamburger-menu #menu-toggle:checked ~ .menu-button > span {
    transform: rotate(45deg);
  }
  .header .hamburger-menu #menu-toggle:checked ~ .menu-button > span::before {
    top: 0;
    transform: rotate(0);
  }
  .header .hamburger-menu #menu-toggle:checked ~ .menu-button > span::after {
    top: -4px;
    transform: rotate(90deg);
  }
  .header .hamburger-menu #menu-toggle:checked ~ .menu {
    visibility: visible;
    left: 0;
  }
  .header .hamburger-menu .menu-button {
    position: fixed;
    top: 26px;
    right: 18px;
    display: flex;
    align-items: center;
    width: 33px;
    height: 26px;
    cursor: pointer;
    z-index: 1;
  }
}
@media (max-width: 1024px) and (min-width: 992px) {
  .header .hamburger-menu .menu-button {
    top: 34px;
    right: 44px;
  }
}
@media (max-width: 1024px) {
  .header .hamburger-menu .menu-button > span,
  .header .hamburger-menu .menu-button > span::before,
  .header .hamburger-menu .menu-button > span::after {
    position: relative;
    display: block;
    width: 33px;
    height: 4px;
    background: #000;
    border-radius: 3px;
    transition-duration: 0.25s;
  }
  .header .hamburger-menu .menu-button > span::before {
    content: "";
    top: -9px;
  }
  .header .hamburger-menu .menu-button ::after {
    content: "";
    top: 5px;
  }
  .header .hamburger-menu .menu {
    position: fixed;
    visibility: hidden;
    top: 0;
    left: -100%;
    display: block;
    margin: 0;
    padding: 0.5rem 1rem;
    width: 300px;
    height: 100%;
    list-style: none;
    background-color: #0a0a0a;
    background: linear-gradient(160deg, #0a0a0a 0%, #1f0608 45%, #0a0a0a 100%);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    box-shadow: 1px 0 12px rgba(0, 0, 0, 0.6);
    z-index: 9999;
    overflow-y: auto;
    transition-duration: 0.25s;
  }
  .header .hamburger-menu .menu .menu__list {
    background: linear-gradient(160deg, #0a0a0a 0%, #1f0608 45%, #0a0a0a 100%);
    background-color: #0a0a0a;
    border-radius: 6px;
    padding: 0.25rem 0.75rem;
    margin-top: 0.5rem;
  }
  .header .hamburger-menu .menu .menu__list > li {
    background: linear-gradient(90deg, rgba(177, 31, 36, 0.18) 0%, rgba(0, 0, 0, 0.55) 100%);
    border-radius: 4px;
    margin: 4px 0;
    padding: 2px 10px;
    border-left: 3px solid #B11F24;
  }
  .header .hamburger-menu .menu ul ul {
    background: transparent !important;
  }
  .header .hamburger-menu .menu li > a,
  .header .hamburger-menu .menu li ul li a {
    color: #fff !important;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.8);
  }
  .header .hamburger-menu .menu li ul {
    padding-left: 0.75rem;
    border-left: 2px solid rgba(177, 31, 36, 0.6);
    margin: 4px 0 8px;
  }
}
.header .hamburger-menu .menu .logo {
  margin-bottom: 30px;
}
.header .hamburger-menu .menu .menu__list {
  margin-bottom: 0;
  padding-left: 0;
  list-style: none;
}
@media (min-width: 1025px) {
  .header .hamburger-menu .menu .logo {
    display: none;
  }
  .header .hamburger-menu .menu .menu__list {
    display: flex;
  }
}
.header .hamburger-menu .menu li {
  position: relative;
  font-size: 1.25rem;
}
@media (min-width: 1025px) {
  .header .hamburger-menu .menu li {
    margin-left: 4rem;
  }
}
.header .hamburger-menu .menu li > a {
  display: flex;
  padding-bottom: 6px;
  color: #fff;
  border-bottom: 2px solid transparent;
  line-height: 50px;
  text-decoration: none;
}
@media (min-width: 1025px) {
  .header .hamburger-menu .menu li > a {
    color: inherit;
    line-height: normal;
  }
  .header .hamburger-menu .menu li > a:hover, .header .hamburger-menu .menu li > a.active {
    border-color: #B11F24;
  }
}
.header .hamburger-menu .menu li.menu__has-menu > a {
  justify-content: space-between;
}
.header .hamburger-menu .menu li.menu__has-menu > a:after {
  content: "";
  display: block;
  margin: 16px 6px 0 6px;
  width: 8px;
  height: 8px;
  border: 1px solid #fff;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}
@media (max-width: 1024px) {
  .header .hamburger-menu .menu li.menu__has-menu > a:after {
    display: none;
  }
}
@media (min-width: 1025px) {
  .header .hamburger-menu .menu li.menu__has-menu > a:after {
    margin-top: 5px;
  }
}
.header .hamburger-menu .menu li.menu__has-menu > a:hover {
  border-color: transparent;
}
.header .hamburger-menu .menu li ul {
  padding-left: 0;
  list-style: none;
}
.header .hamburger-menu .menu li ul li a {
  padding-bottom: 0;
}
@media (min-width: 1025px) {
  .header .hamburger-menu .menu li ul {
    opacity: 0;
    position: absolute;
    left: 0;
    min-width: 196px;
    background: rgba(177, 31, 36, 0.5);
    border: none !important;
    box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.2509803922);
    transition: opacity 1s;
  }
  .header .hamburger-menu .menu li ul li {
    margin: 0;
    padding: 10px;
    font-size: 16px;
  }
  .header .hamburger-menu .menu li ul li a {
    color: #fff;
    border: none;
  }
  .header .hamburger-menu .menu li ul li ul {
    top: 41px;
  }
}
@media (min-width: 1025px) {
  .header .hamburger-menu .menu li:hover > ul {
    opacity: 1;
  }
}
.header.header--scroll, .page .header {
  background: rgba(10, 10, 10, 0.88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  color: #fff;
}
.header.header--scroll .menu-button > span,
.header.header--scroll .menu-button > span::before,
.header.header--scroll .menu-button > span::after, .page .header .menu-button > span,
.page .header .menu-button > span::before,
.page .header .menu-button > span::after {
  background: #fff;
}
.header.header--scroll #menu-toggle:checked ~ .menu-button > span,
.header.header--scroll #menu-toggle:checked ~ .menu-button > span::before,
.header.header--scroll #menu-toggle:checked ~ .menu-button > span::after, .page .header #menu-toggle:checked ~ .menu-button > span,
.page .header #menu-toggle:checked ~ .menu-button > span::before,
.page .header #menu-toggle:checked ~ .menu-button > span::after {
  background: #000;
}
@media (max-width: 1024px) {
  .header {
    background: rgba(10, 10, 10, 0.88);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    color: #fff;
  }
  .header .menu-button > span,
  .header .menu-button > span::before,
  .header .menu-button > span::after {
    background: #fff !important;
  }
}

.logo {
  display: block;
  flex: 0 0 113px;
  width: 113px;
  height: 60px;
  background: url(../images/logo.webp) no-repeat;
  background-size: contain;
  transition: 0.5s;
}
@media (min-width: 992px) {
  .logo {
    flex: 0 0 160px;
    width: 160px;
    height: 84px;
  }
  .header--scroll .logo {
    flex: 0 0 128px;
    width: 128px;
    height: 67px;
  }
}

.hero {
  position: relative;
  height: 320px;
}
@media (min-width: 1025px) {
  .hero {
    height: 480px;
  }
}
.hero .hero__bg {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero .hero__content {
  position: absolute;
  top: 0;
  z-index: 1;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  width: 100%;
  height: 100%;
  text-align: center;
}
.hero .hero__content .hero__inner {
  margin: 0 auto;
  padding: 0 1rem;
  width: 100%;
  max-width: 1320px;
}
@media (min-width: 1025px) {
  .hero .hero__content .hero__inner {
    width: 90%;
    max-width: 1320px;
  }
}
.hero .hero__content .scroll {
  position: absolute;
  bottom: 80px;
  display: block;
  margin: auto auto 0;
  width: 48px;
  height: 48px;
  background: url(../images/arrow.svg) no-repeat;
}
.hero .heading1 {
  color: #fff;
  font-weight: 500;
  font-family: kohinoorlatindemi, sans-serif;
  text-align: left;
}
.hero .heading2 {
  color: #fff;
  font-size: 1.5rem;
  text-align: left;
}
.hero p {
  margin-bottom: 1rem;
  color: #fff;
  font-weight: 500;
  font-size: 1rem;
  line-height: 1.2;
  text-align: left;
}
.hero:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(43, 59, 74, 0.5);
}
.hero.hero--index {
  position: relative;
  height: 100vh;
}
.hero.hero--index .hero__bg {
  min-height: 100vh;
  opacity: 0.9;
  position: fixed;
  inset: 0;
  width: 100vw;
  height: 100vh;
  object-fit: cover;
  z-index: -1;
}
.hero.hero--index:after {
  background-color: rgba(231, 226, 205, 0.25);
}
.hero.hero--index .hero__content {
  min-height: 100vh;
}
.hero.hero--index .heading1 {
  color: #373F51;
  text-align: center;
}
.hero.hero--released .hero__bg {
  position: absolute;
  top: auto;
  bottom: 0;
}

.scroll-anchor {
  position: relative;
  top: -190px;
  display: block;
  visibility: hidden;
}

.section {
  padding: 2rem 0;
}
@media (min-width: 640px) {
  .section {
    padding: 4rem 0;
  }
}
@media (min-width: 768px) {
  .section {
    padding: 8rem 0;
  }
}

.plate-section {
  padding: 4rem 0;
  background: #B11F24;
  color: #fff;
}
@media (min-width: 768px) {
  .plate-section {
    padding: 5rem 0;
  }
}
.plate-section .plate-section__list {
  margin: 0 auto;
  padding: 0 1rem;
  width: 100%;
  max-width: 1320px;
}
@media (min-width: 1025px) {
  .plate-section .plate-section__list {
    width: 90%;
    max-width: 1320px;
  }
}
.plate-section .plate-section__list {
  list-style: none;
  text-align: center;
}
@media (min-width: 768px) {
  .plate-section .plate-section__list {
    display: flex;
    justify-content: space-between;
    text-align: left;
  }
}
.plate-section .plate-section__list li {
  margin-bottom: 20px;
}
@media (min-width: 768px) {
  .plate-section .plate-section__list li {
    margin-bottom: 0;
  }
}
.plate-section .plate-section__list li i {
  font: italic 500 1.25rem "Poppins", Sans-serif;
}
.plate-section .plate-section__list li big {
  font-weight: 500;
  font-size: 2rem;
  line-height: 1.2;
}
.plate-section .plate-section__list li p {
  font-weight: 400;
  font-size: 1.125rem;
  line-height: 1.2;
}
.plate-section a {
  color: inherit;
  text-decoration: none;
}
.plate-section p {
  margin-bottom: 0;
  font: 400 1.5rem/1.2 kohinoorlatinbook, sans-serif;
}
.plate-section p span {
  color: #F0C987;
}

.what-section {
  display: flex;
  align-items: center;
  background-image: linear-gradient(180deg, rgba(55, 63, 81, 0.8) 0%, rgba(55, 63, 81, 0.8) 100%), url(../images/indexalgae.jpg);
  background-repeat: no-repeat, repeat;
  background-size: cover;
  background-attachment: fixed;
  color: #fff;
}
.what-section .heading2 {
  text-align: center;
}
@media (min-width: 1025px) {
  .what-section .heading2 {
    margin-bottom: 6rem;
  }
}
.what-section .what-section__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  grid-row-gap: 3rem;
  list-style: none;
}
.what-section .what-section__list li {
  display: flex;
  margin-bottom: 1.75rem;
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.5;
}
@media (min-width: 768px) {
  .what-section .what-section__list li {
    padding-right: 2%;
    flex: 0 0 50%;
  }
}
@media (min-width: 1025px) {
  .what-section .what-section__list li {
    flex: 0 0 33.3333333333%;
  }
}
.what-section .what-section__list li:before {
  content: "";
  display: block;
  margin-right: 1rem;
  flex: 0 0 83px;
  width: 83px;
  height: 83px;
  background: #2B3B4A;
  border-radius: 50%;
}
.what-section .what-section__list li.what-section__list__diligence:before {
  content: "";
  display: block;
  margin-right: 1rem;
  flex: 0 0 59px;
  width: 59px;
  height: 59px;
  border-radius: 50%;
  background: #2B3B4A url("../images/icon-diligence.svg") no-repeat center;
  background-size: 43px auto;
}
@media (min-width: 768px) {
  .what-section .what-section__list li.what-section__list__diligence:before {
    flex: 0 0 67px;
    width: 67px;
    height: 67px;
  }
}
@media (min-width: 1024px) {
  .what-section .what-section__list li.what-section__list__diligence:before {
    flex: 0 0 83px;
    width: 83px;
    height: 83px;
  }
}
.what-section .what-section__list li.what-section__list__transaction:before {
  content: "";
  display: block;
  margin-right: 1rem;
  flex: 0 0 59px;
  width: 59px;
  height: 59px;
  border-radius: 50%;
  background: #2B3B4A url("../images/icon-strategy.svg") no-repeat center;
  background-size: 43px auto;
}
@media (min-width: 768px) {
  .what-section .what-section__list li.what-section__list__transaction:before {
    flex: 0 0 67px;
    width: 67px;
    height: 67px;
  }
}
@media (min-width: 1024px) {
  .what-section .what-section__list li.what-section__list__transaction:before {
    flex: 0 0 83px;
    width: 83px;
    height: 83px;
  }
}
.what-section .what-section__list li.what-section__list__operational:before {
  content: "";
  display: block;
  margin-right: 1rem;
  flex: 0 0 59px;
  width: 59px;
  height: 59px;
  border-radius: 50%;
  background: #2B3B4A url("../images/icon-hands.svg") no-repeat center;
  background-size: 43px auto;
}
@media (min-width: 768px) {
  .what-section .what-section__list li.what-section__list__operational:before {
    flex: 0 0 67px;
    width: 67px;
    height: 67px;
  }
}
@media (min-width: 1024px) {
  .what-section .what-section__list li.what-section__list__operational:before {
    flex: 0 0 83px;
    width: 83px;
    height: 83px;
  }
}
.what-section .what-section__list li.what-section__list__creation:before {
  content: "";
  display: block;
  margin-right: 1rem;
  flex: 0 0 59px;
  width: 59px;
  height: 59px;
  border-radius: 50%;
  background: #2B3B4A url("../images/icon-management.svg") no-repeat center;
  background-size: 43px auto;
}
@media (min-width: 768px) {
  .what-section .what-section__list li.what-section__list__creation:before {
    flex: 0 0 67px;
    width: 67px;
    height: 67px;
  }
}
@media (min-width: 1024px) {
  .what-section .what-section__list li.what-section__list__creation:before {
    flex: 0 0 83px;
    width: 83px;
    height: 83px;
  }
}
.what-section .what-section__list li.what-section__list__research:before {
  content: "";
  display: block;
  margin-right: 1rem;
  flex: 0 0 59px;
  width: 59px;
  height: 59px;
  border-radius: 50%;
  background: #2B3B4A url("../images/icon-operations.svg") no-repeat center;
  background-size: 43px auto;
}
@media (min-width: 768px) {
  .what-section .what-section__list li.what-section__list__research:before {
    flex: 0 0 67px;
    width: 67px;
    height: 67px;
  }
}
@media (min-width: 1024px) {
  .what-section .what-section__list li.what-section__list__research:before {
    flex: 0 0 83px;
    width: 83px;
    height: 83px;
  }
}

.focus-section {
  padding: 4rem 0;
  background: inherit;
}
@media (min-width: 768px) {
  .focus-section {
    padding: 6rem 0;
  }
}
.focus-section .heading2 {
  text-align: center;
}
.focus-section .focus-section__list {
  list-style: none;
}
@media (min-width: 640px) {
  .focus-section .focus-section__list {
    display: flex;
    gap: 20px 20px;
  }
}
.focus-section .focus-section__list li {
  margin-bottom: 20px;
  width: 100%;
  height: 280px;
  perspective: 1000px;
  background-color: transparent;
}
@media (min-width: 640px) {
  .focus-section .focus-section__list li {
    margin-bottom: 0;
    flex: 1;
    width: 300px;
  }
}
.focus-section .focus-section__list li .heading5 {
  color: #fff;
}
.focus-section .focus-section__list li .focus-section__list__inner {
  position: relative;
  width: 100%;
  height: 100%;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
  text-align: center;
  transition: transform 0.6s;
  transform-style: preserve-3d;
}
.focus-section .focus-section__list li .focus-section__list__inner .focus-section__list__front,
.focus-section .focus-section__list li .focus-section__list__inner .focus-section__list__back {
  position: absolute;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  width: 100%;
  height: 100%;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
.focus-section .focus-section__list li .focus-section__list__inner .focus-section__list__front .heading5 {
  font: 300 1.5rem "Poppins", Sans-serif;
}
.focus-section .focus-section__list li .focus-section__list__inner .focus-section__list__back {
  background-color: #373F51;
  transform: rotateY(180deg);
}
.focus-section .focus-section__list li:hover .focus-section__list__inner, .focus-section .focus-section__list li:active .focus-section__list__inner {
  transform: rotateY(180deg);
}
.focus-section .focus-section__list li.focus-section__list__healthcare .focus-section__list__front {
  background: url(../images/healthcare.jpg) no-repeat center;
  background-size: cover;
}
.focus-section .focus-section__list li.focus-section__list__industrials .focus-section__list__front {
  background: url(../images/machinery.webp) no-repeat center;
  background-size: cover;
}
.focus-section .focus-section__list li.focus-section__list__materials .focus-section__list__front {
  background: url(../images/industrials.webp) no-repeat center;
  background-size: cover;
}

.unique-section {
  padding: 40px 0;
  background: #E9E9E9;
}
@media (min-width: 768px) {
  .unique-section {
    padding: 80px 0;
  }
}
.unique-section .heading2 {
  text-align: center;
}
.unique-section .unique-section-list-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
}
.unique-section .unique-section-list {
  display: flex;
  justify-content: space-evenly;
  width: 100%;
  list-style: none;
}
.unique-section .unique-section-list li {
  position: relative;
  margin-left: -7px;
  flex: 0 0 80px;
}
.unique-section .unique-section-list li:before {
  content: "";
  display: block;
  width: 80px;
  height: 80px;
  background: url(../images/icon-hexagon.svg) no-repeat center;
  background-size: contain;
  transform: rotate(90deg);
  transition: all 0.3s ease;
}
.unique-section .unique-section-list li:hover:before {
  transform: rotate(90deg) scale(1.03);
  filter: drop-shadow(0 0 0.4rem #777);
}
@media (min-width: 768px) {
  .unique-section .unique-section-list li {
    margin-left: -22px;
    flex: 0 0 200px;
  }
  .unique-section .unique-section-list li:before {
    width: 200px;
    height: 200px;
  }
}
@media (min-width: 1366px) {
  .unique-section .unique-section-list li {
    margin-left: -30px;
    flex: 0 0 362px;
  }
  .unique-section .unique-section-list li:before {
    width: 362px;
    height: 362px;
  }
}
.unique-section .unique-section-list li span {
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  width: 100%;
  height: 100%;
  color: #fff;
  font: 500 0.6rem Roboto, sans-serif;
}
@media (min-width: 768px) {
  .unique-section .unique-section-list li span {
    font-size: 1.125rem;
  }
}
.unique-section .unique-section-list li.unique-section-list__commitment span:before {
  content: "";
  display: block;
  margin: 0 auto;
  width: 30px;
  height: 30px;
  background: url("../images/icon-infinity.svg") no-repeat center;
  background-size: contain;
}
@media (min-width: 768px) {
  .unique-section .unique-section-list li.unique-section-list__commitment span:before {
    margin-bottom: 0.5rem;
    width: 50px;
    height: 50px;
  }
}
@media (min-width: 1366px) {
  .unique-section .unique-section-list li.unique-section-list__commitment span:before {
    margin-bottom: 1rem;
    width: 96px;
    height: 96px;
  }
}
.unique-section .unique-section-list li.unique-section-list__symbiosis span:before {
  content: "";
  display: block;
  margin: 0 auto;
  width: 30px;
  height: 30px;
  background: url("../images/icon-management.svg") no-repeat center;
  background-size: contain;
}
@media (min-width: 768px) {
  .unique-section .unique-section-list li.unique-section-list__symbiosis span:before {
    margin-bottom: 0.5rem;
    width: 50px;
    height: 50px;
  }
}
@media (min-width: 1366px) {
  .unique-section .unique-section-list li.unique-section-list__symbiosis span:before {
    margin-bottom: 1rem;
    width: 96px;
    height: 96px;
  }
}
.unique-section .unique-section-list li.unique-section-list__responsibility span:before {
  content: "";
  display: block;
  margin: 0 auto;
  width: 30px;
  height: 30px;
  background: url("../images/icon-pie-chart.svg") no-repeat center;
  background-size: contain;
}
@media (min-width: 768px) {
  .unique-section .unique-section-list li.unique-section-list__responsibility span:before {
    margin-bottom: 0.5rem;
    width: 50px;
    height: 50px;
  }
}
@media (min-width: 1366px) {
  .unique-section .unique-section-list li.unique-section-list__responsibility span:before {
    margin-bottom: 1rem;
    width: 96px;
    height: 96px;
  }
}
.unique-section .unique-section-list li.unique-section-list__coordination span:before {
  content: "";
  display: block;
  margin: 0 auto;
  width: 30px;
  height: 30px;
  background: url("../images/icon-hands.svg") no-repeat center;
  background-size: contain;
}
@media (min-width: 768px) {
  .unique-section .unique-section-list li.unique-section-list__coordination span:before {
    margin-bottom: 0.5rem;
    width: 50px;
    height: 50px;
  }
}
@media (min-width: 1366px) {
  .unique-section .unique-section-list li.unique-section-list__coordination span:before {
    margin-bottom: 1rem;
    width: 96px;
    height: 96px;
  }
}
.unique-section .unique-section-list li.unique-section-list__flexibility span:before {
  content: "";
  display: block;
  margin: 0 auto;
  width: 30px;
  height: 30px;
  background: url("../images/icon-tool.svg") no-repeat center;
  background-size: contain;
}
@media (min-width: 768px) {
  .unique-section .unique-section-list li.unique-section-list__flexibility span:before {
    margin-bottom: 0.5rem;
    width: 50px;
    height: 50px;
  }
}
@media (min-width: 1366px) {
  .unique-section .unique-section-list li.unique-section-list__flexibility span:before {
    margin-bottom: 1rem;
    width: 96px;
    height: 96px;
  }
}
.unique-section .unique-section-list li.unique-section-list__integrity span:before {
  content: "";
  display: block;
  margin: 0 auto;
  width: 30px;
  height: 30px;
  background: url("../images/icon-shield.svg") no-repeat center;
  background-size: contain;
}
@media (min-width: 768px) {
  .unique-section .unique-section-list li.unique-section-list__integrity span:before {
    margin-bottom: 0.5rem;
    width: 50px;
    height: 50px;
  }
}
@media (min-width: 1366px) {
  .unique-section .unique-section-list li.unique-section-list__integrity span:before {
    margin-bottom: 1rem;
    width: 96px;
    height: 96px;
  }
}
.unique-section .unique-section-list:last-child {
  margin: -17px -20px 0 13px;
}
@media (min-width: 768px) {
  .unique-section .unique-section-list:last-child {
    margin: -46px -20px 0 158px;
  }
}
@media (min-width: 1366px) {
  .unique-section .unique-section-list:last-child {
    margin: -76px -20px 0 313px;
  }
}

.value-section {
  padding: 4rem 0;
  background: #2B3B4A;
  color: #fff;
}
@media (min-width: 768px) {
  .value-section {
    padding: 6rem 0;
  }
}
.value-section .value-section__list {
  margin-bottom: 3rem;
  list-style: none;
}
@media (min-width: 640px) {
  .value-section .value-section__list {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem 1.5rem;
  }
}
.value-section .value-section__list li {
  margin-bottom: 20px;
  width: 100%;
  height: 280px;
  perspective: 1000px;
  background-color: transparent;
}
@media (min-width: 640px) {
  .value-section .value-section__list li {
    margin-bottom: 0;
    width: calc(50% - 1rem);
  }
}
@media (min-width: 768px) {
  .value-section .value-section__list li {
    width: calc(33.3333333333% - 1rem);
  }
}
.value-section .value-section__list li .value-section__list__inner {
  position: relative;
  width: 100%;
  height: 100%;
  background: #2E3B49;
  border: 1px solid #fff;
  text-align: center;
  transition: transform 0.6s;
  transform-style: preserve-3d;
}
.value-section .value-section__list li .value-section__list__inner .value-section__list__front,
.value-section .value-section__list li .value-section__list__inner .value-section__list__back {
  position: absolute;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  padding: 35px;
  width: 100%;
  height: 100%;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
.value-section .value-section__list li .value-section__list__inner .value-section__list__front .heading5 {
  font: 500 1rem/1 Poppins, sans-serif;
  text-transform: uppercase;
}
.value-section .value-section__list li .value-section__list__inner .value-section__list__back {
  background-color: #373F51;
  transform: rotateY(180deg);
}
.value-section .value-section__list li .value-section__list__inner .value-section__list__back p {
  font-weight: 400;
  font-size: 0.9rem;
  line-height: normal;
}
@media (min-width: 1080px) {
  .value-section .value-section__list li .value-section__list__inner .value-section__list__back p {
    font-size: 1rem;
    line-height: 1.5;
  }
}
.value-section .value-section__list li .value-section__list__inner .value-section__list__back span {
  color: #F0C987;
}
.value-section .value-section__list li:hover .value-section__list__inner, .value-section .value-section__list li:active .value-section__list__inner {
  transform: rotateY(180deg);
}
.value-section .value-section__list li.value-section__list__diligence .value-section__list__inner .value-section__list__front:before {
  content: "";
  display: block;
  margin: 0 auto 20px;
  width: 128px;
  height: 148px;
  background: url("../images/icon-diligence.svg") no-repeat 0 center;
  background-size: contain;
}
.value-section .value-section__list li.value-section__list__transactional .value-section__list__inner .value-section__list__front:before {
  content: "";
  display: block;
  margin: 0 auto 20px;
  width: 128px;
  height: 148px;
  background: url("../images/icon-strategy.svg") no-repeat 0 center;
  background-size: contain;
}
.value-section .value-section__list li.value-section__list__advisory .value-section__list__inner .value-section__list__front:before {
  content: "";
  display: block;
  margin: 0 auto 20px;
  width: 128px;
  height: 148px;
  background: url("../images/icon-management.svg") no-repeat 0 center;
  background-size: contain;
}
.value-section .value-section__list li.value-section__list__operational .value-section__list__inner .value-section__list__front:before {
  content: "";
  display: block;
  margin: 0 auto 20px;
  width: 128px;
  height: 148px;
  background: url("../images/icon-operations.svg") no-repeat 0 center;
  background-size: contain;
}
.value-section .value-section__list li.value-section__list__markets .value-section__list__inner .value-section__list__front:before {
  content: "";
  display: block;
  margin: 0 auto 20px;
  width: 128px;
  height: 148px;
  background: url("../images/icon-mapping.svg") no-repeat 0 center;
  background-size: contain;
}
.value-section .value-section__list li.value-section__list__studies .value-section__list__inner .value-section__list__front:before {
  content: "";
  display: block;
  margin: 0 auto 20px;
  width: 128px;
  height: 148px;
  background: url("../images/icon-communication.svg") no-repeat 0 center;
  background-size: contain;
}

/* General About Section Styling */
.about-section {
  margin: 0 auto;
}
.about-section .about-block {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 40px;
  padding: 40px 0;
  border-bottom: 1px solid #ddd;
}
.about-section .about-block.reverse {
  flex-direction: row-reverse;
}
.about-section .about-block .about-text {
  flex: 1;
  min-width: 280px;
}
.about-section .about-block .about-text .about-heading {
  margin-bottom: 15px;
  color: #000;
  font-weight: bold;
  font-size: clamp(24px, 5vw, 28px);
}
.about-section .about-block .about-text p {
  margin-bottom: 12px;
  color: #555;
  font-size: clamp(14px, 2vw, 16px);
  line-height: 1.6;
}
.about-section .about-block .about-text a {
  color: #c36;
  font-weight: bold;
  text-decoration: none;
}
.about-section .about-block .about-text a:hover {
  text-decoration: underline;
}
.about-section .about-block .about-media {
  flex: 1;
  max-width: 450px;
  text-align: center;
}
.about-section .about-block .about-media img,
.about-section .about-block .about-media video {
  width: 100%;
  max-width: 100%;
  border-radius: 6px;
}
.about-section .about-block .about-list {
  padding-left: 18px;
  color: #333;
  font-size: 16px;
  text-align: left;
}
.about-section .about-block .about-list li {
  margin-bottom: 8px;
}
.about-section .about-block .about-media video {
  width: 100%;
  height: auto;
  max-height: 300px;
  border-radius: 6px;
  object-fit: cover;
}
@media (max-width: 767px) {
  .about-section .about-block {
    flex-direction: column;
    gap: 20px;
    padding: 30px 10px;
    text-align: center;
  }
  .about-section .about-block.reverse {
    flex-direction: column;
  }
  .about-section .about-block .about-text {
    padding: 0 10px;
    width: 100%;
  }
  .about-section .about-block .about-media {
    width: 100%;
  }
  .about-section .about-block .about-heading {
    font-size: 26px;
  }
  .about-section .about-block .about-text p {
    font-size: 18px;
    line-height: 1.7;
  }
  .about-section .about-block .about-list {
    font-size: 18px;
  }
}
.about-section .list {
  margin-bottom: 12px;
}

.news-list {
  margin-bottom: 4rem;
  list-style: none;
}
@media (min-width: 768px) {
  .news-list {
    margin-bottom: 8rem;
  }
}
.news-list li {
  margin-bottom: 2rem;
}
.news-list .news-list__item {
  color: #6B7177;
  font-size: 1rem;
  text-decoration: none;
}
@media (min-width: 768px) {
  .news-list .news-list__item {
    display: flex;
  }
}
.news-list .news-list__figure {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  border: 1px solid #BED3CB;
}
@media (min-width: 768px) {
  .news-list .news-list__figure {
    margin-right: 3.5rem;
    width: 21%;
    flex: 0 0 21%;
    height: 14rem;
  }
}
.news-list .news-list__figure img {
  width: 100%;
  max-width: 152px;
}
.news-list .news-list__content {
  padding-top: 10px;
}
.news-list .news-list__time {
  display: block;
  margin-bottom: 24px;
}
.news-list .heading3 {
  color: #333;
}

.insights-list {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  gap: 30px;
  list-style: none;
}
@media (min-width: 640px) {
  .insights-list {
    flex-direction: row;
  }
}
.insights-list li {
  position: relative;
}
@media (min-width: 640px) {
  .insights-list li {
    flex: 0 0 calc(50% - 15px);
  }
}
@media (min-width: 768px) {
  .insights-list li {
    flex: 0 0 calc(33.3333333333% - 20px);
  }
}
.insights-list .insights-list__figure {
  margin-bottom: 20px;
  height: 232px;
}
.insights-list .insights-list__figure img {
  height: 100%;
  object-fit: cover;
}
.insights-list .heading3 {
  margin-bottom: 6px;
  padding-bottom: 0;
  border: none;
}
.insights-list .insights-list__time {
  display: block;
  margin-bottom: 13px;
  color: #adadad;
  font-size: 12px;
  line-height: 1.3em;
}
.insights-list p {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  color: #777;
  font-size: 14px;
  line-height: 1.5em;
}

ul.about-list {
  margin: 0;
  list-style: none;
}
ul.about-list > li {
  display: flex;
  align-items: center;
  flex-direction: column;
  background: #F8F8F8;
}
@media (min-width: 768px) {
  ul.about-list > li {
    flex-direction: row;
  }
}
ul.about-list > li:not(:last-child) {
  margin-bottom: 64px;
}
ul.about-list > li:nth-child(even) {
  flex-direction: column;
}
@media (min-width: 768px) {
  ul.about-list > li:nth-child(even) {
    flex-direction: row-reverse;
  }
}
ul.about-list > li .about-list__figure {
  flex: 0 0 50%;
}
ul.about-list > li .about-list__figure img,
ul.about-list > li .about-list__figure video {
  height: 100%;
  object-fit: cover;
}
ul.about-list > li .about-list__content {
  padding: 2rem 1.5rem;
}
@media (min-width: 768px) {
  ul.about-list > li .about-list__content {
    padding: 2rem 2.75rem 2rem 2.25rem;
  }
}
ul.about-list > li .heading2 {
  margin-bottom: 1rem;
  font-family: kohinoorlatinbook, sans-serif;
}
ul.about-list > li p {
  margin-bottom: 0;
}
ul.about-list > li a {
  text-decoration: none;
}
ul.about-list > li ul {
  margin: 0;
  list-style: disc inside;
}

ul.timestamps-list {
  margin: 0;
  list-style: none;
}

ul.list-basic,
ol.list-basic {
  list-style-position: inside;
}

.video-section {
  margin: 0 auto 40px;
  width: 100%;
  max-width: 720px;
}

.cols {
  text-align: center;
}
@media (min-width: 768px) {
  .cols {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 30px;
    text-align: left;
  }
  .cols .col {
    flex: 0 0 calc(50% - 20px);
    width: calc(50% - 20px);
  }
}
.cols .heading2 {
  margin-bottom: 1rem;
}
.cols .heading3 {
  margin-bottom: 1rem;
  border: none;
}
.cols p {
  margin-bottom: 2rem;
}
.cols p a {
  color: inherit;
  text-decoration: none;
}

.form {
  text-align: left;
}
.form .form__item {
  margin-bottom: 18px;
}
.form .form__item .form__input {
  padding: 8px;
  width: 100%;
  border: none;
  border-bottom: 1px solid #c4c4c4;
  color: #7A7A7A;
  font: 1rem kohinoorlatinbook, sans-serif;
}
.form .form__item .form__input:focus {
  outline: none;
}
.form .form__item.form__item--thank {
  color: #16ba7c;
  font-size: 36px;
}
.form .form__item.form__item--error {
  color: #CD2328;
  font-size: 26px;
}
.form .form__item .select2-selection {
  padding-bottom: 8px;
  height: auto;
  border: none;
  border-bottom: 1px solid #c4c4c4;
  border-radius: 0;
}
.form .form__item.select2-container--default {
  width: 100% !important;
}

.video-figure {
  margin-bottom: 1.5rem;
  border: 8px solid #EEF3F9;
}
@media (min-width: 768px) {
  .video-figure {
    margin-bottom: 3rem;
    border: 30px solid #EEF3F9;
  }
}
.video-figure video,
.video-figure img {
  display: block;
  width: 100%;
}

.image-figure {
  margin-bottom: 2rem;
  max-width: 528px;
}

@media (min-width: 1025px) {
  .section-bio {
    display: flex;
  }
}
.section-bio .section-bio__figure {
  margin: 0 auto 40px;
  flex: 0 0 130px;
  width: 130px;
  height: 130px;
  border-radius: 50%;
  overflow: hidden;
}
@media (min-width: 768px) {
  .section-bio .section-bio__figure {
    flex: 0 0 360px;
    width: 360px;
    height: 360px;
  }
}
@media (min-width: 1025px) {
  .section-bio .section-bio__figure {
    margin: 0 90px 0 0;
  }
}
.section-bio .section-bio__figure img {
  min-height: 100%;
  object-fit: cover;
}
.section-bio .section-bio__data {
  display: block;
  margin-bottom: 1rem;
  font-style: italic;
}
.section-bio .section-bio__data b {
  font-family: kohinoorlatinbold, sans-serif;
}

/* Capabilities grid (about page) */
.capabilities-grid {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 2.5rem;
  border-top: 1px solid #E9E9E9;
}
@media (min-width: 768px) {
  .capabilities-grid {
    flex-direction: row;
  }
}

.capability {
  flex: 1;
  padding: 1.5rem 0;
  border-bottom: 1px solid #E9E9E9;
}
@media (min-width: 768px) {
  .capability {
    padding: 1.5rem 2rem;
    border-bottom: none;
    border-right: 1px solid #E9E9E9;
  }
  .capability:first-child {
    padding-left: 0;
  }
  .capability:last-child {
    border-right: none;
    padding-right: 0;
  }
}
.capability h3 {
  display: inline;
  font: 500 14px/1.6 "Neue Haas Grotesk Display", "Helvetica Neue", Helvetica, Arial, sans-serif;
  color: #373F51;
}
.capability h3:after {
  content: " — ";
}
.capability p {
  display: inline;
  font-size: 14px;
  line-height: 1.6;
  color: #7A7A7A;
  margin-bottom: 0;
}

/* About page: rotate video in reverse block */
.about-block.reverse .about-media video {
  transform: rotate(270deg);
}

/* legacy bio-section removed */
.bio-container {
  display: flex;
  flex-direction: column;
}

.bio-header {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #ccc;
}

.bio-image {
  flex-shrink: 0;
  margin-right: 20px;
  width: 160px;
  height: 160px;
  overflow: hidden;
  border-radius: 50%;
}

.bio-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.bio-info {
  display: flex;
  flex-direction: column;
}

.bio-name {
  margin-bottom: 5px;
  font-weight: bold;
  font-size: 24px;
}

.bio-title {
  margin-bottom: 5px;
  color: #555;
  font-size: 18px;
}

.bio-location {
  color: #777;
  font-size: 16px;
}

.bio-content {
  margin-top: 20px;
}

.bio-description p {
  margin-bottom: 15px;
  color: #333;
  font-size: 16px;
  line-height: 1.6;
}

.custom-link {
  display: inline-block;
  color: inherit;
  font-size: inherit;
  text-decoration: none;
  transition: font-size 0.2s ease-in-out, color 0.2s ease-in-out;
}

.custom-link:hover {
  display: inline;
  color: #c36;
  font-size: 1.05em;
}

.link-basic {
  text-decoration: none;
}

@media (min-width: 1025px) {
  .section--terms {
    padding: 4rem 0;
  }
}
.section--terms ul,
.section--terms ol {
  padding-left: 20px;
  list-style-position: inside;
}
.section--terms p,
.section--terms ul,
.section--terms ol {
  margin-bottom: 1rem;
}
.section--terms a {
  display: inline-block;
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  vertical-align: bottom;
}
.section--terms .terms-of-use,
.section--terms .privacy-policy {
  margin: 0 auto;
  line-height: 1.6;
}
@media (min-width: 1025px) {
  .section--terms .terms-of-use,
  .section--terms .privacy-policy {
    padding: 40px 0;
  }
}
.section--terms .terms-of-use h2,
.section--terms .privacy-policy h2 {
  margin-top: 40px;
  margin-bottom: 10px;
  color: #000;
  font-weight: bold;
  font-size: 24px;
}
.section--terms .terms-of-use ul,
.section--terms .privacy-policy ul {
  padding-left: 20px;
  color: #333;
  font-size: 16px;
}
.section--terms .terms-of-use ul.key-points,
.section--terms .privacy-policy ul.key-points {
  padding: 15px;
  background-color: #F8F8F8;
  border-left: 4px solid #c36;
  list-style: none;
}
.section--terms .terms-of-use ul.table-of-contents,
.section--terms .privacy-policy ul.table-of-contents {
  padding-left: 0;
  list-style: none;
}
.section--terms .terms-of-use ul.table-of-contents li,
.section--terms .privacy-policy ul.table-of-contents li {
  margin-bottom: 10px;
}
.section--terms .terms-of-use ul.table-of-contents a,
.section--terms .privacy-policy ul.table-of-contents a {
  color: #c36;
  font-weight: bold;
  text-decoration: none;
}
.section--terms .terms-of-use ul.table-of-contents a:hover,
.section--terms .privacy-policy ul.table-of-contents a:hover {
  text-decoration: underline;
}
.section--terms .terms-of-use,
.section--terms .privacy-policy {
  /* Address Styling */
}
.section--terms .terms-of-use address,
.section--terms .privacy-policy address {
  margin-top: 20px;
  font-size: 16px;
  line-height: 1.8;
}
.section--terms .terms-of-use,
.section--terms .privacy-policy {
  /* Copyright */
}
.section--terms .terms-of-use .copyright,
.section--terms .privacy-policy .copyright {
  margin-top: 30px;
  color: #777;
  font-size: 14px;
  text-align: center;
}
.section--terms .terms-of-use .terms-title {
  margin-bottom: 10px;
  font-weight: bold;
  font-size: 32px;
  text-align: center;
}
.section--terms .terms-of-use .terms-date {
  margin-bottom: 30px;
  color: #777;
  font-size: 16px;
  text-align: center;
}
.section--terms {
  /* Privacy Policy Styling */
}
.section--terms .privacy-title {
  margin-bottom: 10px;
  font-weight: bold;
  font-size: 32px;
  text-align: center;
}
.section--terms .privacy-date {
  margin-bottom: 30px;
  color: #777;
  font-size: 16px;
  text-align: center;
}

.table {
  margin-bottom: 1rem;
  overflow: auto;
  /* overrwhite of .half-width which is added by cms */
}
.table .half-width {
  margin-bottom: 0;
  width: 100%;
}
.table table {
  width: 100%;
  min-width: 400px;
  border-collapse: collapse;
  text-align: left;
}
.table thead th {
  padding: 0.5rem;
  font-family: kohinoorlatinbold, sans-serif;
}
.table tbody tr:first-child td {
  border-top: 2px solid #000;
}
.table tbody td {
  padding: 0.5rem;
  border-bottom: 1px solid #dfe2e6;
}
.table tbody td:last-child {
  text-align: center;
}

.half-width {
  margin: 0 auto 3rem;
  width: 100%;
}
@media (min-width: 768px) {
  .half-width {
    width: 50%;
  }
}
.half-width a {
  display: block;
}
.half-width img,
.half-width video {
  width: 100%;
  height: auto;
}

.footer {
  margin-top: auto;
  padding: 2rem 0 1.8rem;
  background: #2B3B4A;
  color: #fff;
}
.footer .footer__content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px 0px;
  margin-bottom: 40px;
}
@media (min-width: 1025px) {
  .footer .footer__content {
    flex-direction: row;
  }
}
.footer .footer__bottom {
  display: flex;
}
.footer .logo {
  margin-bottom: 1rem;
}
.footer p,
.footer ul {
  margin-bottom: 0;
}
.footer p,
.footer li {
  margin-bottom: 0;
  font: 300 14px/1.5 Poppins, sans-serif;
}
.footer a {
  color: inherit;
  text-decoration: none;
}
.footer ul {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
}
.footer .footer__copy {
  text-align: center;
}
.footer .footer__menu {
  flex-direction: column;
}
.footer .social-list li a {
  display: block;
  width: 30px;
  height: 30px;
}
.footer .social-list li.social-list__ln a {
  background: url("../images/icon-linkedin.svg") no-repeat center;
  background-size: 15px auto;
}
.footer .social-list li.social-list__x a {
  background: url("../images/icon-x.svg") no-repeat center;
  background-size: 15px auto;
}
.footer .social-list li.social-list__instagram a {
  background: url("../images/icon-instagram.svg") no-repeat center;
  background-size: 15px auto;
}
.footer .social-list li.social-list__fb a {
  background: url("../images/icon-facebook.svg") no-repeat center;
  background-size: 15px auto;
}
.footer .social-list li.social-list__youtube a {
  background: url("../images/icon-youtube.svg") no-repeat center;
  background-size: 15px auto;
}
.footer .media-list {
  gap: 20px 10px;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 40px !important;
  padding: 0 !important;
  list-style: none;
}
.breadcrumb li {
  margin-right: 10px;
  font-size: 18px;
}
.breadcrumb li:after {
  content: ">";
  margin-left: 10px;
}
.breadcrumb li.active {
  font-family: "kohinoorlatinbold", sans-serif;
}
.breadcrumb li.active:after {
  display: none;
}
.breadcrumb li a {
  color: inherit;
  text-decoration: none;
}

.section--404 {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: normal;
  text-align: center;
}
.section--404 .heading1 {
  margin: 0;
  font-weight: 600;
  font-size: 140px;
  line-height: normal;
}
.section--404 p {
  margin-bottom: 20px;
  font-size: 40px;
}

.section--flex {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
}

/* People Section */
.people-section {
  padding: 40px 20px;
  text-align: center;
}

.people-description {
  margin: 0 auto;
  max-width: 680px;
  color: #555;
  font-size: 20px;
  line-height: 1.6;
}

/* Featured People */
.featured-people {
  padding: 0 0 40px 0;
  text-align: center;
}

.featured-heading {
  margin-bottom: 30px;
  font-weight: bold;
  font-size: 28px;
}

/* Grid Layout for People */
.people-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  justify-content: center;
  margin: 0 auto;
  max-width: 1200px;
}

/* Profile Card */
.profile-card {
  padding: 20px;
  border: 1px solid #BED3CB;
  text-align: center;
  transition: transform 0.3s ease-in-out;
}
.profile-card a {
  text-decoration: none;
}
.profile-card:hover {
  transform: scale(1.05);
}
.profile-card .profile-image {
  margin-bottom: 15px;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  object-fit: cover;
}
.profile-card .profile-info {
  text-align: center;
}
.profile-card .profile-info .profile-name {
  margin-bottom: 5px;
  font-weight: bold;
  font-size: 20px;
}
.profile-card .profile-info .profile-title {
  margin-bottom: 10px;
  color: #777;
  font-size: 16px;
}
.profile-card .profile-link {
  display: inline-block;
  margin-bottom: 20px;
  font-weight: bold;
  font-size: 16px;
  text-decoration: none;
}
.profile-card .profile-link:hover {
  text-decoration: underline;
}
.profile-card .contact-linkedin {
  display: block;
  margin: 0 auto;
  width: 30px;
  height: 30px;
  background: url(../images/icon-ln.svg) no-repeat;
  background-size: contain;
}

/* Team Strength Message */
.team-strength {
  padding: 40px 20px;
  background: #f9f9f9;
  text-align: center;
}

.team-message {
  margin: 0 auto;
  max-width: 680px;
  color: #2B3B4A;
  font-weight: bold;
  font-size: 20px;
  line-height: 1.6;
}

#team-count {
  color: #B11F24;
  font-weight: bold;
  font-size: 42px;
}

.plus-sign {
  color: #B11F24;
  font-weight: bold;
  font-size: 42px;
}

/* Animation */
@keyframes countUp {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.link-contact {
  position: fixed;
  right: 40px;
  bottom: 40px;
  display: none;
}
@media (min-width: 1025px) {
  .link-contact {
    display: block;
  }
}
.link-contact a {
  padding: 12px;
  width: 100%;
  background: #CD2328;
  border: none;
  border-radius: 3px;
  color: #fff;
  cursor: pointer;
  font-size: 14px;
  text-align: center;
  text-decoration: none;
  transition: 0.5s;
  animation: pulse 2.2s ease-in-out infinite;
}
@media (min-width: 640px) {
  .link-contact a {
    padding: 12px 24px;
    width: auto;
    font-size: 15px;
  }
}
.link-contact a:hover {
  background: #B11F24;
  animation: none;
}

@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  70% {
    opacity: 0.4;
  }
  100% {
    transform: scale(1.1);
    opacity: 1;
  }
}
/* Accordion */
.accordion {
  margin-top: 40px;
  border-top: 2px solid #DD193D;
}
.accordion .accordion__item {
  border-bottom: 2px solid #DD193D;
}
.accordion .heading4 {
  margin-bottom: 0;
}
.accordion .accordion__title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  padding-top: 24px;
  padding-bottom: 24px;
  cursor: pointer;
}
.accordion .accordion__title::after {
  content: "+";
  position: relative;
  font-weight: 300;
  font-size: 48px;
  line-height: 26px;
  transition: all 0.3s ease;
}
.accordion .accordion__title.active:after {
  content: "-";
}
.accordion .accordion__tab {
  display: none;
  width: 100%;
}
.accordion .accordion__tab p {
  margin-bottom: 26px;
}
.accordion .accordion__tab ul {
  padding-left: 20px;
  list-style: disc;
}

.accordion-vt {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 40px;
  width: 100%;
  list-style-type: none;
  overflow: hidden;
  font-size: 0;
}
@media (min-width: 1025px) {
  .accordion-vt {
    flex-direction: row;
    min-width: 950px;
    height: 500px;
  }
}
.accordion-vt .accordion-vt__item {
  display: inline-block;
  position: relative;
  margin: 0;
  width: 100%;
  font-size: 16px;
  transition: all 0.4s 0.1s ease-in-out;
  vertical-align: top;
  overflow: hidden;
}
@media (min-width: 1025px) {
  .accordion-vt .accordion-vt__item {
    width: 300px;
    height: 100%;
  }
}
.accordion-vt .accordion-vt__item .accordion-vt__item__inner {
  display: flex;
  flex-direction: column;
  height: 100%;
}
@media (min-width: 640px) {
  .accordion-vt .accordion-vt__item .accordion-vt__item__inner {
    flex-direction: row;
  }
}
.accordion-vt .accordion-vt__item .accordion-vt__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100px;
  flex: 0 0 100px;
  font-size: 10px;
  transition: all 0.4s 0.1s ease-in-out;
}
@media (min-width: 640px) {
  .accordion-vt .accordion-vt__item .accordion-vt__icon {
    padding: 20px 6%;
    width: 30%;
    flex: 0 0 30%;
  }
}
@media (min-width: 1025px) {
  .accordion-vt .accordion-vt__item .accordion-vt__icon {
    width: 300px;
    flex: 0 0 300px;
  }
}
.accordion-vt .accordion-vt__item .accordion-vt__icon .accordion-vt__icon__figure {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 130px;
}
.accordion-vt .accordion-vt__item .accordion-vt__icon img {
  display: block;
  width: 88%;
  height: 100px;
  object-fit: contain;
}
.accordion-vt .accordion-vt__item .heading4 {
  font: 400 1rem/1.5rem kohinoorlatinbold, sans-serif;
}
.accordion-vt .accordion-vt__item .heading4.heading4--solo {
  margin-bottom: 0;
  text-align: center;
}
.accordion-vt .accordion-vt__item .accordion-vt__content {
  position: relative;
}
@media (min-width: 640px) {
  .accordion-vt .accordion-vt__item .accordion-vt__content {
    border-left: 1px solid #fff;
  }
}
@media (min-width: 1025px) {
  .accordion-vt .accordion-vt__item .accordion-vt__content {
    width: 360px;
    max-height: 500px;
    overflow: hidden;
  }
}
@media (min-width: 640px) {
  .accordion-vt .accordion-vt__item .accordion-vt__content .accordion-vt__content__inner {
    padding: 20px 4%;
  }
}
@media (min-width: 1025px) {
  .accordion-vt .accordion-vt__item .accordion-vt__content .accordion-vt__content__inner {
    width: calc(360px - 8%);
  }
}
.accordion-vt .accordion-vt__item ul {
  margin-bottom: 20px;
  padding-left: 20px;
  list-style: disc;
}
@media (min-width: 640px) {
  .accordion-vt .accordion-vt__item:hover {
    width: 350px;
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid #fff;
  }
  .accordion-vt .accordion-vt__item:hover .accordion-vt__icon {
    flex: 0 0 100px;
  }
  .accordion-vt .accordion-vt__item:hover .accordion-vt__icon img {
    width: 60px;
  }
  .accordion-vt .accordion-vt__item:hover .accordion-vt__content {
    overflow: auto;
    height: 500px;
  }
}
@media (min-width: 1025px) {
  .accordion-vt .accordion-vt__item:hover {
    width: 450px;
  }
}
.accordion-vt .accordion-vt__icon {
  display: block;
}
.accordion-vt .link {
  color: #fff;
  font-size: inherit;
}

.what-section__description {
  margin: 0 auto;
  max-width: 540px;
  text-align: center;
}
.what-section__description .heading4 {
  font: 400 1rem/1.5rem kohinoorlatinbold, sans-serif;
  text-align: center;
}
.what-section__description .what-section__description__list {
  padding-left: 20px;
  list-style: disc;
}

/* ============================================================
   ADDITIVE STYLES ONLY — do not modify anything above this line
   ============================================================ */
/* Breadcrumb refinement */
.breadcrumb {
  margin-bottom: 2rem !important;
  align-items: center;
}
.breadcrumb li {
  font-size: 14px;
  color: #555;
}
.breadcrumb li:after {
  content: "›";
  font-size: 18px;
  color: #adadad;
  vertical-align: -1px;
}
.breadcrumb li.active {
  color: #373F51;
  font-family: "kohinoorlatindemi", sans-serif;
}
.breadcrumb li a {
  color: #555;
  transition: color 0.2s;
}
.breadcrumb li a:hover {
  color: #CD2328;
}

/* Hero heading responsive scaling */
.hero .heading1 {
  font-size: 1.35rem;
  line-height: 1.35;
}
@media (min-width: 640px) {
  .hero .heading1 {
    font-size: 1.75rem;
    line-height: 1.3;
  }
}
@media (min-width: 768px) {
  .hero .heading1 {
    font-size: 2.25rem;
    line-height: 1.3;
  }
}
@media (min-width: 1025px) {
  .hero .heading1 {
    font-size: 2.75rem;
    line-height: 1.25;
  }
}

/* About page CMS content responsive */
.page .section .inner p, .page .section .inner li {
  font-size: 15px;
  line-height: 1.75;
  word-break: break-word;
}
@media (min-width: 640px) {
  .page .section .inner p, .page .section .inner li {
    font-size: 16px;
  }
}
.page .section .inner img {
  max-width: 100%;
  height: auto;
}
.page .section .inner table {
  display: block;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  max-width: 100%;
}
.page .section .inner iframe {
  max-width: 100%;
}

/* Breadcrumbs on dark backgrounds */
.value-section .breadcrumb li,
.plate-section .breadcrumb li,
.hero .breadcrumb li {
  color: rgba(255, 255, 255, 0.7);
}
.value-section .breadcrumb li:after,
.plate-section .breadcrumb li:after,
.hero .breadcrumb li:after {
  color: rgba(255, 255, 255, 0.4);
}
.value-section .breadcrumb li.active,
.plate-section .breadcrumb li.active,
.hero .breadcrumb li.active {
  color: #fff;
}
.value-section .breadcrumb li a,
.plate-section .breadcrumb li a,
.hero .breadcrumb li a {
  color: rgba(255, 255, 255, 0.7);
}
.value-section .breadcrumb li a:hover,
.plate-section .breadcrumb li a:hover,
.hero .breadcrumb li a:hover {
  color: #fff;
}

/* Mobile CTA clearance */
@media (max-width: 1024px) {
  body {
    padding-bottom: 48px;
  }
}
/* Button disabled state */
.button:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

/* Article meta (date + reading time) */
.article-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 1.5rem;
  color: #7A7A7A;
  font-size: 14px;
}
.article-meta .article-meta__sep {
  font-size: 18px;
  line-height: 1;
}

.content-container .references {
  margin-bottom: 2.5rem;
}

.content-container .disclaimer {
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid #E9E9E9;
  font-size: 13px;
  line-height: 1.7;
  color: #7A7A7A;
}
.content-container .disclaimer p {
  margin-bottom: 0.75rem;
}

.article-footer {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid #E9E9E9;
}

.article-nav {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 1.5rem;
}
@media (min-width: 768px) {
  .article-nav {
    flex-direction: row;
    gap: 1.5rem;
  }
}

.article-nav__link {
  display: block;
  flex: 1;
  padding: 1.25rem 1.5rem;
  border: 1px solid #E9E9E9;
  border-radius: 4px;
  text-decoration: none;
  color: #373F51;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.article-nav__link:hover {
  border-color: #373F51;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.article-nav__prev {
  text-align: left;
}

.article-nav__next {
  text-align: right;
}

.article-nav__label {
  display: block;
  font-size: 12px;
  color: #7A7A7A;
  margin-bottom: 4px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.article-nav__title {
  display: block;
  font: 500 15px/1.4 "Neue Haas Grotesk Display", "Helvetica Neue", Helvetica, Arial, sans-serif;
  color: #373F51;
}

.article-nav__back {
  display: inline-block;
  font-size: 14px;
  margin-top: 0.5rem;
}

/* Mobile CTA bar */
.mobile-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  z-index: 10;
  width: 100%;
  text-align: center;
}
@media (min-width: 1025px) {
  .mobile-cta {
    display: none;
  }
}
.mobile-cta .mobile-cta__link {
  display: block;
  padding: 14px;
  background: #CD2328;
  color: #fff;
  font: 500 15px/1 kohinoorlatindemi, sans-serif;
  text-decoration: none;
  transition: background 0.3s;
}
.mobile-cta .mobile-cta__link:hover {
  background: #B11F24;
}

/* Cookie Consent Banner */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  z-index: 11;
  width: 100%;
  background: #2B3B4A;
  color: #fff;
  box-shadow: 0 -2px 8px rgba(0, 0, 0, 0.15);
  padding-bottom: env(safe-area-inset-bottom, 0px);
}
.cookie-banner .cookie-banner__inner {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 14px 16px;
}
@media (min-width: 640px) {
  .cookie-banner .cookie-banner__inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 14px 24px;
  }
}
@media (min-width: 1025px) {
  .cookie-banner .cookie-banner__inner {
    max-width: 1320px;
    margin: 0 auto;
    padding: 16px 40px;
  }
}
.cookie-banner .cookie-banner__text {
  font-size: 13px;
  line-height: 1.45;
}
@media (min-width: 640px) {
  .cookie-banner .cookie-banner__text {
    font-size: 14px;
  }
}
.cookie-banner .cookie-banner__text a {
  color: #F0C987;
  text-decoration: underline;
}
.cookie-banner .cookie-banner__actions {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}
.cookie-banner .cookie-banner__btn {
  padding: 10px 20px;
  border: none;
  border-radius: 4px;
  font: 500 14px/1 kohinoorlatindemi, sans-serif;
  cursor: pointer;
  min-height: 44px;
  min-width: 80px;
  transition: background 0.2s;
}
.cookie-banner .cookie-banner__btn--accept {
  background: #CD2328;
  color: #fff;
}
.cookie-banner .cookie-banner__btn--accept:hover {
  background: #B11F24;
}
.cookie-banner .cookie-banner__btn--reject {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.4);
}
.cookie-banner .cookie-banner__btn--reject:hover {
  border-color: #fff;
}

body.has-cookie-banner .mobile-cta {
  display: none;
}

/* Bio section - non-hero page with fixed header clearance */
.bio-section {
  padding: 5rem 0 3rem;
}
@media (min-width: 768px) {
  .bio-section {
    padding: 6rem 0 4rem;
  }
}
@media (min-width: 1025px) {
  .bio-section {
    padding: 7rem 0 4rem;
  }
}
.bio-section .inner {
  width: 100% !important;
  max-width: 100% !important;
  padding: 0 2rem !important;
}
@media (min-width: 1025px) {
  .bio-section .inner {
    padding: 0 4rem !important;
  }
}

/* Bio profile (Apollo-style) */
.bio-apollo-header {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
@media (min-width: 768px) {
  .bio-apollo-header {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
  }
}
.bio-apollo-header .bio-apollo-header__name {
  font: 300 2.5rem/1.1 kohinoorlatinbook, sans-serif;
  color: #373F51;
  letter-spacing: -0.02em;
}
@media (min-width: 640px) {
  .bio-apollo-header .bio-apollo-header__name {
    font-size: 3rem;
  }
}
@media (min-width: 1025px) {
  .bio-apollo-header .bio-apollo-header__name {
    font-size: 3.5rem;
  }
}
.bio-apollo-header .bio-apollo-header__location {
  display: flex;
  align-items: flex-start;
  gap: 6px;
  font-size: 15px;
  color: #373F51;
  white-space: nowrap;
  flex-shrink: 0;
}
@media (min-width: 768px) {
  .bio-apollo-header .bio-apollo-header__location {
    padding-top: 0.75rem;
    text-align: right;
  }
}
.bio-apollo-header .bio-apollo-header__location svg {
  flex-shrink: 0;
  margin-top: 2px;
}

.bio-apollo-divider {
  border: none;
  border-top: 2px solid #CD2328;
  margin: 1.5rem 0 2rem;
}
@media (min-width: 768px) {
  .bio-apollo-divider {
    margin: 2rem 0 2.5rem;
  }
}

.bio-apollo-main {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
@media (min-width: 768px) {
  .bio-apollo-main {
    display: grid;
    grid-template-columns: 35% 1fr;
    gap: 3rem;
    align-items: start;
  }
}
@media (min-width: 1025px) {
  .bio-apollo-main {
    grid-template-columns: 37% 1fr;
    gap: 4rem;
  }
}
.bio-apollo-main .bio-apollo-main__title {
  font: 300 1.4rem/1.3 kohinoorlatinbook, sans-serif;
  color: #373F51;
  margin-bottom: 1.5rem;
}
@media (min-width: 640px) {
  .bio-apollo-main .bio-apollo-main__title {
    font-size: 1.6rem;
  }
}
@media (min-width: 1025px) {
  .bio-apollo-main .bio-apollo-main__title {
    font-size: 1.75rem;
  }
}
.bio-apollo-main .bio-apollo-main__photo {
  overflow: hidden;
}
.bio-apollo-main .bio-apollo-main__photo img {
  width: 100%;
  height: auto;
  display: block;
  filter: grayscale(100%);
}
.bio-apollo-main .bio-apollo-main__right {
  flex: 1;
  min-width: 0;
}
.bio-apollo-main .bio-apollo-main__right p {
  margin-bottom: 1.25rem;
  font-size: 16px;
  line-height: 1.75;
  color: #333;
}
@media (min-width: 640px) {
  .bio-apollo-main .bio-apollo-main__right p {
    font-size: 17px;
  }
}
.bio-apollo-main .bio-apollo-main__right a {
  color: inherit;
  text-decoration: none;
}

/* Team page (our-people) */
.plate-section .team-counter {
  padding: 0;
}

.plate-section:has(.team-counter) {
  padding: 2rem 0;
}
@media (min-width: 768px) {
  .plate-section:has(.team-counter) {
    padding: 2.5rem 0;
  }
}

.team-counter {
  display: flex;
  justify-content: center;
  gap: 2rem;
  padding: 1rem 0;
}
@media (min-width: 640px) {
  .team-counter {
    gap: 3rem;
  }
}
@media (min-width: 1025px) {
  .team-counter {
    gap: 4rem;
  }
}
.team-counter .team-counter__item {
  text-align: center;
}
.team-counter .team-counter__number {
  display: block;
  color: #fff;
  font-weight: bold;
  font-size: 32px;
}
@media (min-width: 640px) {
  .team-counter .team-counter__number {
    font-size: 42px;
  }
}
.team-counter .team-counter__label {
  display: block;
  margin-top: 4px;
  color: #7A7A7A;
  font-size: 12px;
}
@media (min-width: 640px) {
  .team-counter .team-counter__label {
    font-size: 14px;
  }
}

.team-section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 0.5rem;
}

.view-all-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: none;
  border: 1px solid #c4c4c4;
  border-radius: 4px;
  color: #373F51;
  cursor: pointer;
  font-size: 13px;
  white-space: nowrap;
  transition: border-color 0.2s, color 0.2s;
}
.view-all-btn svg {
  width: 20px;
  height: 20px;
  transition: transform 0.3s;
}
.view-all-btn:hover {
  border-color: #373F51;
}
.view-all-btn.view-all-btn--active svg {
  transform: rotate(180deg);
}

.team-category--hidden {
  display: none;
}
.team-category--hidden.team-category--visible {
  display: block;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-bottom: 2rem;
}
@media (min-width: 640px) {
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
  }
}
@media (min-width: 768px) {
  .team-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
  }
}
@media (min-width: 1025px) {
  .team-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
  }
}

.team-card {
  border-radius: 6px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.08);
  transition: box-shadow 0.2s;
}
.team-card:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}
.team-card .team-card__photo-wrap {
  position: relative;
  width: 100%;
  padding-top: 110%;
  overflow: hidden;
  background: #E9E9E9;
}
.team-card .team-card__photo {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.team-card .team-card__info {
  padding: 10px 12px 14px;
}
@media (min-width: 640px) {
  .team-card .team-card__info {
    padding: 12px 14px 16px;
  }
}
.team-card .team-card__name {
  font: 500 14px/1.3 kohinoorlatindemi, sans-serif;
  color: #373F51;
  margin-bottom: 2px;
}
@media (min-width: 640px) {
  .team-card .team-card__name {
    font-size: 15px;
  }
}
.team-card .team-card__title {
  font-size: 12px;
  color: #7A7A7A;
  line-height: 1.4;
  margin-bottom: 8px;
}
@media (min-width: 640px) {
  .team-card .team-card__title {
    font-size: 13px;
  }
}
.team-card .team-card__links {
  display: flex;
  gap: 12px;
  align-items: center;
}
.team-card .team-card__link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 12px;
  color: #CD2328;
  text-decoration: none;
}
.team-card .team-card__link:hover {
  text-decoration: underline;
}
.team-card .team-card__link svg {
  flex-shrink: 0;
}

/* FAQ page */
.faq-list {
  list-style: none;
  max-width: 680px;
}

.faq-list li {
  border-bottom: 1px solid #E9E9E9;
}

.faq-question {
  position: relative;
  padding: 18px 40px 18px 0;
  font: 400 1rem/1.5 kohinoorlatindemi, sans-serif;
  color: #373F51;
  cursor: pointer;
  transition: color 0.2s;
}
@media (min-width: 640px) {
  .faq-question {
    font-size: 1.1rem;
    padding: 20px 48px 20px 0;
  }
}
.faq-question::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-weight: 300;
  font-size: 28px;
  line-height: 1;
  color: #CD2328;
  transition: transform 0.3s;
}
.faq-question:hover {
  color: #CD2328;
}
.faq-question.active::after {
  content: "−";
}

.faq-answer {
  display: none;
  padding: 0 0 20px;
}
.faq-answer.open {
  display: block;
}
.faq-answer p {
  font-size: 15px;
  line-height: 1.7;
  color: #333;
}
@media (min-width: 640px) {
  .faq-answer p {
    font-size: 16px;
  }
}
.faq-answer a {
  color: #CD2328;
  text-decoration: none;
}
.faq-answer a:hover {
  text-decoration: underline;
}

/* Legal pages (privacy, terms, disclaimer, accessibility, cookie-policy) */
.legal-hero {
  padding: 4rem 0 3rem;
  background: #2B3B4A;
  color: #fff;
}
@media (min-width: 768px) {
  .legal-hero {
    padding: 5rem 0 3.5rem;
  }
}
.legal-hero .legal-hero__title {
  font: 500 2rem/1.2 kohinoorlatindemi, sans-serif;
  margin-bottom: 8px;
}
@media (min-width: 640px) {
  .legal-hero .legal-hero__title {
    font-size: 2.5rem;
  }
}
@media (min-width: 1025px) {
  .legal-hero .legal-hero__title {
    font-size: 3rem;
  }
}
.legal-hero .legal-hero__date {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  letter-spacing: 0.03em;
}

.legal-section {
  padding: 2rem 0 4rem;
}
@media (min-width: 768px) {
  .legal-section {
    padding: 2.5rem 0 5rem;
  }
}

@media (min-width: 768px) {
  .legal-layout {
    display: grid;
    grid-template-columns: 220px 1fr;
    gap: 3rem;
  }
}
@media (min-width: 1025px) {
  .legal-layout {
    grid-template-columns: 240px 1fr;
    gap: 4rem;
  }
}

.legal-sidebar {
  display: none;
}
@media (min-width: 768px) {
  .legal-sidebar {
    display: block;
    position: sticky;
    top: 100px;
    align-self: start;
  }
}
.legal-sidebar .legal-sidebar__title {
  font: 500 11px/1 kohinoorlatindemi, sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #7A7A7A;
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 1px solid #E9E9E9;
}
.legal-sidebar .legal-sidebar__nav {
  list-style: none;
  padding: 0;
}
.legal-sidebar .legal-sidebar__nav li {
  margin-bottom: 0;
}
.legal-sidebar .legal-sidebar__nav a {
  display: block;
  padding: 7px 0 7px 12px;
  font-size: 13px;
  line-height: 1.45;
  color: #7A7A7A;
  text-decoration: none;
  border-left: 2px solid transparent;
  transition: color 0.2s, border-color 0.2s;
}
.legal-sidebar .legal-sidebar__nav a:hover {
  color: #373F51;
}
.legal-sidebar .legal-sidebar__nav a.legal-toc-link--active {
  color: #CD2328;
  border-left-color: #CD2328;
  font-weight: 500;
}

.legal-toc-mobile {
  margin-bottom: 2rem;
}
@media (min-width: 768px) {
  .legal-toc-mobile {
    display: none;
  }
}
.legal-toc-mobile .legal-toc-mobile__toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 12px 16px;
  background: #F8F8F8;
  border: 1px solid #E9E9E9;
  border-radius: 6px;
  font: 500 14px/1 kohinoorlatindemi, sans-serif;
  color: #373F51;
  cursor: pointer;
}
.legal-toc-mobile .legal-toc-mobile__toggle::after {
  content: "▾";
  font-size: 16px;
  transition: transform 0.3s;
}
.legal-toc-mobile .legal-toc-mobile__toggle[aria-expanded=true]::after {
  transform: rotate(180deg);
}
.legal-toc-mobile .legal-toc-mobile__nav {
  display: none;
  list-style: none;
  padding: 8px 0;
  margin-top: 8px;
  background: #fff;
  border: 1px solid #E9E9E9;
  border-radius: 6px;
}
.legal-toc-mobile .legal-toc-mobile__nav--open {
  display: block;
}
.legal-toc-mobile .legal-toc-mobile__nav a {
  display: block;
  padding: 10px 16px;
  font-size: 14px;
  color: #7A7A7A;
  text-decoration: none;
}
.legal-toc-mobile .legal-toc-mobile__nav a:hover {
  color: #CD2328;
  background: #F8F8F8;
}

.legal-content {
  max-width: 720px;
}
.legal-content h2 {
  font: 500 1.35rem/1.3 kohinoorlatindemi, sans-serif;
  color: #373F51;
  margin: 2.5rem 0 1rem;
  padding-top: 1rem;
}
@media (min-width: 640px) {
  .legal-content h2 {
    font-size: 1.5rem;
  }
}
.legal-content h2:first-child {
  margin-top: 0;
  padding-top: 0;
}
.legal-content h3 {
  font: 500 1.1rem/1.35 kohinoorlatindemi, sans-serif;
  color: #373F51;
  margin: 1.5rem 0 0.75rem;
}
.legal-content p {
  font-size: 15px;
  line-height: 1.75;
  color: #333;
  margin-bottom: 1rem;
}
@media (min-width: 640px) {
  .legal-content p {
    font-size: 16px;
  }
}
.legal-content ul, .legal-content ol {
  margin: 0 0 1rem 1.25rem;
  font-size: 15px;
  line-height: 1.75;
  color: #333;
}
@media (min-width: 640px) {
  .legal-content ul, .legal-content ol {
    font-size: 16px;
  }
}
.legal-content ul li, .legal-content ol li {
  margin-bottom: 0.5rem;
}
.legal-content a {
  color: #CD2328;
  text-decoration: none;
}
.legal-content a:hover {
  text-decoration: underline;
}
.legal-content strong {
  font-weight: 600;
  color: #373F51;
}
.legal-content .table-of-contents {
  display: none;
}

/* Unique section (hex grid) mobile fix */
@media (max-width: 767px) {
  .unique-section .unique-section-list {
    margin-left: -20px;
  }
  .unique-section .unique-section-list li {
    flex: 0 0 70px;
    margin-left: -5px;
  }
  .unique-section .unique-section-list li:before {
    width: 70px;
    height: 70px;
  }
  .unique-section .unique-section-list li span {
    font-size: 0.5rem;
  }
  .unique-section .unique-section-list:last-child {
    margin: -14px -10px 0 8px;
  }
}
/* Audio Player — Global Insights */
.article-meta__audio-badge {
  color: #CD2328;
  font-weight: 600;
}

.article-audio {
  margin: 1.25rem 0 2rem;
  border: 1px solid rgba(55, 63, 81, 0.15);
  border-radius: 8px;
  background: rgba(55, 63, 81, 0.03);
  padding: 1rem 1.25rem;
}
.article-audio__inner {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}
.article-audio__play {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: none;
  background: #CD2328;
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.2s;
}
.article-audio__play:hover {
  background: rgb(170.15, 29.05, 33.2);
}
.article-audio__info {
  flex-shrink: 0;
  min-width: 120px;
}
.article-audio__title {
  font-size: 0.85rem;
  font-weight: 600;
  color: #373F51;
  line-height: 1.2;
}
.article-audio__time {
  font-size: 0.75rem;
  color: #555;
  margin-top: 2px;
  font-variant-numeric: tabular-nums;
}
.article-audio__progress {
  flex: 1;
  min-width: 100px;
  height: 6px;
  background: rgba(55, 63, 81, 0.12);
  border-radius: 3px;
  cursor: pointer;
  position: relative;
}
.article-audio__progress-bar {
  height: 100%;
  background: #CD2328;
  border-radius: 3px;
  width: 0%;
  transition: width 0.1s linear;
}
.article-audio__controls {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-shrink: 0;
}
.article-audio__speed {
  border: 1px solid rgba(55, 63, 81, 0.2);
  background: transparent;
  border-radius: 4px;
  padding: 2px 8px;
  font-size: 0.75rem;
  font-weight: 600;
  color: #373F51;
  cursor: pointer;
  transition: border-color 0.2s;
}
.article-audio__speed:hover {
  border-color: #CD2328;
  color: #CD2328;
}
.article-audio__download {
  color: #555;
  transition: color 0.2s;
}
.article-audio__download:hover {
  color: #CD2328;
}

@media (max-width: 640px) {
  .article-audio {
    padding: 0.75rem 1rem;
  }
  .article-audio__inner {
    gap: 0.5rem;
  }
  .article-audio__progress {
    order: 5;
    flex-basis: 100%;
  }
}

/* ── About page mobile overlap fix (Apr 2026) ── */
@media (max-width: 900px) {
  .about-section .about-block,
  .about-section .about-block.reverse {
    flex-direction: column !important;
    flex-wrap: nowrap !important;
    gap: 20px;
  }
  .about-section .about-block .about-text {
    flex: 0 0 100% !important;
    min-width: 0 !important;
    max-width: 100% !important;
    width: 100% !important;
  }
  .about-section .about-block .about-media {
    flex: 0 0 100% !important;
    min-width: 0 !important;
    max-width: 100% !important;
    width: 100% !important;
  }
}


/* Article data tables (generated by content engine) */
.content-container .article-table-wrap {
  margin: 2rem 0 2.5rem;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 1px 3px rgba(0,0,0,0.08), 0 4px 16px rgba(0,0,0,0.06);
  border: 1px solid #dce3ea;
}
.content-container .article-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
  line-height: 1.5;
  display: table;
  border-radius: 0;
  overflow: visible;
  border: none;
  margin: 0;
}
.content-container .article-table thead {
  border-bottom: 3px solid #0f2d50;
}
.content-container .article-table thead th {
  background: #1a3a5c;
  color: #e8edf2;
  padding: 13px 20px;
  text-align: left;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  white-space: nowrap;
  border: none;
}
.content-container .article-table thead th:first-child {
  border-left: 4px solid #4a9eda;
}
.content-container .article-table tbody tr {
  transition: background 0.12s ease;
}
.content-container .article-table tbody tr:nth-child(even) td {
  background: #f4f7fa;
}
.content-container .article-table tbody tr:nth-child(odd) td {
  background: #fff;
}
.content-container .article-table tbody tr:hover td {
  background: #e8f0f8;
}
.content-container .article-table tbody td {
  padding: 12px 20px;
  border-bottom: 1px solid #e4eaf0;
  color: #1c2b3a;
  vertical-align: middle;
  font-size: 0.875rem;
}
.content-container .article-table tbody td:first-child {
  font-weight: 600;
  color: #1a3a5c;
  border-left: 4px solid transparent;
  font-family: SFMono-Regular, Consolas, Liberation Mono, Menlo, monospace;
  font-size: 0.8rem;
  letter-spacing: 0.02em;
}
.content-container .article-table tbody tr:hover td:first-child {
  border-left-color: #4a9eda;
}
.content-container .article-table tbody tr:last-child td {
  border-bottom: none;
}
.content-container .article-table caption {
  font-size: 0.73rem;
  color: #7a8a98;
  font-style: italic;
  text-align: left;
  padding: 8px 20px 6px;
  caption-side: bottom;
  background: #f4f7fa;
  border-top: 1px solid #e4eaf0;
}
@media (max-width: 640px) {
  .content-container .article-table thead th {
    padding: 10px 14px;
    font-size: 0.62rem;
  }
  .content-container .article-table tbody td {
    padding: 10px 14px;
    font-size: 0.82rem;
  }
  .content-container .article-table tbody td:first-child {
    font-size: 0.74rem;
  }
}

/* Article heading hierarchy */
.content-container h2 {
  font-size: 1.45rem;
  font-weight: 700;
  color: #0f2236;
  margin: 2.4rem 0 0.6rem;
  line-height: 1.3;
  letter-spacing: -0.01em;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid #e4eaf0;
}
.content-container h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: #1a3a5c;
  margin: 2rem 0 0.5rem;
  line-height: 1.35;
}
.content-container h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: #1a3a5c;
  margin: 1.6rem 0 0.4rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.content-container h2 + p,
.content-container h3 + p,
.content-container h4 + p {
  margin-top: 0;
}

/* Article table wrap — ensure full width */
.content-container .article-table-wrap {
  width: 100%;
}

/* data-table — alias for article-table (generated by new pipeline) */
.content-container .data-table-wrapper {
  margin: 2rem 0 2.5rem;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 1px 3px rgba(0,0,0,0.08), 0 4px 16px rgba(0,0,0,0.06);
  border: 1px solid #dce3ea;
  overflow-x: auto;
}
.content-container .data-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
  line-height: 1.5;
  display: table;
  border-radius: 0;
  overflow: visible;
  border: none;
  margin: 0;
}
.content-container .data-table thead {
  border-bottom: 3px solid #0f2d50;
}
.content-container .data-table thead th {
  background: #1a3a5c;
  color: #e8edf2;
  padding: 13px 20px;
  text-align: left;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  white-space: nowrap;
  border: none;
  cursor: pointer;
  user-select: none;
}
.content-container .data-table thead th:first-child {
  border-left: 4px solid #4a9eda;
}
.content-container .data-table tbody tr {
  transition: background 0.12s ease;
}
.content-container .data-table tbody tr:nth-child(even) td {
  background: #f4f7fa;
}
.content-container .data-table tbody tr:nth-child(odd) td {
  background: #fff;
}
.content-container .data-table tbody tr:hover td {
  background: #e8f0f8;
}
.content-container .data-table tbody td {
  padding: 12px 20px;
  border-bottom: 1px solid #e4eaf0;
  color: #1c2b3a;
  vertical-align: middle;
  font-size: 0.875rem;
}
.content-container .data-table tbody td:first-child {
  font-weight: 600;
  color: #1a3a5c;
  border-left: 4px solid transparent;
  font-family: SFMono-Regular, Consolas, Liberation Mono, Menlo, monospace;
  font-size: 0.8rem;
  letter-spacing: 0.02em;
}
.content-container .data-table tbody tr:hover td:first-child {
  border-left-color: #4a9eda;
}
.content-container .data-table tbody tr:last-child td {
  border-bottom: none;
}
.content-container .data-table caption {
  font-size: 0.73rem;
  color: #7a8a98;
  font-style: italic;
  text-align: left;
  padding: 8px 20px 6px;
  caption-side: bottom;
  background: #f4f7fa;
  border-top: 1px solid #e4eaf0;
}

/* References section */
.content-container .references {
  margin-top: 3rem;
  padding-top: 1.5rem;
  border-top: 2px solid #e4eaf0;
}
.content-container .references h3 {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #8a9bb0;
  margin: 0 0 1rem;
  border: none;
  padding: 0;
}
.content-container .references-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.content-container .references-list li {
  font-size: 0.78rem;
  line-height: 1.6;
  color: #5a6a7a;
  padding: 0.55rem 0;
  border-bottom: 1px solid #eef2f7;
  display: flex;
  gap: 0.5rem;
  align-items: baseline;
}
.content-container .references-list li:last-child {
  border-bottom: none;
}
.content-container .references-list .ref-num {
  font-size: 0.68rem;
  font-weight: 700;
  color: #1a3a5c;
  white-space: nowrap;
  flex-shrink: 0;
  font-family: SFMono-Regular, Consolas, monospace;
}
.content-container .references-list a {
  color: #4a9eda;
  text-decoration: none;
  font-size: 0.72rem;
  font-weight: 600;
  white-space: nowrap;
  flex-shrink: 0;
}
.content-container .references-list a:hover {
  text-decoration: underline;
}

/* ── Lead paragraph ────────────────────────────────────────────────────── */
.content-container p.lead {
  font-size: 1.1rem;
  font-weight: 500;
  line-height: 1.7;
  color: #0f2236;
  margin-bottom: 1.5rem;
}

/* ── Pull quotes / callout divs ────────────────────────────────────────── */
.content-container .callout {
  border-left: 4px solid #4a9eda;
  background: #f4f8fd;
  padding: 1rem 1.25rem 1rem 1.5rem;
  margin: 1.75rem 0;
  border-radius: 0 6px 6px 0;
  font-size: 1.05rem;
  font-style: italic;
  line-height: 1.65;
  color: #1a3a5c;
  position: relative;
}
.content-container .callout strong {
  font-style: normal;
  color: #0f2236;
}

/* ── Article bullet lists ──────────────────────────────────────────────── */
.content-container .article-list {
  list-style: none;
  padding: 0;
  margin: 1rem 0 1.25rem 0;
}
.content-container .article-list li {
  position: relative;
  padding: 0.3rem 0 0.3rem 1.4rem;
  line-height: 1.65;
  color: #1c2b3a;
  font-size: 0.95rem;
}
.content-container .article-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.65rem;
  width: 7px;
  height: 7px;
  background: #1a3a5c;
  border-radius: 1px;
  transform: rotate(45deg);
}

/* ── Takeaways by PlocamiumAI ──────────────────────────────────────────── */
.ai-takeaways {
  border: 1px solid #c8d8ec;
  border-radius: 6px;
  background: #f0f5fb;
  margin: 0 0 1.5rem;
  overflow: hidden;
}
.ai-takeaways__header {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.45rem 0.9rem;
  border-bottom: 1px solid #c8d8ec;
  background: #e8f0f9;
}
.ai-takeaways__icon {
  color: #4a9eda;
  font-size: 0.85rem;
  flex-shrink: 0;
  line-height: 1;
}
.ai-takeaways__label {
  flex: 1;
  font-size: 0.78rem;
  color: #3a5a7a;
}
.ai-takeaways__label strong {
  color: #0f2236;
  font-weight: 700;
}
.ai-takeaways__psi-link {
  color: #3a5a7a;
  text-decoration: none;
  border-bottom: 1px dotted #4a9eda;
}
.ai-takeaways__psi-link:hover {
  color: #1a6fbf;
  border-bottom-style: solid;
}
.ai-takeaways__toggle {
  background: none;
  border: none;
  font-size: 0.68rem;
  font-weight: 600;
  color: #4a7aaa;
  cursor: pointer;
  padding: 2px 5px;
  border-radius: 4px;
  white-space: nowrap;
  letter-spacing: 0.03em;
}
.ai-takeaways__toggle:hover {
  background: #d0e4f5;
}
.ai-takeaways__list {
  list-style: none;
  padding: 0.6rem 1rem 0.6rem 0.9rem;
  margin: 0;
  display: block;
}
.ai-takeaways.collapsed .ai-takeaways__list {
  display: none;
}
.ai-takeaways__list li {
  font-size: 0.85rem;
  line-height: 1.55;
  color: #1c2b3a;
  padding: 0.22rem 0 0.22rem 1.2rem;
  position: relative;
}
.ai-takeaways__list li + li {
  border-top: 1px solid #dae8f5;
}
.ai-takeaways__list li::before {
  content: "•";
  position: absolute;
  left: 0.15rem;
  color: #4a9eda;
  font-size: 1rem;
  line-height: 1.5;
  font-weight: 700;
}

/* Linked article image on /globals listing */
.insights-list__img-link {
  display: block;
  overflow: hidden;
  border-radius: 4px;
}
.insights-list__img-link .insights-list__figure {
  margin-bottom: 0;
  overflow: hidden;
}
.insights-list__img-link img {
  transition: transform 0.3s ease, opacity 0.3s ease;
  width: 100%;
}
.insights-list__img-link:hover img {
  transform: scale(1.04);
  opacity: 0.88;
}

/* ── Mobile nav: backdrop scrim + menu visibility on light pages ── */
@media (max-width: 1024px) {
  /* Scrim behind open menu */
  .header .hamburger-menu #menu-toggle:checked ~ .menu::before {
    content: '';
    position: fixed;
    inset: 0;
    left: 300px;
    background: rgba(0,0,0,0.45);
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
    z-index: -1;
  }

  /* Ensure menu panel is always fully opaque dark */
  .header .hamburger-menu .menu {
    background-color: #1e2d3d !important;
  }

  /* Desktop sub-dropdowns: solid on mobile */
  .header .hamburger-menu .menu li ul {
    background: rgba(10, 22, 36, 0.96);
    border-radius: 4px;
    padding: 0.25rem 0;
  }
  .header .hamburger-menu .menu li ul li a {
    color: #c8d8ea !important;
    padding: 0.4rem 1rem;
    display: block;
  }
  .header .hamburger-menu .menu li ul li a:hover {
    color: #fff !important;
  }
}

/* ── Article readability on mobile ── */
@media (max-width: 767px) {
  /* Comfortable side padding */
  .content-container {
    padding: 12px 1.1rem 24px;
  }

  /* Readable body text */
  .content-container p,
  .content-container li {
    font-size: 1rem;
    line-height: 1.75;
  }

  /* Lead paragraph */
  .content-container p.lead {
    font-size: 1.05rem;
    line-height: 1.7;
  }

  /* Scale headings for small screens */
  .content-container h2 {
    font-size: 1.2rem;
    margin: 1.8rem 0 0.5rem;
  }
  .content-container h3 {
    font-size: 1rem;
    margin: 1.5rem 0 0.4rem;
  }

  /* Tables: horizontal scroll, no overflow bleed */
  .content-container .article-table-wrap {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    margin: 0 -1.1rem;
    padding: 0 1.1rem;
    width: calc(100% + 2.2rem);
  }
  .content-container .article-table {
    min-width: 520px;
    font-size: 0.8rem;
  }

  /* Callouts */
  .content-container .callout {
    margin: 1.25rem 0;
    padding: 0.9rem 1rem;
    font-size: 0.95rem;
  }

  /* Takeaways box */
  .ai-takeaways {
    margin: 0 0 1.25rem;
  }
  .ai-takeaways__list li {
    font-size: 0.82rem;
  }

  /* References */
  .content-container .references-list li {
    flex-wrap: wrap;
    font-size: 0.75rem;
  }

  /* Article nav footer */
  .article-nav {
    flex-direction: column;
    gap: 1rem;
  }
}

/* ─── Mobile hamburger menu: accordion redesign (2026-05-08) ─── */
@media (max-width: 1024px) {
  .header .hamburger-menu .menu {
    width: min(360px, 88vw);
    padding: calc(max(env(safe-area-inset-top), 0px) + 4rem) 1.25rem max(env(safe-area-inset-bottom), 1rem);
    background-color: #0f1c2c !important;
    overflow-y: auto;
    overscroll-behavior: contain;
  }

  .header .hamburger-menu #menu-toggle:checked ~ .menu::before {
    left: min(360px, 88vw);
  }

  .header .hamburger-menu .menu .logo {
    display: none;
  }

  .header .hamburger-menu .menu .menu__list {
    margin: 0;
    padding: 0;
  }

  .header .hamburger-menu .menu li {
    position: relative;
    margin: 0;
    font-size: 1.0625rem;
    border-bottom: 1px solid rgba(255,255,255,0.07);
  }
  .header .hamburger-menu .menu li:last-child {
    border-bottom: none;
  }

  .header .hamburger-menu .menu li > a {
    display: block;
    padding: 1rem 0;
    line-height: 1.4;
    color: rgba(255,255,255,0.92);
    border-bottom: none;
    letter-spacing: 0.01em;
  }
  .header .hamburger-menu .menu li > a.active,
  .header .hamburger-menu .menu li > a:hover {
    color: #fff;
    border-bottom: none;
  }

  .header .hamburger-menu .menu li.menu__has-menu > a {
    display: block;
    padding-right: 48px;
  }
  .header .hamburger-menu .menu li.menu__has-menu > a:after {
    display: none;
  }

  .header .hamburger-menu .submenu-toggle {
    position: absolute;
    top: 0;
    right: 0;
    width: 48px;
    height: 56px;
    background: transparent;
    border: 0;
    padding: 0;
    cursor: pointer;
    color: inherit;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .header .hamburger-menu .submenu-toggle::after {
    content: "";
    display: block;
    width: 8px;
    height: 8px;
    border: solid rgba(255,255,255,0.7);
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
    transition: transform 0.2s ease;
  }
  .header .hamburger-menu li.menu__has-menu.is-open > .submenu-toggle::after {
    transform: rotate(-135deg);
    border-color: #fff;
  }

  .header .hamburger-menu .menu li ul {
    max-height: 0;
    overflow: hidden;
    margin: 0;
    padding: 0;
    background: transparent;
    border-radius: 0;
    transition: max-height 0.25s ease, padding 0.25s ease;
  }
  .header .hamburger-menu .menu li.is-open > ul {
    max-height: 600px;
    margin: 0 0 0.75rem 0.25rem;
    padding: 0.25rem 0 0.5rem 1rem;
    border-left: 2px solid rgba(177, 31, 36, 0.65);
  }
  .header .hamburger-menu .menu li ul li {
    border-bottom: none;
    font-size: 0.95rem;
  }
  .header .hamburger-menu .menu li ul li a {
    color: rgba(255,255,255,0.78) !important;
    padding: 0.5rem 0 !important;
    line-height: 1.4;
    border: none !important;
  }
  .header .hamburger-menu .menu li ul li a:hover,
  .header .hamburger-menu .menu li ul li a:active {
    color: #fff !important;
  }

  .header.header--scroll #menu-toggle:checked ~ .menu-button > span,
  .header.header--scroll #menu-toggle:checked ~ .menu-button > span::before,
  .header.header--scroll #menu-toggle:checked ~ .menu-button > span::after,
  .page .header #menu-toggle:checked ~ .menu-button > span,
  .page .header #menu-toggle:checked ~ .menu-button > span::before,
  .page .header #menu-toggle:checked ~ .menu-button > span::after,
  .header #menu-toggle:checked ~ .menu-button > span,
  .header #menu-toggle:checked ~ .menu-button > span::before,
  .header #menu-toggle:checked ~ .menu-button > span::after {
    background: #fff !important;
  }

  .header .hamburger-menu .menu-button {
    top: calc(max(env(safe-area-inset-top), 0px) + 26px);
    right: 16px;
  }
}

@media (min-width: 1025px) {
  .header .hamburger-menu .submenu-toggle {
    display: none;
  }
}
