:root {
  --green: #79c88d;
  --green-dark: #2f8f4b;
  --green-soft: #eef8f0;
  --family-representation: #79c88d;
  --family-representation-dark: #2f8f4b;
  --family-representation-soft: #eef8f0;
  --family-interestGroups: #4fb6a6;
  --family-interestGroups-dark: #207b70;
  --family-interestGroups-soft: #edf8f6;
  --family-parliament: #6faec6;
  --family-parliament-dark: #2f778e;
  --family-parliament-soft: #eef7fa;
  --family-media: #b08ac2;
  --family-media-dark: #764987;
  --family-media-soft: #f6eff9;
  --family-technology: #d4b15f;
  --family-technology-dark: #8b681f;
  --family-technology-soft: #fbf5e5;
  --family-policyInstitutions: #9aad62;
  --family-policyInstitutions-dark: #66772e;
  --family-policyInstitutions-soft: #f3f7e8;
  --area-1: #79c88d;
  --area-1-dark: #2f8f4b;
  --area-1-soft: #eef8f0;
  --area-2: #4fb6a6;
  --area-2-dark: #207b70;
  --area-2-soft: #edf8f6;
  --area-3: #6faec6;
  --area-3-dark: #2f778e;
  --area-3-soft: #eef7fa;
  --area-4: #b08ac2;
  --area-4-dark: #764987;
  --area-4-soft: #f6eff9;
  --area-5: #d4b15f;
  --area-5-dark: #8b681f;
  --area-5-soft: #fbf5e5;
  --area-6: #9aad62;
  --area-6-dark: #66772e;
  --area-6-soft: #f3f7e8;
  --ink: #111111;
  --ink-2: #171717;
  --muted: #6b6f6a;
  --line: #daddd8;
  --paper: #ffffff;
  --wash: #f6f7f5;
  --shadow: 0 18px 45px rgba(17, 17, 17, 0.08);
  color-scheme: light;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  line-height: 1.5;
}

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

img {
  display: block;
  max-width: 100%;
}

button,
input {
  font: inherit;
}

button {
  color: inherit;
}

:focus-visible {
  outline: 3px solid rgba(121, 200, 141, 0.75);
  outline-offset: 3px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 28px;
  align-items: center;
  min-height: 70px;
  padding: 10px clamp(20px, 4vw, 56px);
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}

.brand {
  display: grid;
  gap: 1px;
  align-items: center;
}

.brand img {
  width: 132px;
  height: auto;
}

.brand span {
  color: var(--ink);
  font-size: 0.68rem;
  font-weight: 700;
  margin-left: 7px;
}

.main-nav {
  display: flex;
  justify-content: center;
  gap: clamp(12px, 1.5vw, 24px);
  font-size: 0.82rem;
  font-weight: 650;
  white-space: nowrap;
}

.main-nav a {
  color: #30332f;
  padding: 10px 0;
  border-bottom: 2px solid transparent;
}

.main-nav a.active,
.main-nav a:hover {
  color: var(--green-dark);
  border-color: var(--green);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.icon-button,
.carousel-button {
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border: 1px solid transparent;
  border-radius: 999px;
  color: var(--ink);
  background: transparent;
  cursor: pointer;
}

svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.icon-button:hover,
.carousel-button:hover {
  background: var(--green-soft);
  border-color: var(--green);
}

.language-switcher {
  display: flex;
  gap: 3px;
  padding: 3px;
  border: 1px solid var(--line);
  border-radius: 999px;
}

.language-switcher a,
.language-switcher button {
  min-width: 32px;
  padding: 5px 8px;
  border: 0;
  border-radius: 999px;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 800;
  text-align: center;
  background: transparent;
  cursor: pointer;
}

.language-switcher a.active,
.language-switcher button.active {
  color: var(--ink);
  background: var(--green-soft);
}

.contact-button,
.primary-cta,
.secondary-cta {
  appearance: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0 16px;
  border: 0;
  border-radius: 999px;
  font-size: 0.84rem;
  font-weight: 800;
  cursor: pointer;
}

.contact-button {
  color: var(--ink);
  border: 1px solid var(--line);
  background: var(--paper);
  cursor: pointer;
}

.section {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: clamp(34px, 5vw, 64px) 0;
}

.home-hero {
  --hero-accent-x: 82%;
  position: relative;
  display: grid;
  grid-template-columns: minmax(300px, 360px) minmax(0, 1fr);
  gap: clamp(44px, 6vw, 78px);
  align-items: center;
  min-height: 430px;
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: clamp(50px, 6.5vw, 70px) 62px 54px;
  overflow: hidden;
  background:
    radial-gradient(circle at var(--hero-accent-x) 28%, rgba(121, 200, 141, 0.16), transparent 28%),
    var(--paper);
}

.home-hero.carousel {
  grid-template-columns: minmax(300px, 360px) minmax(0, 1fr);
  gap: clamp(44px, 6vw, 78px);
}

.home-hero.visual-right {
  --hero-accent-x: 18%;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 360px);
}

.home-hero.visual-left {
  --hero-accent-x: 82%;
}

.home-hero.carousel.visual-right {
  grid-template-columns: minmax(0, 1fr) minmax(300px, 360px);
}

.home-hero.slide-out-left {
  animation: hero-slide-out-left 240ms ease-in forwards;
}

.home-hero.slide-out-right {
  animation: hero-slide-out-right 240ms ease-in forwards;
}

.home-hero.slide-in-right {
  opacity: 0;
  transform: translateX(34px);
}

.home-hero.slide-in-left {
  opacity: 0;
  transform: translateX(-34px);
}

.home-hero.slide-in-right.is-visible,
.home-hero.slide-in-left.is-visible {
  opacity: 1;
  transform: translateX(0);
  transition: opacity 320ms ease-out, transform 320ms ease-out;
}

@keyframes hero-slide-out-left {
  to {
    opacity: 0;
    transform: translateX(-34px);
  }
}

@keyframes hero-slide-out-right {
  to {
    opacity: 0;
    transform: translateX(34px);
  }
}

.home-hero-copy {
  grid-column: 2;
}

.report-cover,
.hero-image {
  grid-column: 1;
  grid-row: 1;
}

.home-hero.visual-right .home-hero-copy {
  grid-column: 1;
}

.home-hero.visual-right .report-cover,
.home-hero.visual-right .hero-image {
  grid-column: 2;
}

.home-hero.visual-left .home-hero-copy {
  grid-column: 2;
}

.home-hero.visual-left .home-hero-copy {
  align-self: center;
  padding-top: 8px;
}

.hero-dots {
  position: absolute;
  right: 60px;
  bottom: 20px;
  margin: 0;
}

.home-hero-copy h1 {
  max-width: 650px;
  margin-bottom: 18px;
  overflow-wrap: anywhere;
  font-size: clamp(1.76rem, 2.72vw, 2.62rem);
  line-height: 1.08;
}

.home-hero-copy p:not(.eyebrow) {
  max-width: 620px;
  color: #3c403b;
  font-size: clamp(0.98rem, 1.25vw, 1.08rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
  margin-top: 28px;
}

.hero-arrow {
  position: absolute;
  top: 50%;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  transform: translateY(-50%);
  border: 1px solid transparent;
  border-radius: 999px;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
}

.hero-arrow.prev {
  left: 14px;
}

.hero-arrow.next {
  right: 14px;
}

.hero-arrow:hover {
  border-color: var(--line);
  background: var(--green-soft);
}

.report-cover {
  display: grid;
  align-content: end;
  aspect-ratio: 4 / 5;
  width: 300px;
  min-height: 0;
  justify-self: center;
  padding: 24px;
  border: 1px solid #2b2e2a;
  border-radius: 2px;
  color: var(--paper);
  background:
    linear-gradient(180deg, rgba(121, 200, 141, 0.05), rgba(121, 200, 141, 0.1)),
    #171717;
  box-shadow: 0 24px 55px rgba(17, 17, 17, 0.16);
}

.hero-image {
  display: grid;
  align-items: center;
  justify-self: center;
  width: min(100%, 300px);
  aspect-ratio: 4 / 5;
  margin: 0;
  overflow: hidden;
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 24px 42px rgba(17, 17, 17, 0.16));
}

.hero-image.is-broken {
  display: none;
}

.report-cover img {
  width: 100%;
  aspect-ratio: 4 / 3;
  margin-bottom: auto;
  object-fit: cover;
  border: 1px solid rgba(255, 255, 255, 0.16);
}

.report-cover h2 {
  margin: 20px 0 10px;
  overflow-wrap: anywhere;
  font-size: clamp(1.02rem, 1.25vw, 1.18rem);
  line-height: 1.16;
}

.report-cover p {
  margin-bottom: 0;
  color: #cbd0c8;
}

.cover-map {
  width: 78%;
  aspect-ratio: 1.4 / 1;
  background-image: radial-gradient(circle, rgba(255, 255, 255, 0.74) 1.4px, transparent 1.6px);
  background-size: 10px 10px;
  clip-path: polygon(12% 10%, 48% 8%, 65% 23%, 57% 45%, 86% 47%, 94% 81%, 61% 88%, 49% 68%, 20% 78%, 6% 49%);
  opacity: 0.82;
}

.hero-progress {
  display: none;
}

.hero-progress span {
  display: none;
}

@keyframes hero-progress {
  from { transform: scaleX(0); }
  to { transform: scaleX(1); }
}

.stats-band {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  width: 100%;
  margin: 0;
  padding: 0 max(20px, calc((100vw - 1180px) / 2));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #f2f5f1;
}

.stats-band article {
  display: grid;
  grid-template-columns: auto auto 1fr;
  gap: 12px;
  align-items: center;
  min-height: 74px;
  padding: 14px 20px;
  background: transparent;
}

.stats-band span {
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  color: var(--ink);
  background: transparent;
}

.stats-band span svg {
  width: 22px;
  height: 22px;
  stroke-width: 1.55;
}

.stats-band strong {
  font-size: 1.5rem;
}

.stats-band p {
  margin: 0;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 750;
}

.page-hero {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: clamp(54px, 9vw, 96px) 0 clamp(22px, 5vw, 46px);
}

.page-hero.compact {
  padding: 52px 0 30px;
}

.page-hero.compact h1 {
  margin-bottom: 8px;
  font-size: clamp(2.05rem, 3.7vw, 3.6rem);
}

.page-hero.compact p {
  max-width: 680px;
  margin-bottom: 0;
  font-size: 1.02rem;
  line-height: 1.55;
}

.page-hero h1 {
  max-width: 820px;
}

.page-hero p:not(.eyebrow) {
  max-width: 1180px;
  color: var(--muted);
  font-size: 1.15rem;
}

.article-page {
  background: var(--paper);
}

.news-article {
  width: min(960px, calc(100% - 40px));
  margin: 0 auto;
  padding: clamp(46px, 7vw, 78px) 0 clamp(58px, 8vw, 96px);
}

.news-article-hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding-bottom: clamp(26px, 5vw, 44px);
  border-bottom: 1px solid var(--line);
}

.news-article-hero.has-hero-image {
  margin-bottom: clamp(22px, 4vw, 38px);
  padding: clamp(34px, 6vw, 64px);
  border: 1px solid var(--line);
}

.news-article-hero.has-hero-image::before,
.news-article-hero.has-hero-image::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.news-article-hero.has-hero-image::before {
  z-index: -2;
  background: var(--news-hero-image) center / cover no-repeat;
  opacity: 0.22;
  filter: grayscale(0.25);
}

.news-article-hero.has-hero-image::after {
  z-index: -1;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.96), rgba(255, 255, 255, 0.82));
}

.news-article-hero h1 {
  max-width: 900px;
  margin-bottom: 18px;
  font-size: clamp(2.2rem, 4.5vw, 4.3rem);
  line-height: 1;
}

.article-lead {
  max-width: 780px;
  color: #333832;
  font-size: clamp(1.14rem, 1.7vw, 1.38rem);
  line-height: 1.45;
}

.article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.article-meta span {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 11px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 800;
  background: var(--wash);
}

.article-body {
  display: grid;
  gap: 18px;
  padding-top: clamp(26px, 5vw, 44px);
  color: #30352f;
  font-size: 1.04rem;
}

.article-body > p {
  max-width: 760px;
  margin-bottom: 0;
}

.article-highlight-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin: 14px 0;
}

.article-highlight-grid div,
.article-source-box {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--wash);
}

.article-highlight-grid div {
  padding: 24px;
}

.article-highlight-grid span {
  color: var(--green-dark);
  font-size: 0.72rem;
  font-weight: 950;
  letter-spacing: 0.08em;
}

.article-highlight-grid h2 {
  margin: 12px 0 10px;
  font-size: clamp(1.35rem, 2vw, 1.8rem);
  line-height: 1.08;
}

.article-highlight-grid p {
  margin-bottom: 0;
  color: var(--muted);
}

.article-highlight-grid .article-rank {
  display: inline-flex;
  width: fit-content;
  margin: 0 0 14px;
  padding: 6px 10px;
  border: 1px solid rgba(47, 143, 75, 0.28);
  border-radius: 999px;
  color: var(--green-dark);
  font-size: 0.78rem;
  font-weight: 900;
  background: var(--green-soft);
}

.article-source-box {
  display: grid;
  gap: 10px;
  margin-top: 18px;
  padding: 22px;
}

.article-source-box h2 {
  margin: 0;
  font-size: 1rem;
}

.article-source-box a {
  color: var(--green-dark);
  font-weight: 850;
  text-decoration: underline;
  text-decoration-color: rgba(47, 143, 75, 0.35);
  text-underline-offset: 4px;
}

.home-split {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: 34px;
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 34px 0 46px;
}

.home-split .section + .section {
  padding-left: 34px;
  border-left: 1px solid var(--line);
}

.home-split .section {
  width: auto;
  padding: 0;
}

.home-split .section-heading.with-action {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
  align-items: start;
}

.home-split .insights-grid,
.home-split .resource-grid {
  grid-template-columns: 1fr;
}

.home-split .section-heading {
  min-height: 42px;
  margin-bottom: 14px;
}

.home-split .section-heading h2 {
  margin: 0;
  font-size: 0.98rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.home-split .section-heading p {
  display: none;
}

.home-split .ghost-link {
  padding: 0;
  border: 0;
  background: transparent;
}

.home-split .insights-grid {
  gap: 0;
  overflow: visible;
  border: 0;
  background: transparent;
}

.home-split .insight-card {
  display: grid;
  grid-template-columns: 126px 1fr 24px;
  gap: 16px;
  align-items: center;
  min-height: 96px;
  padding: 12px 16px 12px 0;
  overflow: visible;
  border: 0;
  border-radius: 0;
  background: var(--paper);
  position: relative;
}

.home-split .insight-card + .insight-card {
  border-top: 1px solid var(--line);
}

.home-split .insight-card:hover,
.home-split .insight-card:focus-within {
  transform: none;
  box-shadow: none;
}

.home-split .insight-card h3 {
  display: -webkit-box;
  margin-bottom: 5px;
  overflow: hidden;
  font-size: 0.9rem;
  line-height: 1.18;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.home-split .insight-card .authors {
  margin: 0;
  color: var(--green-dark);
  font-size: 0.76rem;
  font-weight: 850;
  line-height: 1.25;
}

.home-split .insight-card div > p:not(.meta):not(.authors) {
  display: none;
}

.home-split .insight-card .text-link {
  justify-self: end;
  color: var(--ink);
}

.home-split .insight-card .text-link svg {
  width: 17px;
  height: 17px;
}

.home-split .resource-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  border: 0;
}

.home-split .resource-card {
  min-height: 154px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 0;
  background: var(--paper);
}

.home-split .resource-card:hover,
.home-split .resource-card:focus-within {
  transform: none;
  box-shadow: none;
}

.home-split .resource-card h3 {
  margin-bottom: 8px;
  font-size: 0.92rem;
}

.home-split .resource-card .card-icon {
  margin-bottom: 24px;
}

.insight-thumb {
  display: block;
  width: 126px;
  aspect-ratio: 1.42 / 1;
  overflow: hidden;
  background:
    linear-gradient(135deg, #171717 0 52%, #eef8f0 52% 100%);
}

.insight-thumb::before {
  content: "";
  display: none;
}

.insight-thumb img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 50%;
}

.home-split .resource-card p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.45;
}

.work-band {
  display: grid;
  grid-template-columns: 0.88fr 1.12fr;
  gap: clamp(28px, 5vw, 64px);
  align-items: start;
  width: 100%;
  padding: 46px max(20px, calc((100vw - 1180px) / 2));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #eef8f0;
}

.work-copy p {
  max-width: 520px;
  color: var(--muted);
}

.work-copy h2 {
  margin-bottom: 14px;
  font-size: 0.98rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.work-contact-button {
  width: fit-content;
  margin-top: 20px;
}

.work-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.work-grid article {
  min-height: 170px;
  padding: 20px 22px 0;
}

.work-grid .card-icon {
  width: 40px;
  height: 40px;
  border: 0;
  background: transparent;
}

.work-grid h3 {
  font-size: 0.88rem;
}

.work-grid p {
  color: var(--muted);
  font-size: 0.78rem;
}

.page-tools {
  padding-top: 10px;
}

.featured-publications {
  margin-bottom: 22px;
}

.featured-publication-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
}

.featured-publication {
  display: flex;
  min-height: 210px;
  max-height: 210px;
  flex-direction: column;
  padding: 18px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 0;
  background: var(--paper);
  transition: background 220ms ease, color 220ms ease, border-color 220ms ease;
}

.featured-publication.primary {
  min-height: 210px;
  max-height: 210px;
  grid-column: span 3;
  color: var(--paper);
  background:
    radial-gradient(circle at 78% 20%, rgba(121, 200, 141, 0.28), transparent 30%),
    #171717;
}

.featured-publication:not(.primary) {
  grid-column: span 1;
  justify-content: center;
}

.featured-active-1 .featured-publication.primary {
  order: 2;
}

.featured-active-1 .featured-publication:not(.primary):first-child {
  order: 1;
}

.featured-active-1 .featured-publication:not(.primary):last-child {
  order: 3;
}

.featured-active-2 .featured-publication.primary {
  order: 3;
}

.featured-active-2 .featured-publication:not(.primary):first-child {
  order: 1;
}

.featured-active-2 .featured-publication:not(.primary):last-child {
  order: 2;
}

.featured-publication h3 {
  display: -webkit-box;
  margin-bottom: 10px;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.featured-publication:not(.primary) h3 {
  margin: 0;
  font-size: 0.98rem;
  line-height: 1.24;
  -webkit-line-clamp: 5;
}

.featured-publication:not(.primary) .meta,
.featured-publication:not(.primary) .authors,
.featured-publication:not(.primary) p:not(.meta):not(.authors),
.featured-publication:not(.primary) .text-link {
  display: none;
}

.featured-publication p:not(.meta):not(.authors) {
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 720;
}

.featured-publication .authors {
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.featured-publication .text-link {
  margin-top: auto;
}

.featured-publication.primary .meta,
.featured-publication.primary .authors,
.featured-publication.primary p {
  color: #dce2db;
}

.featured-publication.primary .text-link {
  color: var(--green);
}

.publication-type-label {
  color: var(--green-dark);
  font-weight: 950;
}

.empty-state {
  padding: 22px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.96rem;
}

.publication-filters {
  display: grid;
  grid-template-columns: repeat(3, minmax(150px, 1fr)) minmax(260px, 1.35fr);
  gap: 12px;
  width: 100%;
  margin-bottom: 26px;
}

.publications-section .publication-filters {
  grid-template-columns: minmax(220px, 1fr) minmax(180px, 0.7fr) minmax(360px, 1.6fr);
}

.publication-filters button,
.publication-filters select {
  width: 100%;
  min-height: 50px;
  padding: 0 16px;
  border: 1px solid var(--line);
  border-radius: 0;
  color: var(--muted);
  background: var(--paper);
  text-align: left;
  cursor: pointer;
  font-size: 0.94rem;
  font-weight: 820;
}

.publication-filters .team-search {
  width: 100%;
  min-height: 50px;
  border-radius: 0;
}

.publication-filters .team-search input {
  min-height: 48px;
  font-size: 0.94rem;
  font-weight: 760;
}

.publications-layout {
  display: grid;
  grid-template-columns: 190px minmax(0, 1fr);
  gap: 24px;
  align-items: start;
}

.publication-type-sidebar {
  display: grid;
  gap: 2px;
  padding-right: 12px;
  border-right: 1px solid var(--line);
}

.publication-type-sidebar button {
  min-height: 34px;
  padding: 0 10px;
  border: 0;
  border-left: 3px solid transparent;
  color: var(--muted);
  background: transparent;
  text-align: left;
  cursor: pointer;
  font-size: 0.82rem;
  font-weight: 820;
}

.publication-type-sidebar button.active,
.publication-type-sidebar button:hover,
.publication-type-sidebar button:focus-visible {
  border-left-color: var(--green);
  color: var(--ink);
  background: #eef5ef;
}

.publication-list {
  display: grid;
  gap: 0;
  overflow: visible;
  border: 0;
  border-radius: 0;
  background: transparent;
}

.publication-row {
  display: grid;
  grid-template-columns: 92px 1fr;
  gap: 20px;
  align-items: center;
  padding: 20px 0;
  border-top: 1px solid var(--line);
  background: var(--paper);
}

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

.publication-row h3 {
  max-width: 760px;
  margin-bottom: 8px;
  font-size: 1rem;
  line-height: 1.25;
}

.publication-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin: 10px 0 12px;
}

.publication-badges span {
  padding: 4px 7px;
  border: 1px solid var(--line);
  border-radius: 0;
  color: var(--muted);
  font-size: 0.74rem;
  font-weight: 850;
}

.publication-pagination {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  justify-content: space-between;
  margin-top: 18px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 0;
  background: var(--paper);
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 800;
}

.publication-pagination button {
  min-height: 36px;
  padding: 0 12px;
  border: 1px solid var(--line);
  border-radius: 0;
  background: var(--paper);
  cursor: pointer;
  font-weight: 850;
}

.publication-pagination button.active,
.publication-pagination button:hover:not(:disabled) {
  border-color: var(--green);
  background: var(--green-soft);
  color: var(--green-dark);
}

.publication-pagination button:disabled {
  cursor: not-allowed;
  opacity: 0.45;
}

.pagination-pages {
  display: flex;
  gap: 6px;
  align-items: center;
}

.row-thumb {
  display: grid;
  place-items: center;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border-radius: 0;
  background: linear-gradient(135deg, #171717, #3c413a);
}

.row-thumb::before {
  color: var(--green);
  content: "Q-Dem";
  font-size: 0.78rem;
  font-weight: 900;
}

.row-thumb img {
  grid-area: 1 / 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: clamp(36px, 7vw, 88px);
  align-items: center;
  min-height: 440px;
  background: var(--paper);
  width: 100%;
  padding-inline: max(20px, calc((100vw - 1180px) / 2));
  border-bottom: 1px solid var(--line);
}

.eyebrow {
  margin: 0 0 13px;
  color: var(--green-dark);
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1,
h2,
h3,
h4,
p {
  margin-top: 0;
}

h1 {
  max-width: 680px;
  margin-bottom: 18px;
  font-size: clamp(2.45rem, 5vw, 5rem);
  line-height: 0.98;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 12px;
  font-size: clamp(2rem, 3.2vw, 3.5rem);
  line-height: 1.05;
  letter-spacing: 0;
}

h3 {
  font-size: 1.18rem;
  line-height: 1.2;
}

.hero-subtitle {
  max-width: 780px;
  margin-bottom: 18px;
  font-size: clamp(1.22rem, 2vw, 1.8rem);
  line-height: 1.25;
  font-weight: 750;
}

.hero-copy p:last-child,
.section-heading p {
  max-width: 680px;
  color: var(--muted);
  font-size: 1.02rem;
}

.hero-visual {
  position: relative;
  min-height: 330px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(90deg, rgba(218, 221, 216, 0.42) 1px, transparent 1px),
    linear-gradient(0deg, rgba(218, 221, 216, 0.42) 1px, transparent 1px),
    #fbfcfa;
  background-size: 38px 38px;
}

.node-map {
  position: absolute;
  inset: 34px;
  border: 1px solid rgba(121, 200, 141, 0.55);
  border-radius: 8px;
}

.node-map::before,
.node-map::after {
  position: absolute;
  inset: 22% 8% auto;
  height: 1px;
  background: var(--green);
  content: "";
  transform: rotate(12deg);
}

.node-map::after {
  inset: auto 10% 25%;
  transform: rotate(-16deg);
}

.node-map i {
  position: absolute;
  left: var(--x);
  top: var(--y);
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--green);
  box-shadow: 0 0 0 5px rgba(121, 200, 141, 0.18);
}

.signal-card {
  position: absolute;
  z-index: 2;
  display: grid;
  gap: 2px;
  width: 150px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow);
}

.signal-card span {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
}

.signal-card strong {
  font-size: 1.8rem;
}

.signal-card.publication {
  top: 26px;
  right: 24px;
}

.signal-card.data {
  bottom: 34px;
  left: 28px;
}

.signal-card.research {
  right: 52px;
  bottom: 42px;
}

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

.section-heading.with-action {
  display: flex;
  gap: 24px;
  align-items: end;
  justify-content: space-between;
}

.home-areas-section {
  padding-top: 34px;
  padding-bottom: 36px;
  border-bottom: 1px solid var(--line);
}

.home-areas-section .section-heading {
  margin-bottom: 18px;
}

.home-areas-section h2 {
  font-size: 0.98rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.home-area-strip {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  overflow: visible;
  border: 0;
  border-radius: 0;
  background: transparent;
}

.home-area-item {
  display: grid;
  align-content: start;
  min-height: 185px;
  padding: 22px 17px;
  background: var(--paper);
  text-align: center;
  transition: background 180ms ease, color 180ms ease;
}

.home-area-item + .home-area-item {
  border-left: 1px solid var(--line);
}

.home-area-item:nth-child(1) { --area-color: var(--area-1); --area-dark: var(--area-1-dark); --area-soft: var(--area-1-soft); }
.home-area-item:nth-child(2) { --area-color: var(--area-2); --area-dark: var(--area-2-dark); --area-soft: var(--area-2-soft); }
.home-area-item:nth-child(3) { --area-color: var(--area-3); --area-dark: var(--area-3-dark); --area-soft: var(--area-3-soft); }
.home-area-item:nth-child(4) { --area-color: var(--area-4); --area-dark: var(--area-4-dark); --area-soft: var(--area-4-soft); }
.home-area-item:nth-child(5) { --area-color: var(--area-5); --area-dark: var(--area-5-dark); --area-soft: var(--area-5-soft); }
.home-area-item:nth-child(6) { --area-color: var(--area-6); --area-dark: var(--area-6-dark); --area-soft: var(--area-6-soft); }

.area-representation { --area-color: var(--area-1); --area-dark: var(--area-1-dark); --area-soft: var(--area-1-soft); }
.area-interestGroups { --area-color: var(--area-2); --area-dark: var(--area-2-dark); --area-soft: var(--area-2-soft); }
.area-parliament { --area-color: var(--area-3); --area-dark: var(--area-3-dark); --area-soft: var(--area-3-soft); }
.area-media { --area-color: var(--area-4); --area-dark: var(--area-4-dark); --area-soft: var(--area-4-soft); }
.area-technology { --area-color: var(--area-5); --area-dark: var(--area-5-dark); --area-soft: var(--area-5-soft); }
.area-policyInstitutions { --area-color: var(--area-6); --area-dark: var(--area-6-dark); --area-soft: var(--area-6-soft); }

.home-area-item .card-icon {
  margin: 0 auto 16px;
  border: 0;
  color: var(--ink);
  background: transparent;
}

.home-area-item .card-icon svg {
  width: 25px;
  height: 25px;
  stroke-width: 1.45;
}

.home-area-item h3 {
  margin-bottom: 8px;
  font-size: 0.88rem;
  line-height: 1.18;
}

.home-area-item p {
  margin: 0;
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.45;
}

.home-area-item:hover,
.home-area-item:focus-visible {
  background:
    linear-gradient(180deg, var(--area-soft, var(--green-soft)), var(--paper) 62%);
}

.home-area-item:hover .card-icon,
.home-area-item:focus-visible .card-icon {
  color: var(--area-dark, var(--green-dark));
}

.section-heading.centered {
  display: grid;
  justify-items: center;
  text-align: center;
}

.compact-section-heading {
  display: grid;
  gap: 6px;
  margin-bottom: 20px;
}

.compact-section-heading h2 {
  margin: 0;
  font-size: clamp(1.35rem, 2vw, 1.9rem);
  line-height: 1.1;
}

.compact-section-heading.page-sized h2 {
  font-size: clamp(2.05rem, 3.7vw, 3.6rem);
}

.compact-section-heading p {
  max-width: 760px;
  margin: 0;
  color: var(--muted);
  font-size: 1rem;
}

.ghost-link,
.text-link {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  color: var(--green-dark);
  font-size: 0.88rem;
  font-weight: 900;
}

.ghost-link {
  flex: 0 0 auto;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
}

.publications-section {
  width: min(1240px, calc(100% - 40px));
}

.carousel {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 14px;
  align-items: center;
}

.carousel-track {
  display: grid;
  grid-template-columns: minmax(360px, 1.25fr) repeat(3, minmax(220px, 0.62fr));
  gap: 16px;
  overflow: hidden;
}

.publication-card {
  display: grid;
  grid-template-rows: 190px 1fr;
  min-height: 430px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  transition: border-color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.publication-card.active {
  grid-column: span 1;
  box-shadow: var(--shadow);
}

.publication-card:not(.active) {
  min-height: 360px;
}

.publication-card:hover,
.info-card:hover,
.team-card:hover,
.area-card:hover,
.resource-card:hover,
.insight-card:hover {
  border-color: var(--green);
  transform: translateY(-2px);
}

.pub-cover {
  position: relative;
  display: grid;
  place-items: end start;
  padding: 18px;
  overflow: hidden;
  background:
    radial-gradient(circle at 72% 28%, rgba(121, 200, 141, 0.42), transparent 25%),
    linear-gradient(135deg, #171717, #2a2d28);
  color: var(--paper);
}

.pub-cover::before {
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  content: "";
}

.pub-cover img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.82;
}

.pub-cover span {
  position: relative;
  z-index: 1;
  color: var(--green);
  font-size: 0.75rem;
  font-weight: 900;
  text-transform: uppercase;
}

.pub-copy {
  padding: 22px;
}

.meta,
.authors,
.role,
.institution {
  color: var(--muted);
  font-size: 0.86rem;
}

.authors {
  font-weight: 750;
}

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 18px;
}

.carousel-dots button {
  position: relative;
  width: 28px;
  height: 5px;
  padding: 0;
  overflow: hidden;
  border: 0;
  border-radius: 999px;
  background: #c7cbc4;
  cursor: pointer;
}

.carousel-dots button > span {
  display: block;
  width: 100%;
  height: 100%;
  transform: scaleX(0);
  transform-origin: left center;
  background: var(--green-dark);
}

.carousel-dots button.active > span {
  animation: hero-progress 6s linear forwards;
}

.carousel-dots button.active {
  background: var(--green-dark);
}

.home-hero .carousel-dots button.active {
  background: #c7cbc4;
}

.three-grid,
.resource-grid,
.insights-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.info-card,
.area-card,
.resource-card,
.insight-card,
.team-card {
  border: 1px solid var(--line);
  border-radius: 0;
  background: var(--paper);
  transition: border-color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.info-card,
.resource-card,
.insight-card {
  padding: 26px;
}

.resources-section .resource-grid {
  gap: 16px;
  border-top: 0;
  border-left: 0;
}

.resources-section .resource-card {
  min-height: 210px;
  border: 1px solid var(--line);
}

.resources-section .resource-card .card-icon {
  border: 0;
  background: transparent;
}

.replication-section {
  padding-top: 34px;
}

.research-focus-section {
  padding-top: 4px;
}

.research-manifesto {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(390px, 0.74fr);
  gap: clamp(34px, 6vw, 82px);
  align-items: start;
  padding: clamp(34px, 6vw, 66px);
  border: 0;
  background: #171717;
  color: var(--paper);
}

.research-manifesto::before {
  content: "";
  position: absolute;
  top: clamp(45px, 6vw, 76px);
  left: clamp(34px, 6vw, 66px);
  width: 72px;
  height: 6px;
  background: var(--green);
}

.research-agenda-copy {
  max-width: 800px;
  padding-top: 29px;
}

.research-agenda-copy h2 {
  max-width: 760px;
  margin-bottom: 18px;
  font-size: clamp(2.25rem, 3.8vw, 4rem);
  line-height: 0.96;
}

.research-agenda-copy > p:not(.eyebrow) {
  max-width: 680px;
  color: rgba(255, 255, 255, 0.72);
  font-size: clamp(1.05rem, 1.55vw, 1.25rem);
  line-height: 1.5;
}

.research-question-panel {
  display: grid;
  align-content: start;
  padding-top: 8px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.research-question-panel .eyebrow,
.research-manifesto .eyebrow {
  color: var(--green);
}

.research-question {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 22px;
  align-items: start;
  padding: 22px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  opacity: 0.78;
  transition: opacity 180ms ease, transform 180ms ease;
}

.research-question-window {
  position: relative;
  height: 410px;
  overflow: hidden;
}

.research-question-window::before,
.research-question-window::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  z-index: 2;
  height: 54px;
  pointer-events: none;
}

.research-question-window::before {
  top: 0;
  background: linear-gradient(180deg, #171717, rgba(23, 23, 23, 0));
}

.research-question-window::after {
  bottom: 0;
  background: linear-gradient(0deg, #171717, rgba(23, 23, 23, 0));
}

.research-question-track {
  --question-row: 82px;
  transform: translateY(calc(var(--question-index) * var(--question-row) * -1));
  transition: transform 650ms cubic-bezier(0.22, 1, 0.36, 1);
}

.research-question-window:hover .research-question-track {
  transition-duration: 900ms;
}

.research-question {
  min-height: var(--question-row, 82px);
}

.research-question.is-current,
.research-question:hover {
  opacity: 1;
}

.research-question span {
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 950;
}

.research-question p {
  margin: 0;
  color: var(--paper);
  font-size: 1rem;
  font-weight: 760;
  line-height: 1.35;
}

.active-projects-section {
  padding-top: clamp(16px, 3vw, 28px);
}

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

.project-card {
  --project-color: var(--topic-dark, var(--green-dark));
  --project-soft: var(--topic-soft, var(--green-soft));
  position: relative;
  display: grid;
  grid-template-rows: auto 1fr auto;
  gap: 16px;
  min-height: 305px;
  padding: 20px;
  overflow: hidden;
  border: 1px solid color-mix(in srgb, var(--topic-color, var(--green)) 44%, var(--line));
  color: inherit;
  background: var(--paper);
  transition: border-color 180ms ease, background 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.project-card::before {
  display: none;
}

.project-card:hover,
.project-card:focus-visible {
  border-color: var(--project-color);
  transform: translateY(-2px);
  box-shadow: 0 14px 34px rgba(17, 17, 17, 0.06);
}

.project-card:focus-visible {
  outline: 3px solid rgba(121, 200, 141, 0.36);
  outline-offset: -3px;
}

.project-card-top {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 16px;
}

.project-status {
  display: inline-flex;
  min-height: 26px;
  align-items: center;
  color: var(--project-color);
  font-size: 0.72rem;
  font-weight: 950;
  text-transform: uppercase;
}

.project-arrow svg {
  width: 18px;
  height: 18px;
  color: var(--muted);
}

.project-card:hover .project-arrow svg,
.project-card:focus-visible .project-arrow svg {
  color: var(--project-color);
}

.project-card h3 {
  max-width: 520px;
  margin-bottom: 10px;
  font-size: clamp(1.18rem, 1.55vw, 1.55rem);
  line-height: 1.08;
}

.project-subtitle {
  margin-bottom: 14px;
  color: var(--ink);
  font-size: 0.92rem;
  font-weight: 850;
}

.project-card p {
  color: var(--muted);
}

.project-members {
  margin: 0;
  color: var(--ink);
  font-size: 0.84rem;
  font-weight: 850;
  line-height: 1.35;
}

.project-funder {
  margin: 0;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 780;
  line-height: 1.35;
}

.project-meta {
  display: grid;
  gap: 12px;
  align-self: end;
}

.project-meta-group {
  padding-top: 10px;
  border-top: 1px solid color-mix(in srgb, var(--line) 75%, transparent);
}

.project-meta-group > span {
  display: block;
  margin-bottom: 5px;
  color: var(--project-color);
  font-size: 0.68rem;
  font-weight: 950;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.research-lines-section {
  padding-top: clamp(18px, 3vw, 30px);
  padding-bottom: clamp(18px, 3vw, 30px);
}

.research-lines-section .compact-section-heading {
  margin-bottom: 14px;
}

.research-lines-section .compact-section-heading p {
  max-width: 640px;
}

.research-lines-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.research-line-card {
  display: grid;
  grid-template-columns: 32px 1fr;
  gap: 12px;
  width: 100%;
  min-height: 94px;
  padding: 12px 16px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  border-top: 0;
  border-left: 0;
  background: var(--paper);
  color: inherit;
  text-align: left;
  cursor: pointer;
  transition: background 180ms ease;
}

.area-card.area-representation { border-color: color-mix(in srgb, var(--area-1) 36%, var(--line)); }
.area-card.area-interestGroups { border-color: color-mix(in srgb, var(--area-2) 36%, var(--line)); }
.area-card.area-parliament { border-color: color-mix(in srgb, var(--area-3) 36%, var(--line)); }
.area-card.area-media { border-color: color-mix(in srgb, var(--area-4) 36%, var(--line)); }
.area-card.area-technology { border-color: color-mix(in srgb, var(--area-5) 36%, var(--line)); }
.area-card.area-policyInstitutions { border-color: color-mix(in srgb, var(--area-6) 36%, var(--line)); }

.area-card:hover,
.area-card:focus-within {
  border-color: var(--area-color, var(--green));
}

.research-line-card:hover,
.research-line-card:focus-visible,
.research-line-card.active {
  background: linear-gradient(180deg, var(--area-soft, var(--green-soft)), var(--paper) 70%);
}

.research-line-card:hover,
.research-line-card.active {
  color: var(--ink);
}

.research-line-card .card-icon {
  width: 28px;
  height: 28px;
  margin-bottom: 0;
  color: var(--ink);
}

.research-line-card:hover .card-icon,
.research-line-card:focus-visible .card-icon,
.research-line-card.active .card-icon {
  color: var(--area-dark, var(--green-dark));
}

.research-line-card h3 {
  margin-bottom: 3px;
  font-size: 1rem;
}

.research-line-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.35;
}

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

.replication-card {
  position: relative;
  display: grid;
  min-height: 245px;
  grid-template-rows: auto 1fr auto;
  gap: 16px;
  padding: 20px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 0;
  background:
    linear-gradient(135deg, rgba(121, 200, 141, 0.13), transparent 42%),
    var(--paper);
}

.topic-card-representation,
.topic-card-governance {
  --topic-color: var(--family-representation);
  --topic-dark: var(--family-representation-dark);
  --topic-soft: var(--family-representation-soft);
  border-color: color-mix(in srgb, var(--family-representation) 44%, var(--line));
  background:
    linear-gradient(135deg, color-mix(in srgb, var(--family-representation) 26%, transparent), color-mix(in srgb, var(--family-representation) 6%, transparent) 44%, transparent 72%),
    #fbfdfb;
}

.topic-card-interestGroups {
  --topic-color: var(--family-interestGroups);
  --topic-dark: var(--family-interestGroups-dark);
  --topic-soft: var(--family-interestGroups-soft);
  border-color: color-mix(in srgb, var(--family-interestGroups) 44%, var(--line));
  background:
    linear-gradient(135deg, color-mix(in srgb, var(--family-interestGroups) 22%, transparent), color-mix(in srgb, var(--family-interestGroups) 6%, transparent) 45%, transparent 74%),
    #f8fdfc;
}

.topic-card-parliament {
  --topic-color: var(--family-parliament);
  --topic-dark: var(--family-parliament-dark);
  --topic-soft: var(--family-parliament-soft);
  border-color: color-mix(in srgb, var(--family-parliament) 44%, var(--line));
  background:
    linear-gradient(135deg, color-mix(in srgb, var(--family-parliament) 22%, transparent), color-mix(in srgb, var(--family-parliament) 6%, transparent) 45%, transparent 74%),
    #f8fcfd;
}

.topic-card-media,
.topic-card-society {
  --topic-color: var(--family-media);
  --topic-dark: var(--family-media-dark);
  --topic-soft: var(--family-media-soft);
  border-color: color-mix(in srgb, var(--family-media) 44%, var(--line));
  background:
    linear-gradient(135deg, color-mix(in srgb, var(--family-media) 22%, transparent), color-mix(in srgb, var(--family-media) 6%, transparent) 45%, transparent 74%),
    #fdfbff;
}

.topic-card-technology,
.topic-card-methods {
  --topic-color: var(--family-technology);
  --topic-dark: var(--family-technology-dark);
  --topic-soft: var(--family-technology-soft);
  border-color: color-mix(in srgb, var(--family-technology) 44%, var(--line));
  background:
    linear-gradient(135deg, color-mix(in srgb, var(--family-technology) 24%, transparent), color-mix(in srgb, var(--family-technology) 6%, transparent) 45%, transparent 74%),
    #fffdf7;
}

.topic-card-policyInstitutions,
.topic-card-environment {
  --topic-color: var(--family-policyInstitutions);
  --topic-dark: var(--family-policyInstitutions-dark);
  --topic-soft: var(--family-policyInstitutions-soft);
  border-color: color-mix(in srgb, var(--family-policyInstitutions) 48%, var(--line));
  background:
    linear-gradient(135deg, color-mix(in srgb, var(--family-policyInstitutions) 24%, transparent), color-mix(in srgb, var(--family-policyInstitutions) 7%, transparent) 45%, transparent 74%),
    #fbfdf7;
}

.replication-card.featured,
.topic-card.featured {
  color: var(--paper);
  border-color: #171717;
  background:
    linear-gradient(135deg, rgba(121, 200, 141, 0.2), transparent 32%),
    linear-gradient(160deg, rgba(255, 255, 255, 0.1), transparent 58%),
    #171717;
}

.replication-icon {
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border: 0;
  border-radius: 0;
  color: var(--green-dark);
  background: transparent;
}

.topic-card .replication-icon {
  color: var(--topic-dark, var(--green-dark));
}

.replication-card.featured .replication-icon {
  color: var(--green);
  background: transparent;
}

.replication-card h3 {
  display: -webkit-box;
  margin-bottom: 10px;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.card-authors {
  margin: 0;
  color: var(--muted);
  font-size: 0.85rem;
  line-height: 1.45;
}

.replication-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 14px;
}

.replication-tags span {
  padding: 0;
  border: 0;
  border-radius: 0;
  color: var(--muted);
  background: transparent;
  font-size: 0.76rem;
  font-weight: 850;
}

.replication-tags span + span::before {
  margin-right: 7px;
  color: var(--line);
  content: "/";
}

.replication-tags .topic-representation { color: var(--family-representation-dark); }
.replication-tags .topic-interestGroups { color: var(--family-interestGroups-dark); }
.replication-tags .topic-parliament { color: var(--family-parliament-dark); }
.replication-tags .topic-media { color: var(--family-media-dark); }
.replication-tags .topic-technology { color: var(--family-technology-dark); }
.replication-tags .topic-policyInstitutions { color: var(--family-policyInstitutions-dark); }

.replication-card.featured .meta,
.replication-card.featured .authors,
.replication-card.featured .replication-tags span {
  color: #dce2db;
}

.replication-card.featured .text-link {
  color: var(--green);
}

.media-page {
  padding-top: clamp(34px, 5vw, 56px);
}

.own-news-section {
  padding-top: 0;
  padding-bottom: clamp(24px, 4vw, 42px);
}

.own-news-section + .media-page {
  padding-top: clamp(34px, 5vw, 54px);
  border-top: 1px solid var(--line);
}

.own-news-card {
  border-color: color-mix(in srgb, var(--topic-color, var(--green)) 44%, var(--line));
}

.own-news-card .replication-icon {
  color: var(--ink);
  background: transparent;
}

.media-card .replication-tags span {
  max-width: 100%;
}

.media-card.has-bg-image {
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.94), rgba(255, 255, 255, 0.84)),
    var(--media-bg) center / cover no-repeat,
    var(--paper);
}

.media-card.has-bg-image.featured {
  background:
    linear-gradient(90deg, rgba(17, 17, 17, 0.9), rgba(17, 17, 17, 0.78)),
    var(--media-bg) center / cover no-repeat,
    #171717;
}

.replication-card.featured .replication-tags .topic {
  color: #dce2db;
  border-color: transparent;
  background: transparent;
}

.replication-pagination {
  margin-top: 18px;
}

.card-icon {
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  margin-bottom: 20px;
  border: 0;
  border-radius: 0;
  color: var(--green-dark);
  background: transparent;
}

.team-section {
  width: min(1180px, calc(100% - 40px));
  padding-top: 4px;
}

.team-tools {
  display: flex;
  justify-content: flex-end;
  margin-bottom: 24px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}

.team-search {
  display: flex;
  align-items: center;
  gap: 10px;
  width: min(100%, 390px);
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 0;
  background: var(--paper);
}

.team-search input {
  width: 100%;
  min-height: 42px;
  border: 0;
  outline: 0;
  background: transparent;
}

.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 30px;
}

.filters button {
  min-height: 38px;
  padding: 0 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  background: var(--paper);
  cursor: pointer;
  font-weight: 800;
}

.filters button.active,
.filters button:hover {
  color: var(--ink);
  border-color: var(--green);
  background: var(--green-soft);
}

.team-group {
  margin-top: 38px;
}

.team-group > h3 {
  margin-bottom: 14px;
  padding: 0;
  border-bottom: 0;
  font-size: 0.9rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 1fr;
  align-items: stretch;
  gap: 14px;
}

.team-card {
  display: grid;
  grid-template-rows: auto 1fr;
  min-height: 0;
  overflow: hidden;
  border-radius: 0;
}

.portrait {
  position: relative;
  display: grid;
  place-items: center;
  aspect-ratio: 1 / 1;
  background: linear-gradient(135deg, #e9ece7, #f8faf7);
  color: var(--green-dark);
  font-size: 2.5rem;
  font-weight: 900;
}

.portrait::before {
  content: attr(data-initials);
}

.portrait img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(1);
  transition: filter 180ms ease;
}

.team-card-photo-link {
  text-decoration: none;
}

.team-card-photo-link:focus-visible {
  outline: 3px solid var(--green-dark);
  outline-offset: -3px;
}

.team-card:hover .portrait img {
  filter: grayscale(0);
}

.team-card-photo-link:focus-visible img {
  filter: grayscale(0);
}

.team-card-copy {
  display: grid;
  grid-template-rows: auto;
  gap: 5px;
  align-content: start;
  padding: 14px;
}

.team-card h4 {
  min-height: 0;
  margin: 0;
  font-size: 0.98rem;
  line-height: 1.18;
}

.team-card .role {
  min-height: 0;
  margin: 0;
  font-size: 0.8rem;
  font-weight: 780;
}

.expertise {
  display: flex;
  flex-wrap: wrap;
  gap: 0 5px;
  padding: 0;
  margin: 8px 0 0;
  list-style: none;
}

.expertise li {
  padding: 0;
  border: 0;
  border-radius: 0;
  color: var(--muted);
  font-size: 0.74rem;
  line-height: 1.35;
}

.expertise li:not(:last-child)::after {
  content: ",";
}

.academic-links {
  align-self: start;
  display: flex;
  gap: 7px;
  margin: 11px 0 8px;
  color: var(--green-dark);
}

.academic-links a {
  display: grid;
  place-items: center;
  width: 22px;
  height: 22px;
  color: var(--green-dark);
  border-radius: 0;
}

.academic-links a:hover,
.academic-links a:focus-visible {
  color: var(--ink);
  background: transparent;
}

.academic-links svg {
  width: 16px;
  height: 16px;
}

.profile-link {
  align-self: flex-start;
  margin-top: auto;
  font-size: 0.78rem;
}

.profile-disabled {
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 800;
}

.member-profile-hero {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
  padding: 34px 0 18px;
}

.member-back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 24px;
  color: var(--muted);
  font-size: 0.78rem;
}

.member-profile-grid {
  display: grid;
  grid-template-columns: minmax(260px, 360px) 1fr;
  grid-template-areas:
    "photo heading"
    "sidebar bio";
  gap: 24px clamp(34px, 5.5vw, 72px);
  align-items: start;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
}

.member-profile-photo {
  grid-area: photo;
  align-self: start;
  margin: 0;
  border: 0;
  border-radius: 0;
  overflow: hidden;
}

.member-profile-photo img {
  filter: grayscale(0);
}

.member-profile-heading {
  grid-area: heading;
  display: grid;
  align-content: start;
  padding-top: 2px;
}

.member-profile-heading .eyebrow {
  margin-bottom: 12px;
}

.member-profile-heading h1 {
  margin: 0 0 8px;
  max-width: 680px;
  font-size: clamp(2.1rem, 4.2vw, 4rem);
  line-height: 0.98;
  letter-spacing: 0;
}

.member-role {
  margin: 0;
  color: var(--ink);
  font-size: 1.05rem;
  font-weight: 850;
}

.member-profile-sidebar {
  grid-area: sidebar;
  display: grid;
  gap: 18px;
  padding-top: 2px;
}

.member-institution {
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 8px;
  align-items: start;
  margin: 0;
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 750;
}

.member-institution svg {
  width: 16px;
  height: 16px;
  color: var(--green-dark);
}

.member-profile-copy {
  grid-area: bio;
  padding-left: clamp(24px, 3vw, 42px);
  border-left: 1px solid var(--line);
}

.member-profile-copy > p {
  max-width: 760px;
  margin: 0;
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.72;
}

.member-profile-links {
  display: grid;
  gap: 9px;
  margin: 0;
}

.member-profile-links a {
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 8px;
  align-items: start;
  min-height: 28px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 900;
}

.member-profile-links a:hover,
.member-profile-links a:focus-visible {
  color: var(--green-dark);
}

.member-profile-links svg {
  width: 16px;
  height: 16px;
  color: var(--green-dark);
}

.member-profile-topics {
  display: grid;
  gap: 7px;
  padding: 18px 0 0;
  margin: 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.member-profile-topics li {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 850;
}

.member-profile-section {
  padding-top: 34px;
}

.member-profile-section .compact-section-heading {
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
}

.member-profile-section .compact-section-heading h2 {
  font-size: 0.98rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.publication-list.compact .publication-row {
  grid-template-columns: 86px 1fr;
}

.member-linked-grid,
.member-project-grid {
  margin-top: 14px;
}

.member-project-grid {
  grid-template-columns: repeat(3, 1fr);
}

.no-results {
  padding: 28px;
  border: 1px dashed var(--line);
  border-radius: 8px;
  background: var(--paper);
  color: var(--muted);
}

.area-grid {
  display: grid;
  gap: 12px;
}

.area-card {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 18px;
  align-items: center;
  padding: 20px;
}

.area-card .card-icon {
  margin: 0;
}

.area-card p {
  margin-bottom: 6px;
  color: var(--muted);
}

.area-card span {
  color: var(--green-dark);
  font-size: 0.8rem;
  font-weight: 900;
}

.area-card a {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 999px;
}

.resource-grid {
  grid-template-columns: repeat(4, 1fr);
}

.resources-section {
  border-top: 1px solid var(--line);
}

.home-split .resources-section {
  border-top: 0;
}

.insight-card {
  display: grid;
  align-content: start;
  min-height: 240px;
}

.institutions-section {
  padding-top: 34px;
  padding-bottom: 50px;
  border-top: 0;
  background: var(--paper);
}

.institutions-section .section-heading {
  margin-bottom: 22px;
}

.institutions-section .section-heading h2 {
  font-size: clamp(1.18rem, 1.8vw, 1.55rem);
  letter-spacing: 0.01em;
}

.institutions-section .section-heading p {
  max-width: 660px;
  font-size: 0.94rem;
}

.logo-strip {
  --logo-count: 5;
  --logo-item-width: calc(100% / 5);
  overflow: hidden;
  border: 0;
}

.logo-track {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  min-width: 100%;
}

.logo-strip.is-carousel .logo-track {
  display: flex;
  animation: institution-scroll 28s linear infinite;
}

.logo-strip.is-carousel:hover .logo-track {
  animation-play-state: paused;
}

.institution-logo {
  display: grid;
  place-items: center;
  flex: 0 0 var(--logo-item-width);
  min-width: 0;
  min-height: 126px;
  padding: 18px 28px;
  border: 0;
  border-left: 1px solid var(--line);
  border-radius: 0;
  color: #868b83;
  background: transparent;
  filter: grayscale(1);
  font-weight: 900;
  text-align: center;
  transition: color 180ms ease, filter 180ms ease, border-color 180ms ease;
}

.institution-logo img {
  max-width: min(240px, 98%);
  max-height: 88px;
  width: auto;
  height: auto;
  object-fit: contain;
}

.institution-logo span {
  display: none;
}

.institution-logo:first-child {
  border-left: 0;
}

.institution-logo:hover {
  color: var(--green-dark);
  border-color: var(--green);
  filter: grayscale(0);
}

@keyframes institution-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(calc(-1 * var(--logo-item-width) * var(--logo-count))); }
}

.final-cta {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 36px;
  align-items: end;
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto 0;
  padding: clamp(36px, 6vw, 64px);
  border-radius: 8px 8px 0 0;
  color: var(--paper);
  background: var(--ink-2);
}

.final-cta img {
  width: 138px;
  height: auto;
  padding: 6px;
  border-radius: 6px;
  background: var(--paper);
}

.final-cta h2 {
  margin-top: 26px;
}

.final-cta p {
  max-width: 760px;
  color: #d8ddd6;
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: end;
}

.primary-cta {
  color: var(--ink);
  border: 0;
  background: var(--green);
  box-shadow: none;
}

.secondary-cta {
  color: var(--paper);
  border: 1px solid rgba(121, 200, 141, 0.72);
}

.secondary-light-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink);
  font-size: 0.84rem;
  font-weight: 800;
  background: var(--paper);
  cursor: pointer;
}

.contact-modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: grid;
  place-items: center;
  padding: 20px;
  background: rgba(17, 17, 17, 0.42);
}

.contact-modal {
  position: relative;
  width: min(760px, 100%);
  max-height: min(760px, calc(100vh - 40px));
  overflow: auto;
  padding: clamp(24px, 4vw, 38px);
  border: 1px solid var(--line);
  background: var(--paper);
  box-shadow: 0 24px 80px rgba(17, 17, 17, 0.22);
}

.contact-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.contact-form label {
  display: grid;
  gap: 6px;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 850;
}

.contact-form .wide,
.contact-form-actions,
.contact-form-status {
  grid-column: 1 / -1;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 2px;
  padding: 10px 11px;
  color: var(--ink);
  background: var(--paper);
}

.contact-form textarea {
  resize: vertical;
}

.contact-form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  margin-top: 6px;
}

.contact-form-status {
  min-height: 1.3em;
  margin: 0;
  color: var(--green-dark);
  font-weight: 850;
}

.site-footer {
  display: grid;
  grid-template-columns: 0.85fr 1fr 1fr;
  gap: 24px;
  align-items: center;
  width: 100%;
  padding: 20px max(20px, calc((100vw - 1180px) / 2));
  color: #d8ddd6;
  border-top: 1px solid rgba(121, 200, 141, 0.22);
  background:
    radial-gradient(circle at 8% 20%, rgba(121, 200, 141, 0.13), transparent 26%),
    var(--ink);
}

.footer-brand {
  display: grid;
  gap: 4px;
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  justify-content: center;
  font-size: 0.82rem;
  font-weight: 850;
}

.site-footer nav button {
  border: 0;
  padding: 0;
  color: inherit;
  background: transparent;
  cursor: pointer;
  font: inherit;
  font-weight: inherit;
}

.site-footer img {
  width: auto;
  height: 28px;
  max-width: 150px;
  padding: 0;
  background: transparent;
  object-fit: contain;
}

.site-footer p {
  margin: 0;
  color: #aeb7ad;
  font-size: 0.72rem;
  font-weight: 700;
}

.site-footer a:hover,
.site-footer button:hover {
  color: var(--green);
}

.site-footer address {
  color: #bfc5bd;
  font-size: 0.82rem;
  font-style: normal;
  line-height: 1.55;
  text-align: right;
}

@media (max-width: 1120px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .main-nav {
    grid-column: 1 / -1;
    justify-content: start;
    order: 3;
    overflow-x: auto;
    padding-bottom: 2px;
  }

  .carousel-track {
    grid-template-columns: repeat(4, minmax(280px, 1fr));
    overflow-x: auto;
    scroll-snap-type: x mandatory;
  }

  .publication-card {
    scroll-snap-align: start;
  }

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

  .home-hero {
    grid-template-columns: minmax(260px, 310px) minmax(0, 1fr);
    width: min(1180px, calc(100% - 40px));
    padding-inline: 44px;
  }

  .home-hero.carousel {
    grid-template-columns: minmax(260px, 310px) minmax(0, 1fr);
  }

  .home-hero.visual-right {
    grid-template-columns: minmax(0, 1fr) minmax(260px, 310px);
  }

  .home-hero.carousel.visual-right {
    grid-template-columns: minmax(0, 1fr) minmax(260px, 310px);
  }

  .home-hero .hero-arrow {
    display: none;
  }

  .stats-band {
    grid-template-columns: repeat(3, 1fr);
  }

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

  .featured-publication-grid {
    grid-template-columns: 1fr 1fr;
  }

  .featured-publication.primary {
    grid-column: 1 / -1;
    min-height: 210px;
    max-height: 210px;
  }

  .featured-publication:not(.primary) {
    grid-column: span 1;
  }

  .research-manifesto {
    grid-template-columns: 1fr;
  }

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

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

@media (max-width: 840px) {
  .site-header {
    position: static;
  }

  .header-actions {
    flex-wrap: wrap;
    justify-content: end;
  }

  .contact-button {
    display: none;
  }

  .hero,
  .section-heading.with-action,
  .final-cta,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .site-footer,
  .site-footer address,
  .site-footer nav {
    justify-items: start;
    justify-content: start;
    text-align: left;
  }

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

  .hero-visual {
    min-height: 280px;
  }

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

  .carousel-button {
    display: none;
  }

  .three-grid,
  .resource-grid,
  .replication-grid,
  .insights-grid,
  .project-grid,
  .research-lines-grid,
  .home-area-strip,
  .home-split {
    grid-template-columns: 1fr 1fr;
  }

  .home-hero,
  .research-manifesto,
  .home-split,
  .publications-layout,
  .work-band {
    grid-template-columns: 1fr;
  }

  .publication-type-sidebar {
    display: flex;
    min-width: 0;
    max-width: 100%;
    gap: 8px;
    overflow-x: auto;
    padding: 0 0 12px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
    scrollbar-width: thin;
  }

  .publication-type-sidebar button {
    flex: 0 0 auto;
    border-left: 0;
    border-bottom: 3px solid transparent;
  }

  .publication-type-sidebar button.active,
  .publication-type-sidebar button:hover,
  .publication-type-sidebar button:focus-visible {
    border-left-color: transparent;
    border-bottom-color: var(--green);
  }

  .publications-section .publication-filters {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .publications-section .publication-filters .team-search {
    grid-column: 1 / -1;
    max-width: none;
  }

  .home-split .section + .section {
    padding-top: 26px;
    padding-left: 0;
    border-top: 1px solid var(--line);
    border-left: 0;
  }

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

  .institution-logo {
    flex-basis: calc(100% / 2);
  }

  .home-area-item:nth-child(odd) {
    border-left: 0;
  }

  .home-area-item:nth-child(n + 3) {
    border-top: 1px solid var(--line);
  }

  .home-hero {
    width: min(100% - 28px, 720px);
    padding: 34px 26px 48px;
  }

  .home-hero.visual-right {
    grid-template-columns: 1fr;
  }

  .home-hero.carousel,
  .home-hero.carousel.visual-right {
    grid-template-columns: 1fr;
  }

  .home-hero-copy,
  .home-hero.visual-right .home-hero-copy,
  .home-hero.visual-left .home-hero-copy,
  .report-cover,
  .hero-image,
  .home-hero.visual-right .report-cover,
  .home-hero.visual-right .hero-image {
    grid-column: 1;
  }

  .report-cover,
  .hero-image,
  .home-hero.visual-right .report-cover,
  .home-hero.visual-right .hero-image {
    grid-row: auto;
  }

  .hero-dots {
    right: 26px;
  }

  .report-cover {
    width: min(100%, 280px);
  }

  .hero-image {
    width: min(100%, 280px);
  }

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

  .home-split .resource-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .member-profile-grid {
    grid-template-columns: 1fr;
    grid-template-areas:
      "photo"
      "heading"
      "sidebar"
      "bio";
  }

  .member-profile-photo {
    max-width: 360px;
  }

  .member-profile-copy {
    padding-left: 0;
    border-left: 0;
  }

  .article-highlight-grid {
    grid-template-columns: 1fr;
  }

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

  .cta-actions {
    justify-content: start;
  }
}

@media (max-width: 580px) {
  .site-header {
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 8px 12px;
    min-height: 0;
    padding-block: 8px;
    padding-inline: 16px;
  }

  .brand img {
    width: 112px;
  }

  .header-actions {
    flex-wrap: nowrap;
    gap: 6px;
  }

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

  .language-switcher {
    gap: 1px;
    padding: 2px;
  }

  .language-switcher a,
  .language-switcher button {
    min-width: 28px;
    padding: 4px 6px;
  }

  .main-nav {
    width: 100%;
    gap: 16px;
    padding-bottom: 0;
    font-size: 0.76rem;
    scrollbar-width: none;
  }

  .main-nav::-webkit-scrollbar {
    display: none;
  }

  .section,
  .publications-section,
  .team-section,
  .final-cta {
    width: min(100% - 28px, 1180px);
  }

  .hero {
    padding-inline: 14px;
  }

  .home-hero {
    width: min(100% - 20px, 560px);
    padding: 28px 18px 44px;
  }

  .home-hero-copy h1 {
    font-size: clamp(1.72rem, 9vw, 2.55rem);
  }

  .hero-actions {
    gap: 10px;
    margin-top: 22px;
  }

  .hero-dots {
    right: 18px;
    bottom: 14px;
  }

  .report-cover {
    width: min(100%, 245px);
    padding: 18px;
  }

  .hero-image {
    width: min(100%, 245px);
  }

  h1 {
    font-size: 2.45rem;
  }

  h2 {
    font-size: 2rem;
  }

  .carousel-track {
    grid-template-columns: repeat(4, minmax(250px, 84vw));
  }

  .three-grid,
  .resource-grid,
  .replication-grid,
  .insights-grid,
  .project-grid,
  .member-project-grid,
  .research-lines-grid,
  .home-area-strip,
  .publication-filters {
    grid-template-columns: 1fr;
  }

  .stats-band,
  .team-grid,
  .predoctoral .team-grid,
  .research_assistant .team-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .stats-band article:last-child:nth-child(odd) {
    grid-column: 1 / -1;
  }

  .team-card-copy {
    padding: 12px;
  }

  .team-card h4 {
    font-size: 0.9rem;
  }

  .featured-publication-grid {
    grid-template-columns: 1fr;
  }

  .featured-publication.primary {
    grid-column: span 1;
    min-height: 250px;
    max-height: none;
  }

  .featured-publication:not(.primary) {
    grid-column: span 1;
  }

  .publications-section .publication-filters {
    grid-template-columns: 1fr;
  }

  .publications-section .publication-filters .team-search {
    grid-column: auto;
  }

  .publication-pagination {
    justify-content: start;
  }

  .logo-track {
    grid-template-columns: 1fr;
  }

  .institution-logo {
    flex-basis: 100%;
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .contact-form {
    grid-template-columns: 1fr;
  }

  .home-area-item + .home-area-item {
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .home-split .resource-grid {
    grid-template-columns: 1fr;
  }

  .home-split .insight-card {
    grid-template-columns: 96px 1fr 20px;
    gap: 12px;
  }

  .insight-thumb {
    width: 96px;
  }

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

  .work-grid article {
    min-height: auto;
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .publication-row {
    grid-template-columns: 82px 1fr;
    gap: 14px;
    padding: 14px;
  }

  .member-profile-hero {
    width: min(100% - 28px, 1180px);
    padding-top: 28px;
  }

  .member-profile-grid {
    padding: 0;
  }

  .member-profile-heading h1 {
    font-size: 2.25rem;
  }

  .area-card {
    grid-template-columns: 1fr;
  }

  .research-manifesto {
    padding: 24px;
  }

  .research-agenda-copy,
  .research-question,
  .project-card,
  .research-line-card {
    padding: 18px 0;
  }

  .project-card,
  .research-line-card {
    padding: 18px;
  }

  .signal-card {
    width: 126px;
  }

  .signal-card.research {
    right: 18px;
  }
}

@media (max-width: 340px) {
  .stats-band,
  .team-grid,
  .predoctoral .team-grid,
  .research_assistant .team-grid {
    grid-template-columns: 1fr;
  }

  .stats-band article:last-child:nth-child(odd) {
    grid-column: auto;
  }
}
