/* ================================================
   Cambridge Circus Research — Shared Stylesheet
   ================================================ */

/* --- Fonts --- */
/* --- Reset & Base --- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
  background-color: #FDFEFF;
  color: #0F2A5E;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

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

/* ================================================
   NAVIGATION
   ================================================ */

.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: 68px;
  background-color: #0F2A5E;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 32px;
  box-shadow: 0 1px 16px rgba(15, 42, 94, 0.18);
}

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

.nav-logo {
  height: 42px;
  width: 42px;
  object-fit: contain;
}

/* Placeholder for when logo image is missing */
.nav-logo-placeholder {
  height: 42px;
  width: 42px;
  background: rgba(255,255,255,0.15);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.5);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-align: center;
  line-height: 1.2;
}

.nav-center {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1;
}

.nav-wordmark {
  height: 30px;
  object-fit: contain;
}

/* Placeholder for Molecule White wordmark */
.nav-wordmark-placeholder {
  color: #FDFEFF;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.9;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 22px;
  flex: 1;
  justify-content: flex-end;
}

.nav-link {
  color: rgba(253, 254, 255, 0.82);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: color 0.2s ease;
  position: relative;
  padding-bottom: 3px;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1.5px;
  background: #FDFEFF;
  transition: width 0.2s ease;
}

.nav-link:hover {
  color: #FDFEFF;
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.nav-link.active {
  color: #FDFEFF;
}

/* ================================================
   HERO  (parallax, full-viewport)
   ================================================ */

.hero {
  height: 100vh;
  min-height: 600px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background-color: #0F2A5E; /* fallback */
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('assets/images/12019-architecture-140785.webp');
  background-size: cover;
  background-position: center top;
  background-attachment: fixed; /* parallax */
  will-change: transform;
}

/* Dark gradient overlay */
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(15, 42, 94, 0.52) 0%,
    rgba(15, 42, 94, 0.38) 50%,
    rgba(15, 42, 94, 0.64) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #FDFEFF;
  max-width: 820px;
  padding: 0 32px;
}

.hero-eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(253, 254, 255, 0.7);
  margin-bottom: 20px;
}

.hero-title {
  font-size: clamp(36px, 5.5vw, 68px);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.06;
  margin-bottom: 24px;
  color: #FDFEFF;
}

.hero-subtitle {
  font-size: clamp(16px, 2vw, 20px);
  font-weight: 300;
  line-height: 1.55;
  color: rgba(253, 254, 255, 0.88);
  max-width: 560px;
  margin: 0 auto 40px;
  letter-spacing: 0.01em;
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #FDFEFF;
  color: #0F2A5E;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 14px 32px;
  border-radius: 2px;
  transition: background 0.2s, color 0.2s, transform 0.15s;
}

.hero-cta:hover {
  background: rgba(253, 254, 255, 0.88);
  transform: translateY(-1px);
}

.hero-scroll-hint {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  color: rgba(253, 254, 255, 0.5);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.hero-scroll-line {
  width: 1px;
  height: 36px;
  background: rgba(253, 254, 255, 0.3);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; transform: scaleY(1); }
  50% { opacity: 0.7; transform: scaleY(1.15); }
}

/* ================================================
   PAGE HEADER (inner pages)
   ================================================ */

.page-header {
  margin-top: 68px;
  padding: 80px 64px 64px;
  background: #0F2A5E;
  color: #FDFEFF;
}

.page-header-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.page-header-eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(253,254,255,0.55);
  margin-bottom: 14px;
}

.page-header h1 {
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.1;
}

.page-header p {
  margin-top: 16px;
  font-size: 17px;
  font-weight: 300;
  color: rgba(253,254,255,0.78);
  max-width: 560px;
  line-height: 1.6;
}

/* ================================================
   WORKSTREAM IMAGE HEADERS
   ================================================ */

.ws-hero {
  margin-top: 68px;
  height: 400px;
  position: relative;
  overflow: hidden;
  background-color: #0F2A5E;
}

.ws-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}

.ws-hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(15, 42, 94, 0.3) 0%,
    rgba(15, 42, 94, 0.62) 100%
  );
}

.ws-hero-content {
  position: relative;
  z-index: 2;
  color: #FDFEFF;
  padding: 0 64px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  height: 100%;
  padding-bottom: 52px;
  max-width: 1200px;
  margin: 0 auto;
}

.ws-hero-label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(253,254,255,0.6);
  margin-bottom: 12px;
}

.ws-hero h1 {
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.1;
}

/* ================================================
   SECTION WRAPPERS
   ================================================ */

.section {
  padding: 88px 64px;
}

.section-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.section--grey {
  background: #F5F6F8;
}

.section-label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #80807E;
  margin-bottom: 14px;
}

.section-title {
  font-size: clamp(26px, 3vw, 38px);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.15;
  color: #0F2A5E;
  margin-bottom: 20px;
}

.section-subtitle {
  font-size: 17px;
  font-weight: 300;
  color: #0F2A5E;
  opacity: 0.72;
  max-width: 560px;
  line-height: 1.65;
}

.section-divider {
  width: 48px;
  height: 3px;
  background: #0F2A5E;
  margin: 28px 0;
}

/* ================================================
   ABOUT / TEXT PROSE
   ================================================ */

.prose {
  max-width: 720px;
}

.prose p {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.75;
  color: #0F2A5E;
  margin-bottom: 20px;
  opacity: 0.88;
}

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

/* ================================================
   WORKSTREAM CARDS (overview page)
   ================================================ */

.ws-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-top: 56px;
}

.ws-card {
  position: relative;
  height: 460px;
  overflow: hidden;
  display: block;
  cursor: pointer;
}

.ws-card-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.5s ease;
}

.ws-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(15, 42, 94, 0.12) 0%,
    rgba(15, 42, 94, 0.7) 100%
  );
  transition: background 0.3s ease;
  z-index: 1;
}

.ws-card:hover .ws-card-bg {
  transform: scale(1.03);
}

.ws-card:hover::after {
  background: linear-gradient(
    to bottom,
    rgba(15, 42, 94, 0.18) 0%,
    rgba(15, 42, 94, 0.82) 100%
  );
}

.ws-card-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 36px 32px;
  color: #FDFEFF;
  z-index: 2;
}

.ws-card-label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(253,254,255,0.6);
  margin-bottom: 10px;
}

.ws-card-title {
  font-size: 24px;
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.2;
  margin-bottom: 10px;
}

.ws-card-desc {
  font-size: 14px;
  font-weight: 300;
  line-height: 1.6;
  color: rgba(253,254,255,0.78);
  margin-bottom: 20px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, margin 0.35s ease;
}

.ws-card:hover .ws-card-desc {
  max-height: 80px;
}

.ws-card-arrow {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(253,254,255,0.75);
  display: flex;
  align-items: center;
  gap: 8px;
  transition: color 0.2s, gap 0.2s;
}

.ws-card:hover .ws-card-arrow {
  color: #FDFEFF;
  gap: 14px;
}

/* Placeholder bg for when images are absent */
.ws-card--defence .ws-card-bg   { background-color: #1a3a6e; background-image: url('assets/images/zanychew-dji-5945357.webp'); background-position: center 40%; }
.ws-card--education .ws-card-bg { background-color: #22304d; background-image: url('assets/images/okmarian-college-5757816.webp'); }
.ws-card--governance .ws-card-bg{ background-color: #0d2248; background-image: url('assets/images/linfer3-westminster-abby-2784150.webp'); }

/* ================================================
   PUBLICATION CARDS
   ================================================ */

.pub-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #0F2A5E;
  background: rgba(15, 42, 94, 0.08);
  padding: 5px 12px;
  border-radius: 2px;
  margin-bottom: 18px;
}

.pub-badge--governance { background: rgba(15, 42, 94, 0.09); }
.pub-badge--defence    { background: rgba(60, 80, 130, 0.09); }
.pub-badge--education  { background: rgba(30, 60, 110, 0.09); }

.pub-meta {
  font-size: 12px;
  font-weight: 600;
  color: #80807E;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.pub-title {
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.15;
  color: #0F2A5E;
  margin-bottom: 12px;
}

.pub-subtitle {
  font-size: 16px;
  font-weight: 300;
  line-height: 1.65;
  color: #0F2A5E;
  opacity: 0.7;
  margin-bottom: 24px;
  max-width: 640px;
}

/* ================================================
   PDF VIEWER
   ================================================ */

.pdf-viewer-wrap {
  background: #E8EAF0;
  border-radius: 4px 4px 0 0;
  padding: 16px;
  box-shadow: 0 4px 32px rgba(15, 42, 94, 0.13);
}

.pdf-viewer-bar-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 0 14px;
  margin-bottom: 0;
}

.pdf-viewer-title-bar {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: #0F2A5E;
  opacity: 0.6;
}

.pdf-iframe {
  width: 100%;
  height: 78vh;
  min-height: 620px;
  border: none;
  display: block;
  border-radius: 2px;
  background: white;
}

.pdf-download-bar {
  background: #0F2A5E;
  padding: 18px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-radius: 0 0 4px 4px;
}

.pdf-download-bar-info {
  color: rgba(253,254,255,0.72);
  font-size: 13px;
  font-weight: 400;
}

.pdf-download-bar-info strong {
  color: #FDFEFF;
  font-weight: 600;
}

.btn-download {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #FDFEFF;
  color: #0F2A5E;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 12px 24px;
  border-radius: 2px;
  transition: opacity 0.2s, transform 0.15s;
}

.btn-download:hover {
  opacity: 0.9;
  transform: translateY(-1px);
}

.btn-download svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}

/* ================================================
   FEATURED PUBLICATION STRIP
   ================================================ */

.featured-pub {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 64px;
  align-items: start;
  margin-bottom: 48px;
}

.featured-pub-cover {
  aspect-ratio: 3/4;
  background: #D6DAE6;
  border-radius: 3px;
  overflow: hidden;
  box-shadow: 0 8px 40px rgba(15,42,94,0.12);
}

.featured-pub-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ================================================
   WORKSTREAM CONTENT (sub-pages)
   ================================================ */

.ws-content {
  max-width: 800px;
}

.ws-future-work {
  margin-top: 56px;
}

.ws-future-work-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #80807E;
  margin-bottom: 24px;
}

.ws-future-items {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.ws-future-item {
  padding: 26px 0;
  border-bottom: 1px solid rgba(15,42,94,0.1);
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

.ws-future-item:first-child {
  border-top: 1px solid rgba(15,42,94,0.1);
}

.ws-future-item-num {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: #80807E;
  flex-shrink: 0;
  margin-top: 3px;
  width: 24px;
}

.ws-future-item-text {
  font-size: 18px;
  font-weight: 400;
  line-height: 1.5;
  color: #0F2A5E;
}

.ws-future-item-text em {
  font-weight: 300;
  font-style: italic;
}

/* Publications linked from sub-page */
.ws-publications {
  margin-top: 56px;
  padding-top: 56px;
  border-top: 2px solid rgba(15,42,94,0.08);
}

.ws-pub-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 28px;
  background: rgba(15,42,94,0.04);
  border-left: 3px solid #0F2A5E;
  border-radius: 0 3px 3px 0;
  gap: 24px;
  transition: background 0.2s;
}

.ws-pub-card:hover {
  background: rgba(15,42,94,0.07);
}

.ws-pub-card-title {
  font-size: 17px;
  font-weight: 700;
  color: #0F2A5E;
  margin-bottom: 4px;
}

.ws-pub-card-authors {
  font-size: 13px;
  color: #80807E;
  font-weight: 400;
}

.ws-pub-card-link {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #0F2A5E;
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: gap 0.2s;
}

.ws-pub-card:hover .ws-pub-card-link {
  gap: 14px;
}

/* ================================================
   FOOTER
   ================================================ */

.site-footer {
  background: #0F2A5E;
  color: rgba(253,254,255,0.65);
  padding: 56px 64px;
}

.site-footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 48px;
}

.footer-brand p {
  font-size: 13px;
  font-weight: 300;
  line-height: 1.7;
  margin-top: 14px;
  max-width: 280px;
}

.footer-nav-title {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(253,254,255,0.4);
  margin-bottom: 16px;
}

.footer-nav-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-nav-list a {
  font-size: 14px;
  font-weight: 400;
  color: rgba(253,254,255,0.65);
  transition: color 0.2s;
}

.footer-nav-list a:hover {
  color: #FDFEFF;
}

.footer-divider {
  border: none;
  border-top: 1px solid rgba(253,254,255,0.1);
  margin: 40px 0 28px;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  color: rgba(253,254,255,0.35);
}

/* ================================================
   LANDING — INTRO STRIP
   ================================================ */

.intro-strip {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.intro-strip-text {}

.intro-strip-image {
  height: 380px;
  background: #D6DAE6;
  border-radius: 3px;
  overflow: hidden;
}

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

/* Three-pillar row on landing */
.pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: rgba(15,42,94,0.08);
  margin-top: 56px;
}

.pillar {
  background: #FDFEFF;
  padding: 36px 28px;
  transition: background 0.2s;
}

.pillar:hover {
  background: rgba(15,42,94,0.03);
}

.pillar-icon {
  width: 36px;
  height: 2px;
  background: #0F2A5E;
  margin-bottom: 22px;
}

.pillar-title {
  font-size: 18px;
  font-weight: 700;
  color: #0F2A5E;
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}

.pillar-text {
  font-size: 14px;
  font-weight: 300;
  line-height: 1.7;
  color: #0F2A5E;
  opacity: 0.7;
  margin-bottom: 20px;
}

.pillar-link {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #0F2A5E;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: gap 0.2s;
}

.pillar-link:hover {
  gap: 14px;
}

/* ================================================
   LATEST PUBLICATION (landing page)
   ================================================ */

.latest-pub-strip {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 48px;
  align-items: center;
  background: #0F2A5E;
  padding: 52px 64px;
  max-width: 100%;
}

.latest-pub-cover {
  width: 120px;
  flex-shrink: 0;
  aspect-ratio: 3/4;
  background: rgba(255,255,255,0.12);
  border-radius: 2px;
  overflow: hidden;
}

.latest-pub-info {
  color: #FDFEFF;
}

.latest-pub-info .pub-badge {
  background: rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.8);
}

.latest-pub-title {
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin-bottom: 10px;
}

.latest-pub-desc {
  font-size: 15px;
  font-weight: 300;
  line-height: 1.65;
  color: rgba(253,254,255,0.72);
  max-width: 560px;
  margin-bottom: 24px;
}

.btn-read {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 1.5px solid rgba(253,254,255,0.4);
  color: #FDFEFF;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 12px 24px;
  border-radius: 2px;
  transition: border-color 0.2s, background 0.2s;
}

.btn-read:hover {
  border-color: rgba(253,254,255,0.9);
  background: rgba(253,254,255,0.07);
}



/* ================================================
   PRESS RELEASES
   ================================================ */

.press-list {
  max-width: 980px;
  margin: 0 auto;
  display: grid;
  gap: 22px;
}

.press-card {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 28px;
  align-items: center;
  padding: 34px 36px;
  background: #FDFEFF;
  border: 1px solid rgba(15,42,94,0.10);
  border-left: 3px solid #0F2A5E;
  border-radius: 3px;
  box-shadow: 0 8px 30px rgba(15,42,94,0.06);
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.press-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 38px rgba(15,42,94,0.10);
  background: rgba(15,42,94,0.02);
}

.press-card-meta {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #80807E;
  margin-bottom: 10px;
}

.press-card-title {
  font-size: clamp(22px, 2.4vw, 30px);
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: #0F2A5E;
  margin-bottom: 10px;
}

.press-card-summary {
  font-size: 15px;
  font-weight: 300;
  line-height: 1.65;
  color: rgba(15,42,94,0.75);
  max-width: 680px;
}

.press-card-cta {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #0F2A5E;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.press-release-wrap {
  max-width: 880px;
  margin: 0 auto;
  background: #FDFEFF;
  border: 1px solid rgba(15,42,94,0.10);
  border-radius: 3px;
  box-shadow: 0 10px 36px rgba(15,42,94,0.07);
  padding: 56px 64px;
}

.press-release-kicker {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #80807E;
  margin-bottom: 18px;
}

.press-release-title {
  font-size: clamp(30px, 4vw, 48px);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.1;
  color: #0F2A5E;
  margin-bottom: 28px;
}

.press-release-body p,
.press-release-body li {
  font-size: 17px;
  line-height: 1.72;
  color: rgba(15,42,94,0.88);
}

.press-release-body p {
  margin-bottom: 20px;
}

.press-release-body ul {
  margin: 8px 0 28px 22px;
}

.press-release-body li {
  padding-left: 8px;
  margin-bottom: 12px;
}

.press-release-body h2 {
  font-size: 20px;
  color: #0F2A5E;
  letter-spacing: -0.01em;
  margin: 38px 0 16px;
}

.press-release-quote {
  border-left: 3px solid #0F2A5E;
  padding: 18px 0 18px 24px;
  margin: 26px 0;
  background: rgba(15,42,94,0.035);
}

.press-release-quote p {
  font-size: 18px;
  line-height: 1.65;
  color: #0F2A5E;
  margin-bottom: 0;
}

.press-release-note-box {
  margin-top: 42px;
  padding-top: 28px;
  border-top: 2px solid rgba(15,42,94,0.10);
}

.press-release-note-box p {
  font-size: 15px;
  line-height: 1.65;
  color: rgba(15,42,94,0.82);
  margin-bottom: 14px;
}

.press-release-note-box a {
  color: #0F2A5E;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
  font-weight: 700;
}

.press-release-note-box a:hover,
.press-release-body a:hover {
  opacity: 0.75;
}

.press-release-body a {
  color: #0F2A5E;
  text-decoration: underline;
  text-underline-offset: 3px;
  font-weight: 700;
}

.press-release-logo-panel {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #0F2A5E;
  padding: 18px 22px;
  margin-top: 28px;
  border-radius: 2px;
}

.press-release-logo {
  width: 240px;
  opacity: 0.98;
}

@media (max-width: 768px) {
  .press-card { grid-template-columns: 1fr; padding: 28px 24px; }
  .press-release-wrap { padding: 38px 24px; }
}

/* ================================================
   UTILITY
   ================================================ */

.mt-sm  { margin-top: 16px; }
.mt-md  { margin-top: 32px; }
.mt-lg  { margin-top: 56px; }
.visually-hidden {
  position: absolute;
  width: 1px; height: 1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
}

/* ================================================
   RESPONSIVE
   ================================================ */

@media (max-width: 960px) {
  .section { padding: 64px 32px; }
  .site-nav { padding: 0 20px; }
  .site-footer { padding: 48px 32px; }
  .ws-grid { grid-template-columns: 1fr; }
  .ws-card { height: 300px; }
  .intro-strip { grid-template-columns: 1fr; gap: 40px; }
  .intro-strip-image { height: 260px; }
  .pillars { grid-template-columns: 1fr; }
  .site-footer-inner { grid-template-columns: 1fr; gap: 36px; }
  .featured-pub { grid-template-columns: 1fr; gap: 32px; }
  .latest-pub-strip { padding: 40px 32px; }
}

@media (max-width: 640px) {
  .nav-right { display: none; }
  .hero-title { font-size: 32px; }
  .ws-hero { height: 300px; }
  .ws-hero-content { padding: 0 24px 36px; }
  .page-header { padding: 56px 24px 44px; }
  .latest-pub-strip { grid-template-columns: 1fr; }
  .latest-pub-cover { width: 80px; }
}
