/* ================================================================
   SINGLE AWARD POST TEMPLATE
   Figma: node 2799:8038 (hero) · 2799:8045 (content)
   Depends on: history-awards.css (ha-hero base styles)
   ================================================================ */


/* ================================================================
   S1 — HERO — eyebrow pill override
   Figma: navy pill (#071D49) + white text, centered layout.
   The archive page uses teal; single award uses navy.
   ================================================================ */

.sa-hero .ha-hero__eyebrow {
  background: var(--color-primary, #071D49);
  color: #fff;
}

.sa-hero .ha-hero__card {
  min-height: 376px;
  padding: 115px 118px;
  justify-content: center;
  align-items: center;
}

.sa-hero .ha-hero__content {
  align-items: center;
  text-align: center;
}

.sa-body .gallery {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

/* ── Responsive — tablet ≤1024px ─────────────────────────────── */

@media (max-width: 1024px) {
  .sa-hero .ha-hero__card { min-height: 320px; padding: 80px 40px; }
}

/* ── Responsive — mobile ≤767px ──────────────────────────────── */

@media (max-width: 767px) {
  .sa-hero .ha-hero__card { min-height: 260px; padding: 64px 20px; }
}


/* ================================================================
   S2 — CONTENT SECTION
   Figma: node 2799:8045
   #E8EDF6 inset card — image · standfirst · wysiwyg body · share
   ================================================================ */

/* ── Outer wrapper ───────────────────────────────────────────── */

.sa-content {
  max-width: 1440px;
  margin: -70px auto 0;
  padding: 0 var(--site-px) var(--site-py-flush);
  position: relative;
  z-index: 2;
}

/* ── #E8EDF6 rounded card ────────────────────────────────────── */

.sa-content__card {
  background: var(--color-stroke, #E8EDF6);
  border-radius: 32px;
  padding: 64px;
}

/* ── Inner content column ────────────────────────────────────── */

.sa-content__inner {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

/* ── Content image ───────────────────────────────────────────── */

.sa-content__img-wrap {
  width: 100%;
  border-radius: 12px;
  overflow: hidden;
  height: 200px;
}

.sa-content__img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  display: block;
}

/* ── Standfirst ──────────────────────────────────────────────── */

.sa-standfirst {
  font-family: var(--font-body, 'Rubik', sans-serif);
  font-size: 18px;
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: 0.01em;
  color: var(--color-text, #1E153D);
  margin: 0;
}

/* ── Post body (WYSIWYG output) ──────────────────────────────── */

.sa-body {
  display: flex;
  flex-direction: column;
  gap: 16px;
  color: var(--color-text, #1E153D);
}

.sa-body h2 {
  font-family: var(--font-heading, 'Playfair Display', serif);
  font-size: 24px;
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: 0.03em;
  color: var(--color-text, #1E153D);
  margin: 8px 0 0;
}

.sa-body h3 {
  font-family: var(--font-heading, 'Playfair Display', serif);
  font-size: 20px;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: 0.02em;
  color: var(--color-text, #1E153D);
  margin: 8px 0 0;
}

.sa-body h4 {
  font-family: var(--font-body, 'Rubik', sans-serif);
  font-size: 18px;
  font-weight: 500;
  color: var(--color-text, #1E153D);
  margin: 8px 0 0;
}

.sa-body p {
  font-family: 'Open Sans', var(--font-body, 'Rubik', sans-serif);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.4;
  color: var(--color-text, #1E153D);
  margin: 0;
}

.sa-body ul,
.sa-body ol {
  font-family: 'Open Sans', var(--font-body, 'Rubik', sans-serif);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  color: var(--color-text, #1E153D);
  padding-left: 24px;
  margin: 0;
}

.sa-body li { margin-bottom: 4px; }

.sa-body a {
  color: var(--color-teal, #4FBEBE);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.sa-body a:hover { opacity: 0.8; }

.sa-body strong { font-weight: 600; }
.sa-body em     { font-style: italic; }

.sa-body img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 12px;
}

.sa-body figure {
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.sa-body figcaption {
  font-family: 'Open Sans', var(--font-body, 'Rubik', sans-serif);
  font-size: 13px;
  color: #5a5f6e;
  text-align: center;
}

.sa-body blockquote {
  background: #f0fbfb;
  border-left: 3px solid var(--color-teal, #4FBEBE);
  border-radius: 8px;
  padding: 16px 20px;
  margin: 0;
}

.sa-body blockquote p {
  font-size: 14px;
  font-style: italic;
  color: #5a5f6e;
  line-height: 1.5;
  margin: 0;
}

.sa-body hr {
  border: none;
  border-top: 1px solid #c2cde1;
  margin: 8px 0;
}

/* ── Share bar ───────────────────────────────────────────────── */

.sa-share {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  padding: 20px 0;
  border-top: 1px solid #c2cde1;
  border-bottom: 1px solid #c2cde1;
}

.sa-share__btn {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--color-primary, #071D49);
  color: #fff;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: opacity 0.2s ease, transform 0.15s ease;
  flex-shrink: 0;
}

.sa-share__btn:hover { opacity: 0.8; transform: scale(1.08); }

.sa-share__btn--copy.is-copied {
  background: var(--color-teal, #4FBEBE);
}

/* ── Responsive — tablet ≤1024px ─────────────────────────────── */

@media (max-width: 1024px) {
  .sa-content { padding: 0;
        margin-top: 0; }

  .sa-content__card { padding: 48px 40px; border-radius: 0; }

  .sa-standfirst { font-size: 16px; }

  .sa-body h2 { font-size: 22px; }

  .sa-body img { height: 300px; }

  .sa-content__img-wrap { height: 160px; }
}

/* ── Responsive — mobile ≤767px ──────────────────────────────── */

@media (max-width: 767px) {
  .sa-content { padding: 0; }

  .sa-content__card {
    border-radius: 0;
    padding: 32px var(--site-px, 20px);
  }

  .sa-content__inner { gap: 20px; }

  .sa-standfirst { font-size: 15px; }

  .sa-body h2 { font-size: 20px; }

  .sa-body img { height: 220px; }

  .sa-content__img-wrap { height: 140px; }

  .sa-share { justify-content: flex-start; }
}


/* ================================================================
   S3 — CTA BANNER
   Figma: node 2799:8074
   White section, dark gradient rounded card inside.
   ================================================================ */

.sa-cta {
  background: #fff;
  padding-top: var(--site-py-flush);
  padding-bottom: var(--site-py);
}

/* ── Dark rounded card ───────────────────────────────────────── */

.sa-cta__card {
  position: relative;
  border-radius: 32px;
  overflow: hidden;
  padding: 80px 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0px 0px 14px rgba(0, 0, 0, 0.1);
}

/* ── Background layers ───────────────────────────────────────── */

.sa-cta__bg { position: absolute; inset: 0; }

.sa-cta__bg-dark {
  position: absolute;
  inset: 0;
  background: #060f20;
  opacity: 0.89;
}

.sa-cta__bg-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(129.25deg, #4FBEBE 24.4%, #071D49 70%, #1E153D 94%);
  opacity: 0.35;
  filter: blur(37px);
}

/* ── Content stack ───────────────────────────────────────────── */

.sa-cta__content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 32px;
}

/* ── Eyebrow — solid teal pill ───────────────────────────────── */

.sa-cta__eyebrow {
  display: inline-block;
  background: var(--color-teal, #4FBEBE);
  color: var(--color-text, #1E153D);
  font-family: var(--font-body, 'Rubik', sans-serif);
  font-size: 16px;
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  border-radius: 99px;
  padding: 8px 16px;
}

/* ── Heading ─────────────────────────────────────────────────── */

.sa-cta__heading {
  font-family: var(--font-heading, 'Playfair Display', serif);
  font-size: 40px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.02em;
  color: #fff;
  max-width: 775px;
  margin: 0;
}

/* ── Body ────────────────────────────────────────────────────── */

.sa-cta__body {
  font-family: var(--font-body, 'Rubik', sans-serif);
  font-size: 14px;
  font-weight: 300;
  line-height: 1.4;
  color: #fff;
  max-width: 628px;
  margin: 0;
}

/* ── Button row ──────────────────────────────────────────────── */

.sa-cta__btns {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
}

/* "Get in Touch" — light pill */
.sa-cta__btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--color-stroke, #E8EDF6);
  color: var(--color-text, #1E153D);
  font-family: var(--font-body, 'Rubik', sans-serif);
  font-size: 16px;
  font-weight: 400;
  line-height: 1;
  border-radius: 999px;
  padding: 12px 24px;
  text-decoration: none;
  transition: opacity 0.2s ease;
}

.sa-cta__btn:hover { opacity: 0.85; }

/* ── Responsive — tablet ≤1024px ─────────────────────────────── */

@media (max-width: 1024px) {
  .sa-cta__card    { padding: 64px 32px; border-radius: 0; }
  .sa-cta__heading { font-size: 32px; }
  .sa-cta {padding: 0;}
}

/* ── Responsive — mobile ≤767px ──────────────────────────────── */

@media (max-width: 767px) {
  .sa-cta__card    { padding: 48px 24px;}
  .sa-cta__content { gap: 24px; }
  .sa-cta__heading { font-size: 26px; }
  .sa-cta__btns    { flex-direction: column; }
}
