/* Fonts */

/* Root Variables */
:root {
  --color-dark: #2E2E2E;
  --color-red: #E62D40;
  --color-gray: #565656;
  --color-muted: #F7F7FF;
  --color-line: #DEE2EF;
  --font-primary: 'Plus Jakarta Sans', Arial, sans-serif;
  --container-width: 1460px;
  --body-padding: 30px;
  --section-inner-padding: 20px;
}

/* Reset */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  width: 100%;
  overflow-x: clip;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  width: 100%;
  min-width: 320px;
  padding-left: var(--body-padding);
  padding-right: var(--body-padding);
  font-family: var(--font-primary);
  color: var(--color-dark);
  background: #fff;
  overflow-x: clip;
}

@supports not (overflow: clip) {
  html {
    overflow-x: hidden;
  }

  body {
    overflow-x: visible;
  }
}

img,
svg,
video,
canvas {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea,
select {
  font-family: inherit;
}

button {
  cursor: pointer;
}

:focus-visible {
  outline: 2px solid var(--color-red);
  outline-offset: 4px;
}

/* Global */
.container {
  width: 100%;
  max-width: var(--container-width);
  margin-left: auto;
  margin-right: auto;
}

.section {
  margin-top: 70px;
}

.section > .container,
.section-bg > .container {
  max-width: calc(var(--container-width) + (var(--section-inner-padding) * 2));
  padding-left: var(--section-inner-padding);
  padding-right: var(--section-inner-padding);
}

.panel {
  width: 100%;
  max-width: var(--container-width);
  padding: 70px 24px;
  background: var(--color-muted);
  border-radius: 8px;
}

.section-bg {
  width: 100%;
  margin-left: 0;
  margin-right: 0;
  padding: 70px 0;
  background: var(--color-muted);
  border-radius: 30px;
}

.section-heading {
  text-align: center;
  margin-bottom: 34px;
}

.eyebrow {
  position: relative;
  margin: 0 0 13px;
  padding-left: 12px;
  font-family: 'Geist Mono', monospace;
  font-weight: 500;
  font-size: 15px;
  line-height: 20px;
  letter-spacing: 1.68px;
  text-transform: uppercase;
  color: var(--color-red);
}

.eyebrow::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #E62D40;
  transform: translateY(-50%);
}

.publication-panel .eyebrow {
  padding-left: 0;
}

.publication-panel .eyebrow::before {
  content: none;
}

.section-heading .eyebrow {
  display: inline-block;
}

/* Typography */
h1,
.h1 {
  margin: 0;
  font-family: var(--font-primary);
  font-weight: 500;
  font-size: 45px;
  line-height: 55px;
  text-transform: capitalize;
  color: var(--color-dark);
  overflow-wrap: break-word;
}

h2,
.h2 {
  margin: 0;
  font-family: var(--font-primary);
  font-weight: 500;
  font-size: 45px;
  line-height: 55px;
  text-transform: capitalize;
  color: var(--color-dark);
  overflow-wrap: break-word;
}

h3,
p {
  margin-top: 0;
}

h3 {
  margin: 0 0 15px;
  font-family: var(--font-primary);
  font-weight: 500;
  font-size: 24px;
  line-height: 34px;
  text-transform: capitalize;
  color: #131313;
}

p {
  font-family: var(--font-primary);
  font-weight: 400;
  font-size: 16px;
  line-height: 28px;
  color: var(--color-gray);
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  padding: 24px 0 18px;
  background: #fff;
}

.site-header::after {
  content: "";
  position: absolute;
  right: calc(var(--body-padding) * -1);
  bottom: 0;
  left: calc(var(--body-padding) * -1);
  height: 1px;
  background: rgba(238, 238, 238, 1);
  box-shadow: 0 8px 14px rgba(25, 25, 25, .06);
}

body.admin-bar .site-header {
  top: 32px;
}

.section[id] {
  scroll-margin-top: 110px;
}

@media (max-width: 782px) {
  body.admin-bar .site-header {
    top: 46px;
  }
}

body.page-template-team-detail-template .site-header,
body.page-template-news-detail-template .site-header {
  box-shadow: none;
}

body.page-template-team-detail-template .site-header::after,
body.page-template-news-detail-template .site-header::after {
  box-shadow: 0 8px 14px rgba(25, 25, 25, .06);
}

.header__inner {
  display: flex;
  align-items: center;
  min-height: 45px;
}

.brand {
  width: 263px;
  flex: 0 0 auto;
}

.brand img {
  width: 263px;
}

.header__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 112px;
  min-height: 44px;
  margin-left: 54px;
  padding: 12px 30px;
  border: 1px solid var(--color-red);
  border-radius: 999px;
  background: var(--color-red);
  color: #fff;
  font-size: 16px;
  line-height: 26px;
  font-weight: 400;
  transition: background-color .2s ease, color .2s ease, border-color .2s ease;
}

.header__cta:hover {
  background: transparent;
  color: var(--color-red);
  border-color: var(--color-red);
}

/* Navigation */
.primary-nav {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 46px;
  flex: 0 0 auto;
  margin-left: auto;
  padding-left: 0;
}

.primary-nav a {
  font-family: var(--font-primary);
  font-weight: 400;
  font-size: 16px;
  line-height: 28px;
  color: var(--color-dark);
  transition: color .2s ease;
}

.primary-nav a:hover,
.primary-nav a.is-active {
  color: var(--color-red);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 50%;
  background: #f3f3f6;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}

.nav-toggle span {
  width: 18px;
  height: 2px;
  border-radius: 99px;
  background: var(--color-dark);
  transition: transform .2s ease, opacity .2s ease;
}

.nav-open .nav-toggle span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-open .nav-toggle span:nth-child(2) {
  opacity: 0;
}

.nav-open .nav-toggle span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Hero Section */
.hero {
  margin-top: 44px;
}

.hero__grid {
  display: grid;
  grid-template-columns: 685px minmax(0, 1fr);
  align-items: center;
  gap: 96px;
}

.hero__media {
  display: grid;
  grid-template-columns: 467px 218px;
  gap: 30px;
  align-items: stretch;
}

.hero__image {
  width: 100%;
  height: 550px;
  border-radius: 20px;
  object-fit: cover;
}

.hero__content {
  max-width: 650px;
  padding-top: 6px;
}

.hero__content p:not(.eyebrow) {
  width: 94%;
  margin: 18px 0 0;
  overflow-wrap: break-word;
}

/* Main Sections */
.dataset-cards {
  display: grid;
  grid-template-columns: 342px 590px 467px;
  gap: 24px;
  align-items: stretch;
  grid-auto-rows: 225px;
  max-width: 1447px;
  margin-left: auto;
  margin-right: auto;
}

.metric-card {
  height: 225px;
  min-height: 225px;
  padding: 30px 28px;
  border-radius: 20px;
  background: #fff;
}

.metric-card p {
  margin-bottom: 13px;
  color: var(--color-dark);
}

.metric-card strong {
  display: block;
  margin-bottom: 12px;
  font-size: 45px;
  line-height: 48px;
  font-weight: 700;
  color: var(--color-dark);
}

.metric-card span {
  display: block;
  max-width: 430px;
  font-family: var(--font-primary);
  font-weight: 500;
  color: var(--color-gray);
  font-size: 16px;
  line-height: 28px;
}

.metric-card:not(.metric-card--red) span {
  max-width: 200px;
}

.metric-card--red {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  background: var(--color-red);
  color: #fff;
}

.metric-card--red div {
  position: relative;
  z-index: 1;
}

.metric-card--red p,
.metric-card--red strong,
.metric-card--red span {
  color: #fff;
}

.metric-card--red img {
  position: absolute;
  right: 0;
  top: 0;
  width: 174px;
  height: 225px;
  object-fit: contain;
  opacity: .75;
}

.dataset-cards__image {
  width: 100%;
  height: 225px;
  object-fit: cover;
  border-radius: 20px;
}

.strategy-card {
  margin-top: 18px;
  margin-left: auto;
  margin-right: auto;
  max-width: 1447px;
  padding: 31px 34px 36px;
  border-radius: 20px;
  background: #fff;
}

.strategy-card h3 {
  margin: 0 0 15px;
}

.strategy-card p:last-child {
  width: 95%;
  margin: 0;
}

.team {
  margin-top: 64px;
}

.team .container {
  max-width: var(--container-width);
}

.team h2 {
  margin-bottom: 34px;
}

.team-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  column-gap: 30px;
  row-gap: 30px;
}

.team-card {
  flex: 0 1 calc((100% - 90px) / 4);
  padding: 18px 16px 14px;
  border-radius: 12px;
  background: #F2F2F2;
  box-shadow: none;
  transition: background-color .2s ease, box-shadow .2s ease;
}

.team-card:hover {
  background: #FFFFFF;
  box-shadow: 0px 4px 63px 10px #E3E3E3;
}

.team-card__top {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 18px;
}

.team-card h3 {
  margin: 0 0 10px;
  color: var(--color-dark);
  transition: color .2s ease;
}

.team-card h3 a {
  font: inherit;
  color: inherit;
  text-decoration: none;
  text-transform: inherit;
}

.team-card:hover h3 {
  color: var(--color-red);
}

.team-card p {
  margin: 0;
}

.team-card__arrow,
.publication-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  width: 31px;
  height: 31px;
  border-radius: 50%;
  background: #282A2C;
  color: #fff;
  font-size: 14px;
  transition: background-color .2s ease;
}

.team-card:hover .team-card__arrow,
.publication-item.is-open .publication-arrow {
  background: var(--color-red);
}

.team-card__arrow svg {
  display: block;
  width: 14px;
  height: 14px;
}

.team-card img {
  width: 100%;
  aspect-ratio: 317 / 240;
  object-fit: cover;
  border-radius: 14px;
}

.publications .section-bg {
  width: 100%;
  max-width: none;
  margin-left: 0;
  margin-right: 0;
  padding-left: 0;
  padding-right: 0;
  padding-top: 50px;
  padding-bottom: 46px;
  border-radius: 30px;
}

.publications .section-heading {
  margin-bottom: 34px;
}

.publication-list {
  display: grid;
  gap: 0;
  max-width: 1460px;
  min-height: var(--accordion-min-height, auto);
  margin-left: auto;
  margin-right: auto;
  transition: min-height .58s cubic-bezier(.22, 1, .36, 1);
}

.publication-item {
  border-top: 1px solid var(--color-line);
}

.publication-item:last-child {
  border-bottom: 1px solid var(--color-line);
}

.publication-trigger {
  display: grid;
  grid-template-columns: 40px minmax(0, 1fr) 28px;
  gap: 22px;
  align-items: center;
  width: 100%;
  min-height: 74px;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--color-dark);
  text-align: left;
}

.publication-trigger span:nth-child(2) {
  margin: 0;
  font-family: var(--font-primary);
  font-weight: 500;
  font-size: 24px;
  line-height: 32px;
  color: var(--color-dark);
}

.row-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  padding: 8px;
  border-radius: 9px;
  background: #fff;
}

.row-icon--filled {
  padding: 8px;
  border-radius: 9px;
  background: #fff;
}

.row-icon img {
  width: 24px;
  height: 24px;
  object-fit: contain;
}

.publication-item.is-open .row-icon {
  background: var(--color-red);
}

.publication-item.is-open .row-icon img {
  filter: brightness(0) invert(1);
}

.publication-arrow {
  position: relative;
  width: 36px;
  height: 36px;
  padding: 7px;
}

.publication-arrow img {
  width: 65px;
  height: 65px;
  object-fit: contain;
}

.publication-arrow .icon-open,
.publication-item.is-open .publication-arrow .icon-down {
  display: none;
}

.publication-item.is-open .publication-arrow .icon-open {
  display: block;
}

.publication-panel {
  display: grid;
  grid-template-columns: 150px minmax(0, 613px) 376px;
  gap: 80px;
  align-items: start;
  height: 0;
  overflow: hidden;
  opacity: 0;
  padding: 0;
  border-top: 0 solid var(--color-red);
  transform: translateY(-6px);
  will-change: height, opacity, transform;
  transition: height .58s cubic-bezier(.22, 1, .36, 1), opacity .3s ease, padding .58s cubic-bezier(.22, 1, .36, 1), border-width .2s ease, transform .58s cubic-bezier(.22, 1, .36, 1);
}

.publication-item.is-open .publication-panel {
  opacity: 1;
  padding: 28px 0 65px;
  border-top-width: 1px;
  transform: translateY(0);
}

.publication-panel .eyebrow {
  margin-top: 10px;
}

.publication-panel p:not(.eyebrow) {
  margin: 0;
}

.publication-panel p.publication-description {
  margin: 0;
  font-family: var(--font-primary);
  font-weight: 400;
  font-size: 16px;
  line-height: 28px;
  color: var(--color-gray);
}

.publication-panel img {
  width: 376px;
  height: 232px;
  border-radius: 18px;
  object-fit: cover;
}

.news {
  margin-top: 56px;
}

.news .container {
  max-width: var(--container-width);
}

.news__heading {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 30px;
  width: 102%;
  margin: 0 0 24px;
}

.slider-actions {
  display: flex;
  justify-content: flex-end;
  gap: 12px;
  margin-left: auto;
  padding-bottom: 4px;
}

.slider-actions button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 1px solid #2E2E2E;
  border-radius: 50%;
  background: transparent;
  transition: background-color .2s ease, border-color .2s ease;
}

.slider-actions button img {
  width: 22px;
  height: 8px;
  object-fit: contain;
  transition: filter .2s ease;
}

.slider-actions button:hover,
.slider-actions button:focus-visible {
  border-color: var(--color-red);
  background: var(--color-red);
}

.slider-actions button:hover img,
.slider-actions button:focus-visible img {
  filter: brightness(0) invert(1);
}

.news-slider {
  width: 100%;
  margin-bottom: -86px;
  padding-bottom: 86px;
  overflow: visible;
  clip-path: inset(0 -90px -90px 0);
}

.news-grid {
  display: flex;
  justify-content: flex-start;
  align-items: stretch;
  gap: 30px;
  width: 100%;
  margin-left: 0;
  margin-right: 0;
  transition: transform .45s ease;
  will-change: transform;
}

.news-card {
  flex: 0 0 468px;
  border: 1px solid #EFEFF2;
  border-radius: 14px;
  background: #fff;
  overflow: hidden;
  box-shadow: none;
  transition: box-shadow .2s ease, transform .2s ease;
}

.news-card:hover {
  box-shadow: 0 18px 44px rgba(25, 25, 25, .09);
}

.news-card img {
  width: 100%;
  margin: 0;
  aspect-ratio: 417 / 232;
  object-fit: cover;
  border-radius: 0;
}

.news-card__body {
  padding: 18px 15px 27px;
}

.news-card__body img {
  margin: 0;
}

.news-card time {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 10px;
  padding-left: 0;
  font-family: var(--font-primary);
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 14px;
  color: var(--color-gray);
}

.news-card time img {
  width: 13px;
  height: 13px;
  object-fit: contain;
}

.news-card h3 {
  font-family: var(--font-primary);
  font-weight: 600;
  font-size: 24px;
  line-height: 30px;
  text-transform: capitalize;
  color: #131313;
  margin: 0 0 15px;
}

.news-card h3 a {
  font: inherit;
  text-transform: inherit;
  color: inherit;
  text-decoration: none;
  transition: color .2s ease;
}

.news-card h3 a:hover,
.news-card h3 a:focus-visible {
  color: var(--color-red);
}

.news-card p {
  margin: 0 0 12px;
  font-size: 16px;
  line-height: 25px;
  width: 93%;
}

.news-card a {
  font-family: var(--font-primary);
  font-weight: 600;
  font-size: 16px;
  line-height: 26px;
  text-decoration-line: underline;
  color: var(--color-gray);
  text-underline-offset: 2px;
  transition: color .2s ease;
}

.news-card a:hover,
.news-card:hover a {
  color: var(--color-red);
}

.contact {
  margin-top: 70px;
}

.contact .section-bg {
  padding-top: 42px;
  padding-bottom: 42px;
}

.contact .section-heading {
  margin-bottom: 30px;
}

.contact-grid {
  display: flex;
  gap: 20px;
  align-items: stretch;
  margin-left: auto;
  margin-right: auto;
}

.contact-grid > img {
  flex: 1 1 0;
  width: 100%;
  min-width: 0;
  height: auto;
  aspect-ratio: 715 / 414;
  border-radius: 0;
  object-fit: cover;
}

.contact-card {
  display: grid;
  flex: 1 1 0;
  min-width: 0;
  align-content: center;
  min-height: 100%;
  padding: 30px 35px;
  border-radius: 14px;
  background: #fff;
}

.contact-card article {
  display: block;
}

.contact-card article + article {
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid #e7e7e7;
}

.contact-icon {
  display: block;
  width: 30px;
  height: 30px;
  margin-bottom: 12px;
}

.contact-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.contact-card h3 {
  margin: 0 0 8px;
  font-family: var(--font-primary);
  font-weight: 500;
  font-size: 25px;
  line-height: 35px;
  text-transform: capitalize;
  color: var(--color-dark);
}

.contact-card a,
.contact-card p {
  margin: 0;
  font-size: 13px;
  line-height: 20px;
  overflow-wrap: anywhere;
}

.contact-card a {
  font-family: var(--font-primary);
  font-weight: 500;
  font-size: 16px;
  line-height: 26px;
  color: var(--color-gray);
  transition: color .2s ease;
}

.contact-card a:hover,
.contact-card a:focus-visible {
  color: var(--color-red);
}

.contact-card p {
  width: 90%;
  font-family: var(--font-primary);
  font-weight: 500;
  font-size: 16px;
  line-height: 26px;
  color: var(--color-gray);
}

.sample-template__section {
  padding-bottom: 54px;
}

.sample-template__content {
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.sample-template__content > *:first-child {
  margin-top: 0;
}

.sample-template__content > *:last-child {
  margin-bottom: 0;
}

.detail-hero {
  display: flex;
  align-items: center;
  min-height: calc(100vh - 157px - 50px);
  margin-top: 0;
  padding: 50px 0;
}

.detail-hero > .container {
  width: 100%;
}

.detail-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 520px) minmax(0, 1fr);
  align-items: center;
  gap: 70px;
}

.detail-hero__media img {
  width: 100%;
  aspect-ratio: 520 / 560;
  object-fit: cover;
  border-radius: 18px;
}

.detail-hero__content {
  max-width: 720px;
}

.detail-hero__content h1 {
  margin-bottom: 14px;
}

.detail-hero__meta {
  display: block;
  margin: 0 0 24px;
  font-size: 18px;
  line-height: 28px;
  color: var(--color-gray);
}

.detail-hero__body p:last-child {
  margin-bottom: 0;
}

.news-detail {
  min-height: 0;
  padding-bottom: 36px;
}

.news-detail__inner {
  max-width: none;
}

.news-detail h2 {
  margin-bottom: 14px;
}

.news-detail__date {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 28px;
  font-size: 15px;
  line-height: 22px;
  color: var(--color-gray);
}

.news-detail__date img {
  width: 14px;
  height: 14px;
  object-fit: contain;
}

.news-detail__media {
  max-width: 1120px;
  margin-bottom: 30px;
}

.news-detail__media img {
  width: 100%;
  height: 460px;
  border-radius: 18px;
  object-fit: cover;
}

.news-detail__content p:last-child {
  margin-bottom: 0;
}

.news-detail__content {
  max-width: 1120px;
}

.related-news {
  margin-top: 0;
  padding-bottom: 70px;
}

.related-news h2 {
  margin-bottom: 30px;
}

.related-news__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 30px;
}

.related-news .news-card {
  width: 100%;
}

.related-news .news-card p {
  width: 100%;
}

/* Footer */
.site-footer {
  padding-bottom: 30px;
}

.footer__inner {
  max-width: none;
  width: 100%;
  min-height: 78px;
  border-radius: 0 0 18px 18px;
  background: #111;
  color: #fff;
}

.footer__content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: calc(var(--container-width) + (var(--section-inner-padding) * 2));
  min-height: 78px;
  padding: 0 var(--section-inner-padding);
}

.footer__copyright,
.footer__copyright p {
  margin: 0;
  text-align: left;
  color: rgba(255, 255, 255, .88);
}

.footer__copyright {
  margin-right: auto;
}

.footer-brand-link {
  transition: color .2s ease;
}

.footer-brand-link:hover,
.footer-brand-link:focus-visible {
  color: var(--color-red);
}

.social-links {
  display: flex;
  align-items: center;
  gap: 15px;
}

.social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255, 255, 255, .22);
  border-radius: 50%;
  background: transparent;
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  line-height: 15px;
  transition: background-color .2s ease, border-color .2s ease;
}

.social-links img {
  width: 15px;
  height: 15px;
  object-fit: contain;
}

.social-links a:hover,
.social-links a:focus-visible {
  background: var(--color-red);
  border-color: var(--color-red);
}

/* 404 Page */
.pfa-404-page {
  padding-left: 0;
  padding-right: 0;
}

.pfa-404 {
  display: grid;
  place-items: center;
  min-height: 100vh;
  padding: 48px 24px;
  background: #fff;
}

.pfa-404__inner {
  display: grid;
  justify-items: center;
  width: 100%;
  max-width: 820px;
  text-align: center;
}

.pfa-404__image {
  width: min(100%, 760px);
  margin-bottom: 28px;
}

.pfa-404 h1 {
  margin-bottom: 24px;
}

.pfa-404__button {
  margin-left: 0;
}

/* Scroll Animations */
.has-scroll-animations .animate-on-scroll {
  opacity: 0;
  transform: translate3d(-20px, 0, 0);
  transition: opacity .72s ease, transform .72s cubic-bezier(.22, 1, .36, 1);
  transition-delay: calc(var(--animation-order, 0) * 35ms);
  backface-visibility: hidden;
  will-change: opacity, transform;
}

.has-scroll-animations .animate-on-scroll.animate-from-left {
  transform: translate3d(-20px, 0, 0);
}

.has-scroll-animations .animate-on-scroll.animate-from-right {
  transform: translate3d(20px, 0, 0);
}

.has-scroll-animations .animate-on-scroll.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.hero__image,
.dataset-cards__image,
.team-card img,
.publication-panel img,
.news-card > img,
.contact-grid > img {
  transition: transform .6s cubic-bezier(.22, 1, .36, 1), filter .6s cubic-bezier(.22, 1, .36, 1);
}

.hero__media:hover .hero__image,
.dataset-cards__image:hover,
.team-card:hover img,
.publication-item.is-open .publication-panel img:hover,
.news-card:hover > img,
.contact-grid > img:hover {
  transform: scale(1.025);
}

.metric-card,
.strategy-card,
.team-card,
.news-card,
.contact-card {
  transition: transform .28s ease, box-shadow .28s ease, background-color .2s ease;
}

.metric-card:hover,
.strategy-card:hover,
.contact-card:hover {
  transform: translateY(-4px);
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }

  .has-scroll-animations .animate-on-scroll {
    opacity: 1;
    transform: none;
  }
}

/* Responsive */
@media (max-width: 1459px) {
  .news__heading {
    width: 100%;
  }

  .primary-nav {
    gap: 30px;
    padding-left: 0;
  }

  .header__cta {
    margin-left: 34px;
  }

  .hero__grid {
    grid-template-columns: 560px minmax(0, 1fr);
    gap: 65px;
  }

  .hero__media {
    grid-template-columns: 1fr 170px;
  }

  .hero__image {
    height: 455px;
  }

  .dataset-cards {
    grid-template-columns: 260px 1fr 360px;
  }

  .team-grid {
    grid-template-columns: repeat(4, 1fr);
    column-gap: 30px;
    row-gap: 26px;
  }

  .news-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
  }

  .contact-grid > img {
    width: 100%;
  }
}

@media (max-width: 1199px) {
  .brand,
  .brand img {
    width: 220px;
  }

  .primary-nav {
    gap: 22px;
    padding-left: 0;
  }

  .header__cta {
    margin-left: 24px;
  }

  .hero__grid {
    grid-template-columns: 1fr;
    gap: 44px;
  }

  .hero__media {
    grid-template-columns: minmax(0, 467px) minmax(150px, 218px);
    justify-content: center;
  }

  .hero__content {
    max-width: 760px;
    margin: 0 auto;
    text-align: center;
  }

  .hero__content .eyebrow {
    display: inline-block;
  }

  .dataset-cards {
    grid-template-columns: 1fr 1.4fr;
  }

  .dataset-cards__image {
    grid-column: 1 / -1;
    height: 260px;
  }

  .team-grid {
    justify-content: flex-start;
  }

  .team-card {
    flex-basis: calc((100% - 60px) / 3);
  }

  .publication-panel {
    grid-template-columns: 150px 1fr 340px;
  }

  .publication-panel img {
    width: 100%;
    height: auto;
  }

  .contact-card {
    padding: 30px 35px;
  }
}

@media (max-width: 1024px) {
  h2,
  .h2 {
    font-size: 34px;
    line-height: 42px;
  }

  .section > .container,
  .section-bg > .container {
    padding-left: 20px;
    padding-right: 20px;
  }

  .section-bg {
    padding-top: 42px;
    padding-bottom: 42px;
  }

  .hero__content p:not(.eyebrow),
  .strategy-card p:last-child,
  .news-card p,
  .contact-card p {
    width: 100%;
  }

  .publication-trigger {
    grid-template-columns: 30px minmax(0, 1fr) 30px;
    gap: 12px;
    min-height: 54px;
    padding: 10px 0;
  }

  .publication-trigger span:nth-child(2) {
    font-size: 18px;
    line-height: 26px;
  }

  .row-icon {
    width: 30px;
    height: 30px;
    padding: 6px;
    border-radius: 8px;
  }

  .row-icon img {
    width: 16px;
    height: 16px;
  }

  .publication-arrow {
    width: 30px;
    height: 30px;
    padding: 6px;
  }

  .publication-arrow img {
    width: 22px;
    height: 22px;
  }

  .publication-panel p.publication-description {
    font-size: 15px;
    line-height: 25px;
  }

  .publication-item.is-open .publication-panel {
    padding: 14px 0 24px;
  }

  .publication-panel .eyebrow {
    margin-top: 0;
    margin-bottom: 6px;
  }

  .publication-list {
    min-height: var(--accordion-min-height, auto);
  }

  .publications .section-bg {
    padding-bottom: 22px;
  }

  .news-slider {
    margin: -16px 0 -60px;
    padding: 16px 0 60px;
    overflow: hidden;
    clip-path: none;
  }

  .slider-actions {
    gap: 10px;
  }

  .slider-actions button {
    width: 36px;
    height: 36px;
  }

  .slider-actions button img {
    width: 18px;
    height: 7px;
  }

  .news-card {
    flex-basis: calc((100% - 30px) / 2);
  }

  .related-news__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .news-detail {
    padding-bottom: 18px;
  }

  .contact-grid {
    flex-direction: column;
    gap: 20px;
    max-width: 720px;
  }

  .contact-grid > img {
    flex: none;
    width: 100%;
  }

  .contact-card {
    flex: none;
    min-height: 0;
    height: auto;
  }

  .detail-hero__grid {
    grid-template-columns: minmax(0, 420px) minmax(0, 1fr);
    gap: 44px;
  }

  .dataset-cards {
    gap: 20px;
    margin-bottom: 58px;
  }

  .strategy-card {
    margin-top: 0;
  }

  .team {
    margin-top: 42px;
  }

  .team h2 {
    margin-bottom: 22px;
  }

  .team-grid {
    gap: 20px;
  }

  .team-card__top {
    margin-bottom: 14px;
  }
}

@media (max-width: 1023px) {
  .section {
    margin-top: 42px;
  }

  .site-header,
  body.admin-bar .site-header {
    position: relative;
    top: auto;
  }

  .panel {
    padding-top: 56px;
    padding-bottom: 56px;
  }

  .nav-toggle {
    display: inline-flex;
    margin-left: auto;
  }

  .primary-nav {
    position: fixed;
    z-index: 20;
    top: 78px;
    right: var(--body-padding);
    left: var(--body-padding);
    display: grid;
    justify-content: stretch;
    gap: 0;
    padding: 12px;
    border: 1px solid #eee;
    border-radius: 14px;
    background: #fff;
    box-shadow: 0 24px 50px rgba(22, 22, 22, .14);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: opacity .2s ease, visibility .2s ease, transform .2s ease;
  }

  .nav-open .primary-nav {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .primary-nav a {
    min-height: 44px;
    display: flex;
    align-items: center;
    padding: 0 12px;
    border-radius: 9px;
    font-size: 14px;
  }

  .primary-nav a:hover,
  .primary-nav a.is-active {
    background: #fff1f3;
  }

  .header__cta {
    margin-left: 14px;
  }

  .team-grid,
  .news-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .team-card {
    flex-basis: calc((100% - 20px) / 2);
  }

  .news-card {
    flex-basis: calc((100% - 30px) / 2);
  }

  .publication-panel {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .publication-panel p.publication-description {
    margin-top: 0;
  }

  .publication-panel img {
    height: auto;
    max-height: 351px;
  }

  .detail-hero__grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .detail-hero__media {
    max-width: 560px;
  }

  .news-detail__media img {
    height: 360px;
  }

}

@media (max-width: 991px) {
  h1,
  .h1 {
    font-size: 40px;
    line-height: 52px;
  }

  .site-header {
    padding-top: 18px;
  }

  .hero {
    margin-top: 35px;
  }
}

@media (max-width: 767px) {
  :root {
    --body-padding: 20px;
  }

  .brand,
  .brand img {
    width: 185px;
  }

  .header__cta {
    display: none;
  }

  .hero__media {
    grid-template-columns: 1fr .48fr;
    gap: 18px;
  }

  .hero__image {
    height: 390px;
    border-radius: 16px;
  }

  .panel {
    padding-top: 44px;
    padding-bottom: 44px;
  }

  .section-heading {
    margin-bottom: 28px;
  }

  .dataset-cards,
  .team-grid,
  .news-grid {
    grid-template-columns: 1fr;
  }

  .team-card {
    flex-basis: 100%;
  }

  .team {
    margin-top: 34px;
  }

  .team h2 {
    margin-bottom: 18px;
  }

  .news-card {
    flex-basis: 100%;
  }

  .news .container {
    display: grid;
    grid-template-areas:
      "heading"
      "slider"
      "actions";
  }

  .news__heading {
    display: contents;
  }

  .news__heading > div {
    grid-area: heading;
    margin-bottom: 24px;
  }

  .news-slider {
    grid-area: slider;
    margin: 0;
    padding: 0;
  }

  .dataset-cards__image {
    height: auto;
  }

  .publication-trigger {
    grid-template-columns: 28px minmax(0, 1fr) 28px;
    gap: 8px;
    min-height: 50px;
    padding: 9px 0;
  }

  .publication-trigger span:nth-child(2) {
    font-size: 16px;
    line-height: 24px;
  }

  .row-icon {
    width: 28px;
    height: 28px;
    padding: 6px;
  }

  .row-icon img {
    width: 15px;
    height: 15px;
  }

  .publication-arrow {
    width: 28px;
    height: 28px;
    padding: 5px;
  }

  .news__heading {
    align-items: stretch;
    flex-direction: column;
    width: 100%;
  }

  .slider-actions {
    grid-area: actions;
    align-self: center;
    justify-self: center;
    margin: 22px auto 0;
    padding-bottom: 0;
  }

  .slider-actions button {
    width: 34px;
    height: 34px;
  }

  .slider-actions button img {
    width: 17px;
    height: 7px;
  }

  .contact-card {
    padding: 28px 24px;
  }

  .detail-hero {
    min-height: auto;
    padding: 36px 0;
  }

  .detail-hero__grid {
    justify-items: center;
  }

  .detail-hero__content {
    text-align: center;
  }

  .detail-hero__content h1 {
    font-size: 32px;
    line-height: 42px;
  }

  .news-detail {
    padding-bottom: 12px;
  }

  .news-detail__inner {
    text-align: center;
  }

  .news-detail__date {
    justify-content: center;
  }

  .related-news {
    padding-bottom: 44px;
  }

  .related-news h2 {
    margin-bottom: 24px;
    text-align: center;
  }

  .related-news__grid {
    grid-template-columns: 1fr;
  }

  .news-detail__media img {
    height: 250px;
    border-radius: 14px;
  }

  .footer__content {
    flex-direction: column;
    justify-content: center;
    gap: 18px;
    padding: 22px 20px;
    text-align: center;
  }

  .footer__copyright,
  .footer__copyright p {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    line-height: 22px;
  }
}

@media (max-width: 575px) {
  h1,
  .h1 {
    font-size: 32px;
    line-height: 42px;
  }

  h2,
  .h2 {
    font-size: 28px;
    line-height: 36px;
  }

  .eyebrow {
    display: inline-block;
    font-size: 13px;
    line-height: 20px;
    letter-spacing: 2px;
    padding-left: 12px;
  }

  .eyebrow::before {
    content: "";
    display: block;
    position: absolute;
    left: 0;
    top: 50%;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: #E62D40;
    transform: translateY(-50%);
  }

  .hero__grid {
    gap: 30px;
  }

  .hero__media {
    grid-template-columns: 1fr;
  }

  .hero__image {
    height: auto;
    max-height: none;
  }

  .hero__image--small {
    display: none;
  }

  .dataset-cards {
    gap: 20px;
    margin-bottom: 20px;
  }

  .metric-card,
  .strategy-card {
    border-radius: 14px;
    padding: 26px 22px;
  }

  .metric-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
  }

  .metric-card--red {
    align-items: center;
  }

  .strategy-card {
    text-align: center;
  }

  .strategy-card .eyebrow {
    margin-left: auto;
    margin-right: auto;
  }

  .strategy-card p:last-child {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
  }

  .metric-card strong {
    font-size: 32px;
    line-height: 38px;
  }

  .metric-card:not(.metric-card--red) span {
    max-width: 100%;
  }

  .team .container {
    text-align: center;
  }

  .team .eyebrow {
    margin-left: auto;
    margin-right: auto;
  }

  .team h2 {
    text-align: center;
  }

  .team-card {
    padding: 16px 14px 14px;
  }

  .team-card__top {
    align-items: flex-start;
  }

  .team-card__top > div,
  .team-card h3,
  .team-card p {
    text-align: left;
  }

  .team-card__arrow {
    width: 26px;
    min-width: 26px;
    height: 26px;
    padding: 0;
  }

  .team-card__arrow svg {
    width: 11px;
    height: 11px;
  }

  .publication-trigger {
    grid-template-columns: 24px minmax(0, 1fr) 26px;
    padding: 14px 0;
  }

  .row-icon {
    width: 24px;
    height: 24px;
    padding: 5px;
  }

  .row-icon img {
    width: 13px;
    height: 13px;
  }

  .publication-arrow {
    width: 26px;
    height: 26px;
    padding: 5px;
  }

  .publication-trigger span:nth-child(2) {
    font-size: 14px;
    line-height: 20px;
  }

  .publication-panel {
    text-align: left;
  }

  .publication-panel .eyebrow {
    justify-content: flex-start;
    margin-left: 0;
    margin-right: 0;
  }

  .publication-panel p.publication-description {
    text-align: left;
  }

  .publication-panel img {
    width: 100%;
    max-width: 376px;
    height: auto;
    margin-left: 0;
    margin-right: auto;
  }

  .contact-card article {
    grid-template-columns: 1fr;
    gap: 10px;
    text-align: center;
  }

  .news__heading > div,
  .news-card__body,
  .news-card h3,
  .news-card p {
    text-align: center;
  }

  .news-card time {
    justify-content: center;
  }

  .news-card p {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
  }

  .contact-icon {
    grid-row: auto;
    margin-left: auto;
    margin-right: auto;
  }

  .contact-card h3,
  .contact-card a,
  .contact-card p {
    text-align: center;
  }
}

@media (max-width: 374px) {
  :root {
    --body-padding: 16px;
  }

  h1,
  .h1,
  h2,
  .h2 {
    font-size: 29px;
    line-height: 38px;
  }

  .brand,
  .brand img {
    width: 165px;
  }

  .panel {
    padding-left: 18px;
    padding-right: 18px;
  }

  .metric-card--red img {
    width: 132px;
    opacity: .45;
  }
}
