/* Research page additions */

/* Page title */
.page-title {
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.1;
  margin: 0;
  letter-spacing: -0.03em;
}

/* Top card navigation */
.research-nav-section {
  max-width: none;
  background: #f7f9fb;

  padding-top: 42px;
  padding-bottom: 34px;

  padding-left: max(24px, calc((100vw - 1120px) / 2 + 24px));
  padding-right: max(24px, calc((100vw - 1120px) / 2 + 24px));
}

/* Research detail sections */
.research-detail {
  max-width: none;
  padding-top: 70px;
  padding-bottom: 70px;
  padding-left: max(24px, calc((100vw - 1120px) / 2 + 24px));
  padding-right: max(24px, calc((100vw - 1120px) / 2 + 24px));
  border-top: 1px solid var(--border);
  background: #fbfcfd;
}

.research-detail.alt-bg {
  background: #f2f6f8;
}

/* Alternating text/image layout */
.research-split {
  max-width: 1120px;
  margin: 0 auto 60px;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
  gap: 38px;
  align-items: center;
}

.research-split:last-child {
  margin-bottom: 0;
}

.research-split.reverse {
  grid-template-columns: minmax(280px, 0.8fr) minmax(0, 1.2fr);
}

.research-split.reverse .research-text {
  order: 2;
}

.research-split.reverse .research-media {
  order: 1;
}

/* Text styling */
.research-text h2 {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  line-height: 1.12;
  margin: 0 0 14px;
  letter-spacing: -0.025em;
}

.research-text h3 {
  font-size: 1.35rem;
  margin: 0 0 10px;
}

.research-text p {
  margin-top: 0;
  color: var(--muted);
}

/* Supporting images/video: different from clickable cards */
.research-media {
  margin: 0;
}

.research-media img,
.research-media video {
  width: 100%;
  max-width: 100%;
  border-radius: 12px;
  box-shadow: none;
  border: 1px solid var(--border);
  aspect-ratio: 16 / 10;
  object-fit: cover;
  background: #e8ecef;
}

/* Footer */
.site-footer {
  border-top: 1px solid var(--border);
  padding: 20px 24px;
  text-align: center;
  font-size: 0.9rem;
}

/* Mobile layout */
@media (max-width: 860px) {
  .research-split,
  .research-split.reverse {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .research-split.reverse .research-text,
  .research-split.reverse .research-media {
    order: initial;
  }

  .research-detail {
    padding-top: 42px;
    padding-bottom: 42px;
    padding-left: 24px;
    padding-right: 24px;
  }
}
.research-lead {
  font-weight: 700;
  margin: 0 0 12px;
  color:  #174866;
  letter-spacing: -0.01em;
}
.research-nav-section .image-card {
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}