@charset "UTF-8";
/* line 1, app/assets/stylesheets/base/_tokens.scss */
:root {
  --si-bg: #fbf9f9;
  --si-bg-soft: #f5f3f3;
  --si-bg-paper: #ffffff;
  --si-ink: #1b1c1c;
  --si-copy: #5c5c5c;
  --si-muted: #a8a29e;
  --si-red: #bc0100;
  --si-red-bright: #dc2626;
  --si-green: #246b40;
  --si-line: #ebbbb4;
  --si-border: #d9d9d9;
  --si-dark: #1b1c1c;
  --si-dark-line: #292524;
  --si-shell: 1253px;
  --si-footer-shell: 946px;
  --si-gutter: 24px;
  --si-section-gutter: 48px;
  --si-divider-soft: #ebebeb;
  --si-divider-inverse: rgba(255, 255, 255, 0.12);
  --si-motion-fast: 160ms;
  --si-motion-base: 280ms;
  --si-motion-slow: 520ms;
  --si-motion-hero: 720ms;
  --si-ease-standard: cubic-bezier(0.22, 1, 0.36, 1);
  --si-ease-soft: cubic-bezier(0.25, 0.1, 0.25, 1);
  --si-motion-distance-sm: 16px;
  --si-motion-distance-lg: 32px;
  --si-font-display: "Epilogue", sans-serif;
  --si-font-heading: "Public Sans", sans-serif;
  --si-font-body: "Inter", sans-serif;
  --si-font-serif: "Newsreader", serif;
  --si-font-editorial: "Lora", serif;
  --si-font-accent: "Open Sans", sans-serif;
}

/* line 2, app/assets/stylesheets/base/_base.scss */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* line 8, app/assets/stylesheets/base/_base.scss */
html,
body {
  margin: 0;
  padding: 0;
}

/* line 14, app/assets/stylesheets/base/_base.scss */
html {
  scroll-behavior: smooth;
  scroll-padding-top: 156px;
}

/* line 19, app/assets/stylesheets/base/_base.scss */
.site-body {
  background: var(--si-bg);
  color: var(--si-ink);
  font-family: var(--si-font-body);
  min-height: 100vh;
}

/* line 26, app/assets/stylesheets/base/_base.scss */
a {
  color: inherit;
}

/* line 30, app/assets/stylesheets/base/_base.scss */
img,
svg,
iframe,
video {
  max-width: 100%;
}

/* line 37, app/assets/stylesheets/base/_base.scss */
.page,
.site-header__main,
.site-footer__main,
.site-footer__bottom {
  margin: 0 auto;
  max-width: calc(var(--si-shell) + (var(--si-gutter) * 2));
  padding-left: var(--si-gutter);
  padding-right: var(--si-gutter);
  width: 100%;
}

/* line 48, app/assets/stylesheets/base/_base.scss */
.page {
  margin-bottom: 64px;
}

/* line 52, app/assets/stylesheets/base/_base.scss */
.page:not(.page--homepage) {
  margin-top: 48px;
}

/* line 56, app/assets/stylesheets/base/_base.scss */
.site-body--nav-open {
  overflow: hidden;
}

@media (max-width: 760px) {
  /* line 61, app/assets/stylesheets/base/_base.scss */
  html {
    scroll-padding-top: 112px;
  }
  /* line 65, app/assets/stylesheets/base/_base.scss */
  .page {
    padding-left: 16px;
    padding-right: 16px;
  }
  /* line 70, app/assets/stylesheets/base/_base.scss */
  .site-body {
    overflow-x: clip;
  }
  /* line 74, app/assets/stylesheets/base/_base.scss */
  h1,
h2,
h3,
h4,
p,
a,
li,
dt,
dd,
blockquote {
    overflow-wrap: anywhere;
  }
}

@media (prefers-reduced-motion: reduce) {
  /* line 89, app/assets/stylesheets/base/_base.scss */
  * {
    animation: none !important;
    scroll-behavior: auto !important;
    transition: none !important;
  }
}

/* line 1, app/assets/stylesheets/components/_buttons.scss */
.button {
  align-items: center;
  border: 1px solid var(--si-border);
  display: inline-flex;
  font-family: var(--si-font-heading);
  font-size: 10px;
  font-weight: 700;
  justify-content: center;
  letter-spacing: 1px;
  line-height: 15px;
  min-height: 40px;
  padding: 10px 24px;
  text-decoration: none;
  text-transform: uppercase;
  transition: background-color var(--si-motion-fast) var(--si-ease-soft), border-color var(--si-motion-fast) var(--si-ease-soft), box-shadow var(--si-motion-fast) var(--si-ease-soft), color var(--si-motion-fast) var(--si-ease-soft), transform var(--si-motion-fast) var(--si-ease-standard);
}

/* line 23, app/assets/stylesheets/components/_buttons.scss */
.button--large {
  min-height: 52px;
  padding: 12px 26px;
}

/* line 28, app/assets/stylesheets/components/_buttons.scss */
.button--donate {
  background: var(--si-red-bright);
  border-color: var(--si-red-bright);
  color: #fff;
}

/* line 34, app/assets/stylesheets/components/_buttons.scss */
.button--donate:hover {
  background: var(--si-red);
  border-color: var(--si-red);
  box-shadow: 0 18px 30px rgba(188, 1, 0, 0.18);
  transform: translateY(-2px);
}

/* line 41, app/assets/stylesheets/components/_buttons.scss */
.button--secondary {
  background: #fff;
  border-color: #d6d3d1;
  color: var(--si-ink);
}

/* line 47, app/assets/stylesheets/components/_buttons.scss */
.button--secondary:hover {
  background: var(--si-ink);
  border-color: var(--si-ink);
  color: #fff;
  box-shadow: 0 18px 30px rgba(27, 28, 28, 0.12);
  transform: translateY(-2px);
}

/* line 55, app/assets/stylesheets/components/_buttons.scss */
.button--campaign {
  background: var(--si-green);
  border-color: var(--si-green);
  color: #fff;
}

/* line 61, app/assets/stylesheets/components/_buttons.scss */
.button--campaign:hover {
  background: #1a5030;
  border-color: #1a5030;
  box-shadow: 0 18px 30px rgba(36, 107, 64, 0.16);
  transform: translateY(-2px);
}

/* line 68, app/assets/stylesheets/components/_buttons.scss */
.button:focus-visible,
.site-header__menu-toggle:focus-visible,
.site-header__drawer-link:focus-visible,
.site-header__drawer-close:focus-visible,
.site-header__drawer-contact:focus-visible,
.site-header__nav-link:focus-visible,
.site-footer__link:focus-visible,
.site-footer__brand-link:focus-visible,
.site-footer__social-link:focus-visible,
.site-footer__contact-link:focus-visible,
.home-latest__header-link:focus-visible,
.home-latest__title-link:focus-visible,
.lead-story__title-link:focus-visible,
.home-section-title__link:focus-visible,
.home-action-card__title-link:focus-visible,
.home-action-card__link:focus-visible,
.home-cta__primary:focus-visible,
.home-cta__secondary:focus-visible,
.story-card__title-link:focus-visible,
.catalogue-card__title-link:focus-visible,
.event-card__title-link:focus-visible,
.campaign-card__title-link:focus-visible,
.news-chip:focus-visible,
.news-masthead__reset:focus-visible,
.news-rail__reset:focus-visible,
.news-lead__title-link:focus-visible,
.news-lead__cta:focus-visible,
.news-rail-card__title-link:focus-visible,
.news-feature-card__title-link:focus-visible,
.news-compact-card__title-link:focus-visible,
.news-pagination__link:focus-visible,
.news-filter-bar__link:focus-visible,
.news-related__title-link:focus-visible,
.news-calendar__page:focus-visible,
.article-detail__back:focus-visible,
.article-followup__back:focus-visible,
.article-share__button:focus-visible,
.collection-catalogue__jump-link:focus-visible,
.collection-catalogue__collapse-summary:focus-visible,
.event-template__sticky-button:focus-visible {
  outline: 2px solid var(--si-red);
  outline-offset: 3px;
}

/* line 1, app/assets/stylesheets/components/_cards.scss */
.news-featured,
.campaigns-featured {
  margin-bottom: 24px;
}

/* line 6, app/assets/stylesheets/components/_cards.scss */
.news-grid,
.campaigns-grid {
  display: grid;
  gap: 32px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

/* line 13, app/assets/stylesheets/components/_cards.scss */
.story-card {
  background: var(--si-bg-paper);
  border: 1px solid var(--si-border);
  display: grid;
  min-width: 0;
}

/* line 20, app/assets/stylesheets/components/_cards.scss */
.story-card__media-link {
  background: var(--si-bg-soft);
  display: block;
  overflow: hidden;
}

/* line 26, app/assets/stylesheets/components/_cards.scss */
.story-card__media {
  aspect-ratio: 16 / 10;
  display: block;
  object-fit: cover;
  transition: transform 220ms ease;
  width: 100%;
}

/* line 34, app/assets/stylesheets/components/_cards.scss */
.story-card:hover .story-card__media {
  transform: scale(1.03);
}

/* line 38, app/assets/stylesheets/components/_cards.scss */
.story-card__content {
  display: grid;
  gap: 12px;
  padding: 22px;
}

/* line 44, app/assets/stylesheets/components/_cards.scss */
.story-card__kicker {
  color: var(--si-red);
  font-family: var(--si-font-body);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1px;
  line-height: 1.2;
  margin: 0;
  text-transform: uppercase;
}

/* line 55, app/assets/stylesheets/components/_cards.scss */
.story-card__title {
  margin: 0;
}

/* line 59, app/assets/stylesheets/components/_cards.scss */
.story-card__title-link {
  color: var(--si-ink);
  font-family: var(--si-font-heading);
  font-size: clamp(1.35rem, 2vw, 1.8rem);
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1.08;
  text-decoration: none;
  text-transform: uppercase;
}

/* line 70, app/assets/stylesheets/components/_cards.scss */
.story-card__title-link:hover {
  text-decoration: underline;
  text-decoration-color: var(--si-red);
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
}

/* line 77, app/assets/stylesheets/components/_cards.scss */
.story-card__summary {
  color: var(--si-copy);
  font-family: var(--si-font-serif);
  font-size: 1rem;
  line-height: 1.6;
  margin: 0;
}

/* line 85, app/assets/stylesheets/components/_cards.scss */
.story-card__meta {
  color: var(--si-muted);
  display: inline-flex;
  flex-wrap: wrap;
  font-family: var(--si-font-body);
  font-size: 11px;
  gap: 8px;
  letter-spacing: 1px;
  line-height: 1.3;
  margin: 0;
  text-transform: uppercase;
}

/* line 98, app/assets/stylesheets/components/_cards.scss */
.story-card--compact {
  grid-template-columns: 88px minmax(0, 1fr);
}

/* line 102, app/assets/stylesheets/components/_cards.scss */
.story-card--compact .story-card__media-link {
  height: 100%;
}

/* line 106, app/assets/stylesheets/components/_cards.scss */
.story-card--compact .story-card__media {
  aspect-ratio: 1;
  height: 100%;
}

/* line 111, app/assets/stylesheets/components/_cards.scss */
.story-card--compact .story-card__content {
  padding: 16px;
}

/* line 115, app/assets/stylesheets/components/_cards.scss */
.story-card--compact .story-card__title-link {
  font-size: 1rem;
  line-height: 1.18;
}

/* line 120, app/assets/stylesheets/components/_cards.scss */
.story-card--compact .story-card__summary {
  display: none;
}

/* line 124, app/assets/stylesheets/components/_cards.scss */
.campaigns-grid-section {
  margin-top: 32px;
}

/* line 128, app/assets/stylesheets/components/_cards.scss */
.campaign-card {
  display: flex;
  flex-direction: column;
}

/* line 133, app/assets/stylesheets/components/_cards.scss */
.campaign-card__media-link {
  display: block;
  margin-bottom: 24px;
}

/* line 138, app/assets/stylesheets/components/_cards.scss */
.campaign-card__media {
  aspect-ratio: 1.333;
  display: block;
  object-fit: cover;
  width: 100%;
}

/* line 145, app/assets/stylesheets/components/_cards.scss */
.campaign-card__content {
  display: flex;
  flex: 1;
  flex-direction: column;
}

/* line 151, app/assets/stylesheets/components/_cards.scss */
.campaign-card__status {
  color: var(--si-red);
  font-family: var(--si-font-body);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1.2px;
  line-height: 16px;
  margin: 0 0 12px;
  text-transform: uppercase;
}

/* line 162, app/assets/stylesheets/components/_cards.scss */
.campaign-card__title {
  margin: 0 0 16px;
}

/* line 166, app/assets/stylesheets/components/_cards.scss */
.campaign-card__title-link {
  color: var(--si-ink);
  font-family: var(--si-font-serif);
  font-size: clamp(1.45rem, 2.3vw, 2rem);
  font-weight: 400;
  line-height: 1.25;
  text-decoration: none;
}

/* line 175, app/assets/stylesheets/components/_cards.scss */
.campaign-card__summary,
.campaign-card__progress {
  color: var(--si-copy);
  font-family: var(--si-font-body);
  line-height: 1.6;
  margin: 0 0 12px;
}

/* line 183, app/assets/stylesheets/components/_cards.scss */
.campaign-card__cta {
  border: 2px solid #000;
  color: var(--si-ink);
  display: block;
  font-family: var(--si-font-display);
  font-size: 16px;
  font-weight: 800;
  letter-spacing: -0.4px;
  line-height: 24px;
  margin-top: auto;
  padding: 18px 8px;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
}

/* line 199, app/assets/stylesheets/components/_cards.scss */
.campaign-card__cta:hover {
  background: var(--si-ink);
  color: #fff;
}

@media (max-width: 1180px) {
  /* line 205, app/assets/stylesheets/components/_cards.scss */
  .news-grid,
.campaigns-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  /* line 212, app/assets/stylesheets/components/_cards.scss */
  .news-grid,
.campaigns-grid {
    grid-template-columns: 1fr;
  }
}

/* line 218, app/assets/stylesheets/components/_cards.scss */
.catalogue-card {
  background: var(--si-bg-paper);
  border: 1px solid var(--si-border);
  display: grid;
  grid-template-rows: auto 1fr;
  height: 100%;
  min-width: 0;
}

/* line 227, app/assets/stylesheets/components/_cards.scss */
.catalogue-card__media-link {
  background: var(--si-bg-soft);
  display: block;
  overflow: hidden;
}

/* line 233, app/assets/stylesheets/components/_cards.scss */
.catalogue-card__media {
  aspect-ratio: 4 / 3;
  display: block;
  object-fit: cover;
  transition: transform 220ms ease;
  width: 100%;
}

/* line 241, app/assets/stylesheets/components/_cards.scss */
.catalogue-card:hover .catalogue-card__media {
  transform: scale(1.03);
}

/* line 245, app/assets/stylesheets/components/_cards.scss */
.catalogue-card__body {
  display: grid;
  gap: 18px;
  grid-template-rows: auto auto auto 1fr;
  padding: 22px;
}

/* line 252, app/assets/stylesheets/components/_cards.scss */
.catalogue-card__top {
  align-items: start;
  display: grid;
  gap: 16px;
  grid-template-columns: 72px minmax(0, 1fr);
}

/* line 259, app/assets/stylesheets/components/_cards.scss */
.catalogue-card__stamp {
  align-content: center;
  aspect-ratio: 1;
  background: var(--si-bg-soft);
  border: 1px solid var(--si-border);
  display: grid;
  justify-items: center;
  padding: 8px 6px;
  text-align: center;
}

/* line 270, app/assets/stylesheets/components/_cards.scss */
.catalogue-card__stamp-value {
  color: var(--si-ink);
  font-family: var(--si-font-display);
  font-size: clamp(1.35rem, 2vw, 1.75rem);
  font-weight: 800;
  letter-spacing: -0.05em;
  line-height: 1;
}

/* line 279, app/assets/stylesheets/components/_cards.scss */
.catalogue-card__stamp-label {
  color: var(--si-muted);
  font-family: var(--si-font-body);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.16em;
  line-height: 1.2;
  margin-top: 6px;
  text-transform: uppercase;
}

/* line 290, app/assets/stylesheets/components/_cards.scss */
.catalogue-card__stamp--text .catalogue-card__stamp-value {
  font-size: 1rem;
  letter-spacing: 0.1em;
}

/* line 295, app/assets/stylesheets/components/_cards.scss */
.catalogue-card__meta-block {
  display: grid;
  gap: 6px;
}

/* line 300, app/assets/stylesheets/components/_cards.scss */
.catalogue-card__eyebrow {
  color: var(--si-red);
  font-family: var(--si-font-body);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.16em;
  line-height: 1.2;
  margin: 0;
  text-transform: uppercase;
}

/* line 311, app/assets/stylesheets/components/_cards.scss */
.catalogue-card__detail {
  color: var(--si-muted);
  display: inline-flex;
  flex-wrap: wrap;
  font-family: var(--si-font-body);
  font-size: 12px;
  gap: 8px;
  letter-spacing: 0.08em;
  line-height: 1.4;
  margin: 0;
  text-transform: uppercase;
}

/* line 324, app/assets/stylesheets/components/_cards.scss */
.catalogue-card__title {
  margin: 0;
}

/* line 328, app/assets/stylesheets/components/_cards.scss */
.catalogue-card__title-link {
  color: var(--si-ink);
  font-family: var(--si-font-heading);
  font-size: clamp(1.18rem, 1.9vw, 1.5rem);
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1.08;
  text-decoration: none;
  text-transform: uppercase;
}

/* line 339, app/assets/stylesheets/components/_cards.scss */
.catalogue-card__title-link:hover {
  text-decoration: underline;
  text-decoration-color: var(--si-red);
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
}

/* line 346, app/assets/stylesheets/components/_cards.scss */
.catalogue-card__summary,
.catalogue-card__supporting {
  color: var(--si-copy);
  font-family: var(--si-font-body);
  line-height: 1.65;
  margin: 0;
}

/* line 354, app/assets/stylesheets/components/_cards.scss */
.catalogue-card__summary {
  font-size: 0.98rem;
}

/* line 358, app/assets/stylesheets/components/_cards.scss */
.catalogue-card__supporting {
  font-size: 0.92rem;
}

/* line 362, app/assets/stylesheets/components/_cards.scss */
.catalogue-card__footer {
  align-content: end;
  display: grid;
  gap: 16px;
}

/* line 368, app/assets/stylesheets/components/_cards.scss */
.catalogue-card__button {
  border: 2px solid var(--si-ink);
  color: var(--si-ink);
  display: block;
  font-family: var(--si-font-display);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin-top: auto;
  padding: 16px 10px;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
}

/* line 384, app/assets/stylesheets/components/_cards.scss */
.catalogue-card__button:hover {
  background: var(--si-ink);
  color: #fff;
}

/* line 389, app/assets/stylesheets/components/_cards.scss */
.catalogue-card--past .catalogue-card__media {
  filter: saturate(0.55);
}

/* line 393, app/assets/stylesheets/components/_cards.scss */
.catalogue-card--past .catalogue-card__eyebrow,
.catalogue-card--past .catalogue-card__detail,
.catalogue-card--past .catalogue-card__stamp-label {
  color: var(--si-muted);
}

@media (max-width: 760px) {
  /* line 400, app/assets/stylesheets/components/_cards.scss */
  .catalogue-card__body {
    gap: 16px;
    padding: 18px;
  }
  /* line 405, app/assets/stylesheets/components/_cards.scss */
  .catalogue-card__top {
    grid-template-columns: 64px minmax(0, 1fr);
  }
  /* line 409, app/assets/stylesheets/components/_cards.scss */
  .catalogue-card__summary {
    font-size: 0.95rem;
    line-height: 1.55;
  }
  /* line 414, app/assets/stylesheets/components/_cards.scss */
  .catalogue-card__supporting {
    font-size: 0.88rem;
  }
  /* line 418, app/assets/stylesheets/components/_cards.scss */
  .catalogue-card__button {
    min-height: 48px;
    padding: 14px 10px;
    width: 100%;
  }
}

/* line 1, app/assets/stylesheets/layouts/_header.scss */
.site-header {
  --site-header-border-soft: rgba(27, 28, 28, 0.08);
  --site-header-logo-size: clamp(92px, 7vw, 116px);
  --site-header-drawer-logo-size: 60px;
  --site-header-main-gap: 22px;
  --site-header-main-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  --site-header-main-min-height: 142px;
  --site-header-main-padding-block: 12px;
  --site-header-nav-gap: 22px;
  --site-header-nav-padding-top: 7px;
  --site-header-nav-padding-bottom: 9px;
  --site-header-nav-link-font-size: 18px;
  --site-header-nav-link-letter-spacing: 1px;
  --site-header-nav-link-padding-block: 6px;
  --site-header-actions-padding-left: 18px;
  --site-header-donate-font-size: 10px;
  --site-header-donate-min-height: 48px;
  --site-header-donate-padding-x: 24px;
  --site-header-menu-toggle-font-size: 11px;
  --site-header-menu-toggle-letter-spacing: 1.2px;
  --site-header-menu-toggle-min-height: 46px;
  --site-header-menu-toggle-padding-x: 16px;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--site-header-border-soft);
  border-top: 8px solid var(--si-border);
  box-shadow: 0 16px 34px rgba(15, 23, 42, 0.08);
  margin-bottom: 0;
  position: sticky;
  top: 0;
  transition: background-color var(--si-motion-base) var(--si-ease-soft), box-shadow var(--si-motion-base) var(--si-ease-soft), border-color var(--si-motion-base) var(--si-ease-soft);
  z-index: 40;
}

/* line 39, app/assets/stylesheets/layouts/_header.scss */
.site-header__main {
  align-items: center;
  display: grid;
  gap: var(--site-header-main-gap);
  grid-template-columns: var(--site-header-main-columns);
  min-height: var(--site-header-main-min-height);
  padding-top: var(--site-header-main-padding-block);
  padding-bottom: var(--site-header-main-padding-block);
  transition: gap 220ms ease, min-height 220ms ease, padding-top 220ms ease, padding-bottom 220ms ease;
}

/* line 50, app/assets/stylesheets/layouts/_header.scss */
.site-header__brand {
  align-items: center;
  display: inline-flex;
  justify-self: start;
  min-width: 0;
  position: relative;
  text-decoration: none;
}

/* line 59, app/assets/stylesheets/layouts/_header.scss */
.site-header__brand::after {
  background: linear-gradient(180deg, rgba(27, 28, 28, 0), rgba(27, 28, 28, 0.16), rgba(27, 28, 28, 0));
  content: "";
  height: 70%;
  position: absolute;
  right: -14px;
  top: 50%;
  transition: opacity 220ms ease, right 220ms ease;
  transform: translateY(-50%);
  width: 1px;
}

/* line 76, app/assets/stylesheets/layouts/_header.scss */
.site-header__brand-image {
  display: block;
  height: var(--site-header-logo-size);
  max-width: none;
  transition: height 220ms ease;
  width: auto;
}

/* line 84, app/assets/stylesheets/layouts/_header.scss */
.site-header__brand-wordmark {
  font-family: var(--si-font-display);
  font-size: 34px;
  font-weight: 900;
  letter-spacing: -0.04em;
  text-transform: uppercase;
}

/* line 92, app/assets/stylesheets/layouts/_header.scss */
.site-header__nav {
  align-items: center;
  display: flex;
  gap: var(--site-header-nav-gap);
  justify-content: center;
  justify-self: center;
  min-width: 0;
  padding: var(--site-header-nav-padding-top) 0 var(--site-header-nav-padding-bottom);
  position: relative;
  text-align: center;
  transition: gap 220ms ease, padding-top 220ms ease, padding-bottom 220ms ease;
}

/* line 105, app/assets/stylesheets/layouts/_header.scss */
.site-header__nav::before,
.site-header__nav::after {
  background: linear-gradient(90deg, rgba(27, 28, 28, 0), rgba(27, 28, 28, 0.16), rgba(27, 28, 28, 0));
  content: "";
  left: 0;
  position: absolute;
  right: 0;
  height: 1px;
}

/* line 120, app/assets/stylesheets/layouts/_header.scss */
.site-header__nav::before {
  top: 0;
}

/* line 124, app/assets/stylesheets/layouts/_header.scss */
.site-header__nav::after {
  bottom: 0;
}

/* line 128, app/assets/stylesheets/layouts/_header.scss */
.site-header__nav-link {
  color: #44403c;
  font-family: var(--si-font-heading);
  font-size: var(--site-header-nav-link-font-size);
  font-weight: 800;
  letter-spacing: var(--site-header-nav-link-letter-spacing);
  line-height: 1;
  padding: var(--site-header-nav-link-padding-block) 3px;
  position: relative;
  text-decoration: none;
  text-transform: uppercase;
  transition: color 180ms ease, font-size 220ms ease, letter-spacing 220ms ease, padding-top 220ms ease, padding-right 220ms ease, padding-bottom 220ms ease, padding-left 220ms ease;
  white-space: nowrap;
}

/* line 150, app/assets/stylesheets/layouts/_header.scss */
.site-header__nav-link::after {
  background: currentColor;
  bottom: -8px;
  content: "";
  height: 2px;
  left: 3px;
  opacity: 0;
  position: absolute;
  right: 3px;
  transform: scaleX(0.5);
  transform-origin: left center;
  transition: opacity var(--si-motion-fast) var(--si-ease-soft), transform var(--si-motion-fast) var(--si-ease-standard);
}

/* line 166, app/assets/stylesheets/layouts/_header.scss */
.site-header__nav-link:hover,
.site-header__nav-link:focus-visible,
.site-header__nav-link--active {
  color: var(--si-red);
}

/* line 172, app/assets/stylesheets/layouts/_header.scss */
.site-header__nav-link:hover::after,
.site-header__nav-link:focus-visible::after,
.site-header__nav-link--active::after {
  opacity: 1;
  transform: scaleX(1);
}

/* line 179, app/assets/stylesheets/layouts/_header.scss */
.site-header__menu-toggle,
.site-header__drawer,
.site-header__mobile-backdrop {
  display: none;
}

/* line 185, app/assets/stylesheets/layouts/_header.scss */
.site-header__actions {
  border-left: 1px solid rgba(27, 28, 28, 0.12);
  justify-self: end;
  padding-left: var(--site-header-actions-padding-left);
  transition: padding-left 220ms ease;
}

/* line 192, app/assets/stylesheets/layouts/_header.scss */
.site-header__donate {
  border-radius: 2px;
  box-shadow: none;
  font-size: var(--site-header-donate-font-size);
  font-weight: 800;
  letter-spacing: 1.3px;
  line-height: 1;
  min-height: var(--site-header-donate-min-height);
  padding: 0 var(--site-header-donate-padding-x);
  transition: background-color var(--si-motion-fast) var(--si-ease-soft), border-color var(--si-motion-fast) var(--si-ease-soft), color var(--si-motion-fast) var(--si-ease-soft), box-shadow var(--si-motion-fast) var(--si-ease-soft), transform var(--si-motion-fast) var(--si-ease-standard), min-height var(--si-motion-base) var(--si-ease-soft), padding-left var(--si-motion-base) var(--si-ease-soft), padding-right var(--si-motion-base) var(--si-ease-soft), font-size var(--si-motion-base) var(--si-ease-soft);
  white-space: nowrap;
}

/* line 214, app/assets/stylesheets/layouts/_header.scss */
.site-header__donate:hover {
  box-shadow: 0 14px 24px rgba(188, 1, 0, 0.18);
  transform: translateY(-2px);
}

/* line 219, app/assets/stylesheets/layouts/_header.scss */
.site-header.is-header-condensed {
  --site-header-logo-size: 70px;
  --site-header-main-gap: 16px;
  --site-header-main-min-height: 96px;
  --site-header-main-padding-block: 8px;
  --site-header-nav-gap: 16px;
  --site-header-nav-padding-top: 5px;
  --site-header-nav-padding-bottom: 7px;
  --site-header-nav-link-font-size: 16px;
  --site-header-nav-link-letter-spacing: 0.94px;
  --site-header-nav-link-padding-block: 5px;
  --site-header-actions-padding-left: 14px;
  --site-header-donate-font-size: 9px;
  --site-header-donate-min-height: 42px;
  --site-header-donate-padding-x: 20px;
  background: rgba(255, 255, 255, 0.97);
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.08);
}

/* line 238, app/assets/stylesheets/layouts/_header.scss */
.site-header.is-header-condensed .site-header__brand::after {
  opacity: 0.7;
  right: -10px;
}

@media (max-width: 1180px) {
  /* line 244, app/assets/stylesheets/layouts/_header.scss */
  .site-header {
    --site-header-logo-size: clamp(82px, 9vw, 102px);
    --site-header-main-gap: 18px;
    --site-header-main-min-height: 124px;
    --site-header-nav-gap: 16px;
    --site-header-nav-link-font-size: 16px;
    --site-header-nav-link-letter-spacing: 0.94px;
    --site-header-actions-padding-left: 16px;
    --site-header-donate-min-height: 44px;
    --site-header-donate-padding-x: 20px;
  }
  /* line 256, app/assets/stylesheets/layouts/_header.scss */
  .site-header.is-header-condensed {
    --site-header-logo-size: 64px;
    --site-header-main-gap: 14px;
    --site-header-main-min-height: 88px;
    --site-header-nav-gap: 14px;
    --site-header-nav-link-font-size: 15px;
    --site-header-actions-padding-left: 12px;
    --site-header-donate-min-height: 40px;
    --site-header-donate-padding-x: 16px;
  }
}

@media (max-width: 980px) {
  /* line 269, app/assets/stylesheets/layouts/_header.scss */
  .site-header {
    --site-header-logo-size: 72px;
    --site-header-main-gap: 12px;
    --site-header-main-min-height: 110px;
    --site-header-nav-gap: 12px;
    --site-header-nav-link-font-size: 15px;
    --site-header-nav-link-letter-spacing: 0.86px;
    --site-header-nav-link-padding-block: 5px;
    --site-header-actions-padding-left: 12px;
    --site-header-donate-font-size: 9px;
    --site-header-donate-min-height: 40px;
    --site-header-donate-padding-x: 16px;
  }
  /* line 283, app/assets/stylesheets/layouts/_header.scss */
  .site-header.is-header-condensed {
    --site-header-logo-size: 58px;
    --site-header-main-min-height: 82px;
    --site-header-nav-gap: 10px;
    --site-header-nav-link-font-size: 14px;
    --site-header-nav-link-letter-spacing: 0.78px;
    --site-header-donate-min-height: 36px;
    --site-header-donate-padding-x: 14px;
  }
  /* line 293, app/assets/stylesheets/layouts/_header.scss */
  .site-header__brand::after {
    right: -8px;
  }
}

/* line 298, app/assets/stylesheets/layouts/_header.scss */
.breaking-strip {
  background: var(--si-red-bright);
  color: #fff;
  margin-top: 12px;
}

/* line 304, app/assets/stylesheets/layouts/_header.scss */
.breaking-strip__content {
  align-items: center;
  display: flex;
  flex-wrap: nowrap;
  gap: 10px;
  margin: 0;
  padding: 12px 0;
}

/* line 313, app/assets/stylesheets/layouts/_header.scss */
.breaking-strip__label {
  border-right: 1px solid rgba(255, 255, 255, 0.3);
  color: #fff;
  font-family: var(--si-font-body);
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  letter-spacing: 0;
  line-height: 24px;
  min-width: 104px;
  padding-right: 16px;
  text-transform: uppercase;
}

/* line 327, app/assets/stylesheets/layouts/_header.scss */
.breaking-strip__link {
  color: #fff;
  font-family: var(--si-font-body);
  font-size: 14px;
  font-style: italic;
  font-weight: 500;
  line-height: 20px;
  padding-left: 32px;
  text-decoration: none;
  white-space: nowrap;
}

/* line 339, app/assets/stylesheets/layouts/_header.scss */
.homepage {
  display: grid;
  gap: 48px;
  margin-bottom: 0;
  overflow-x: clip;
}

@media (max-width: 760px) {
  /* line 347, app/assets/stylesheets/layouts/_header.scss */
  .site-header {
    margin-bottom: 0;
    --site-header-logo-size: 62px;
    --site-header-main-gap: 14px;
    --site-header-main-min-height: 90px;
    --site-header-main-padding-block: 14px;
    --site-header-menu-toggle-font-size: 10px;
    --site-header-menu-toggle-letter-spacing: 1.08px;
    --site-header-menu-toggle-min-height: 44px;
    --site-header-menu-toggle-padding-x: 14px;
  }
  /* line 359, app/assets/stylesheets/layouts/_header.scss */
  .site-header.is-header-condensed {
    --site-header-logo-size: 48px;
    --site-header-main-gap: 10px;
    --site-header-main-min-height: 68px;
    --site-header-main-padding-block: 10px;
    --site-header-menu-toggle-font-size: 9px;
    --site-header-menu-toggle-letter-spacing: 0.98px;
    --site-header-menu-toggle-min-height: 38px;
    --site-header-menu-toggle-padding-x: 12px;
  }
  /* line 370, app/assets/stylesheets/layouts/_header.scss */
  .site-header__main {
    grid-template-columns: minmax(0, 1fr) auto;
    padding-top: calc(var(--site-header-main-padding-block) + env(safe-area-inset-top));
    padding-left: 16px;
    padding-right: 16px;
  }
  /* line 377, app/assets/stylesheets/layouts/_header.scss */
  .site-header__brand::after {
    display: none;
  }
  /* line 381, app/assets/stylesheets/layouts/_header.scss */
  .site-header__brand-image {
    height: var(--site-header-logo-size);
  }
  /* line 385, app/assets/stylesheets/layouts/_header.scss */
  .site-header__brand-wordmark {
    font-size: 26px;
  }
  /* line 389, app/assets/stylesheets/layouts/_header.scss */
  .site-header__nav,
.site-header__actions {
    display: none;
  }
  /* line 394, app/assets/stylesheets/layouts/_header.scss */
  .site-header__menu-toggle {
    align-items: center;
    appearance: none;
    background: #fff;
    border: 1px solid rgba(27, 28, 28, 0.1);
    border-radius: 4px;
    box-shadow: none;
    color: var(--si-ink);
    column-gap: 10px;
    display: inline-grid;
    font-family: var(--si-font-heading);
    font-size: var(--site-header-menu-toggle-font-size);
    font-weight: 800;
    grid-auto-flow: column;
    letter-spacing: var(--site-header-menu-toggle-letter-spacing);
    line-height: 1;
    min-height: var(--site-header-menu-toggle-min-height);
    padding: 0 var(--site-header-menu-toggle-padding-x);
    text-transform: uppercase;
    transition: background-color var(--si-motion-fast) var(--si-ease-soft), border-color var(--si-motion-fast) var(--si-ease-soft), box-shadow var(--si-motion-fast) var(--si-ease-soft), color var(--si-motion-fast) var(--si-ease-soft), min-height var(--si-motion-base) var(--si-ease-soft), padding-left var(--si-motion-base) var(--si-ease-soft), padding-right var(--si-motion-base) var(--si-ease-soft), font-size var(--si-motion-base) var(--si-ease-soft), letter-spacing var(--si-motion-base) var(--si-ease-soft), transform var(--si-motion-fast) var(--si-ease-standard);
  }
  /* line 426, app/assets/stylesheets/layouts/_header.scss */
  .site-header.is-nav-open .site-header__menu-toggle {
    background: var(--si-red);
    border-color: var(--si-red);
    color: #fff;
  }
  /* line 432, app/assets/stylesheets/layouts/_header.scss */
  .site-header__menu-toggle-icon {
    display: grid;
    gap: 5px;
  }
  /* line 437, app/assets/stylesheets/layouts/_header.scss */
  .site-header__menu-toggle-icon span {
    background: currentColor;
    border-radius: 999px;
    display: block;
    height: 2px;
    transition: opacity var(--si-motion-fast) var(--si-ease-soft), transform var(--si-motion-fast) var(--si-ease-standard);
    transform-origin: center;
    width: 18px;
  }
  /* line 449, app/assets/stylesheets/layouts/_header.scss */
  .site-header.is-nav-open .site-header__menu-toggle-icon span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }
  /* line 453, app/assets/stylesheets/layouts/_header.scss */
  .site-header.is-nav-open .site-header__menu-toggle-icon span:nth-child(2) {
    opacity: 0;
  }
  /* line 457, app/assets/stylesheets/layouts/_header.scss */
  .site-header.is-nav-open .site-header__menu-toggle-icon span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }
  /* line 461, app/assets/stylesheets/layouts/_header.scss */
  .site-header__mobile-backdrop {
    background: rgba(15, 23, 42, 0.42);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    display: block;
    inset: 0;
    opacity: 0;
    position: fixed;
    transition: opacity var(--si-motion-base) var(--si-ease-soft);
    z-index: 42;
  }
  /* line 473, app/assets/stylesheets/layouts/_header.scss */
  .site-header.is-nav-open .site-header__mobile-backdrop {
    opacity: 1;
  }
  /* line 477, app/assets/stylesheets/layouts/_header.scss */
  .site-header__mobile-backdrop[hidden] {
    display: none;
  }
  /* line 481, app/assets/stylesheets/layouts/_header.scss */
  .site-header__drawer {
    background: #fff;
    bottom: 0;
    border-left: 1px solid rgba(27, 28, 28, 0.08);
    box-shadow: -20px 0 40px rgba(15, 23, 42, 0.18);
    display: grid;
    gap: 28px;
    grid-template-rows: auto minmax(0, 1fr) auto;
    height: 100dvh;
    max-width: none;
    max-height: 100dvh;
    opacity: 0;
    overflow: hidden;
    overscroll-behavior: contain;
    padding: 18px 18px;
    padding-top: calc(18px + env(safe-area-inset-top));
    padding-bottom: calc(18px + env(safe-area-inset-bottom));
    pointer-events: none;
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    transform: translate3d(28px, 0, 0);
    transition: opacity var(--si-motion-base) var(--si-ease-soft), transform var(--si-motion-base) var(--si-ease-standard);
    width: 100vw;
    z-index: 43;
  }
  /* line 511, app/assets/stylesheets/layouts/_header.scss */
  .site-header.is-nav-open .site-header__drawer {
    opacity: 1;
    pointer-events: auto;
    transform: translate3d(0, 0, 0);
  }
  /* line 517, app/assets/stylesheets/layouts/_header.scss */
  .site-header__drawer[hidden] {
    display: none;
  }
  /* line 521, app/assets/stylesheets/layouts/_header.scss */
  .site-header__drawer-header {
    align-items: center;
    display: flex;
    gap: 12px;
    justify-content: space-between;
  }
  /* line 528, app/assets/stylesheets/layouts/_header.scss */
  .site-header__drawer-brand {
    align-items: center;
    display: inline-flex;
    max-width: 68%;
    text-decoration: none;
  }
  /* line 535, app/assets/stylesheets/layouts/_header.scss */
  .site-header__drawer-brand-image {
    display: block;
    height: 48px;
    width: auto;
  }
  /* line 541, app/assets/stylesheets/layouts/_header.scss */
  .site-header__drawer-close {
    appearance: none;
    background: #fff;
    border: 1px solid rgba(27, 28, 28, 0.1);
    border-radius: 4px;
    box-shadow: none;
    color: var(--si-ink);
    font-family: var(--si-font-heading);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1.2px;
    line-height: 1;
    min-height: 38px;
    padding: 0 14px;
    text-transform: uppercase;
  }
  /* line 558, app/assets/stylesheets/layouts/_header.scss */
  .site-header__drawer-nav {
    border-top: 1px solid rgba(27, 28, 28, 0.08);
    display: grid;
    gap: 0;
    min-height: 0;
    overflow-y: auto;
    padding-top: 10px;
  }
  /* line 567, app/assets/stylesheets/layouts/_header.scss */
  .site-header__drawer-link {
    border-bottom: 1px solid rgba(27, 28, 28, 0.08);
    color: #292524;
    font-family: var(--si-font-heading);
    font-size: clamp(18px, 5vw, 20px);
    font-weight: 900;
    letter-spacing: -0.04em;
    line-height: 1.02;
    padding: 14px 0;
    text-decoration: none;
    text-transform: uppercase;
    transition: color 180ms ease, padding-left 180ms ease;
  }
  /* line 581, app/assets/stylesheets/layouts/_header.scss */
  .site-header__drawer-link:hover {
    color: var(--si-red);
    padding-left: 10px;
  }
  /* line 586, app/assets/stylesheets/layouts/_header.scss */
  .site-header__drawer-link--active {
    color: var(--si-red);
  }
  /* line 590, app/assets/stylesheets/layouts/_header.scss */
  .site-header__drawer-actions {
    display: grid;
    border-top: 1px solid rgba(27, 28, 28, 0.12);
    gap: 12px;
    padding-top: 14px;
  }
  /* line 597, app/assets/stylesheets/layouts/_header.scss */
  .site-header__drawer-donate {
    min-height: 48px;
    width: 100%;
  }
  /* line 602, app/assets/stylesheets/layouts/_header.scss */
  .site-header__drawer-contact {
    align-items: center;
    color: var(--si-copy);
    display: inline-flex;
    font-family: var(--si-font-body);
    font-size: 0.95rem;
    line-height: 1.5;
    min-height: 44px;
    text-decoration: none;
  }
  /* line 613, app/assets/stylesheets/layouts/_header.scss */
  .breaking-strip__content {
    align-items: start;
    background: #fff;
    border: 1px solid rgba(255, 255, 255, 0.24);
    border-radius: 6px;
    flex-direction: column;
    gap: 8px;
    padding: 14px 16px;
  }
  /* line 623, app/assets/stylesheets/layouts/_header.scss */
  .breaking-strip__label {
    border-right: 0;
    font-size: 10px;
    letter-spacing: 1.2px;
    min-width: auto;
    padding-right: 0;
  }
  /* line 631, app/assets/stylesheets/layouts/_header.scss */
  .breaking-strip__link {
    font-family: var(--si-font-heading);
    font-size: 18px;
    font-style: normal;
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1.15;
    padding-left: 0;
    white-space: normal;
  }
}

/* line 1, app/assets/stylesheets/layouts/_footer.scss */
.site-footer {
  background: #171717;
  border-top: 4px solid #ff0000;
  color: #fff;
  margin-top: 0;
  padding: 36px 0 44px;
}

/* line 9, app/assets/stylesheets/layouts/_footer.scss */
.site-footer__main,
.site-footer__bottom {
  margin: 0 auto;
  max-width: calc(var(--si-footer-shell) + (var(--si-gutter) * 2));
  padding-left: var(--si-gutter);
  padding-right: var(--si-gutter);
}

/* line 17, app/assets/stylesheets/layouts/_footer.scss */
.site-footer__main {
  align-items: start;
  border-bottom: 1px solid var(--si-divider-inverse);
  display: grid;
  gap: 32px;
  grid-template-columns: minmax(240px, 1fr) 1px minmax(0, 1fr);
  padding-bottom: 24px;
}

/* line 26, app/assets/stylesheets/layouts/_footer.scss */
.site-footer__brand-link {
  display: inline-flex;
  text-decoration: none;
  width: 100%;
  max-width: 275px;
}

/* line 33, app/assets/stylesheets/layouts/_footer.scss */
.site-footer__brand-image {
  display: block;
  height: auto;
  max-width: 275px;
  width: 100%;
}

/* line 40, app/assets/stylesheets/layouts/_footer.scss */
.site-footer__name {
  display: grid;
  font-family: var(--si-font-display);
  font-size: 48px;
  font-weight: 800;
  letter-spacing: -0.05em;
  line-height: 0.95;
  margin: 0;
  text-transform: uppercase;
}

/* line 51, app/assets/stylesheets/layouts/_footer.scss */
.site-footer__name span:first-child {
  color: var(--si-red-bright);
}

/* line 55, app/assets/stylesheets/layouts/_footer.scss */
.site-footer__name span:last-child {
  color: #fff;
}

/* line 59, app/assets/stylesheets/layouts/_footer.scss */
.site-footer__divider {
  background: rgba(255, 255, 255, 0.18);
  height: 124px;
  width: 1px;
}

/* line 65, app/assets/stylesheets/layouts/_footer.scss */
.site-footer__mission-wrap {
  justify-self: end;
  max-width: 401px;
  text-align: right;
}

/* line 71, app/assets/stylesheets/layouts/_footer.scss */
.site-footer__mission {
  color: #a3a3a3;
  font-family: var(--si-font-body);
  font-size: 16px;
  line-height: 1.5;
  margin: 0;
}

/* line 79, app/assets/stylesheets/layouts/_footer.scss */
.site-footer__bottom-group {
  display: grid;
  gap: 12px;
}

/* line 84, app/assets/stylesheets/layouts/_footer.scss */
.site-footer__bottom-group--links {
  gap: 0;
}

/* line 88, app/assets/stylesheets/layouts/_footer.scss */
.site-footer__label {
  color: rgba(255, 255, 255, 0.56);
  font-family: var(--si-font-body);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 1.4px;
  line-height: 1.2;
  margin: 0;
  text-transform: uppercase;
}

/* line 99, app/assets/stylesheets/layouts/_footer.scss */
.site-footer__links {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
}

/* line 105, app/assets/stylesheets/layouts/_footer.scss */
.site-footer__link {
  color: #a3a3a3;
  font-family: var(--si-font-body);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 1px;
  line-height: 16px;
  text-decoration: none;
  text-transform: uppercase;
  transition: color 180ms ease;
}

/* line 117, app/assets/stylesheets/layouts/_footer.scss */
.site-footer__link:hover {
  color: #fff;
}

/* line 121, app/assets/stylesheets/layouts/_footer.scss */
.site-footer__bottom {
  align-items: start;
  display: flex;
  gap: 24px;
  justify-content: space-between;
  padding-top: 16px;
}

/* line 129, app/assets/stylesheets/layouts/_footer.scss */
.site-footer__social-link {
  align-items: center;
  color: #ffffff;
  display: inline-flex;
  font-family: var(--si-font-heading);
  font-size: 14px;
  gap: 10px;
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
  text-transform: uppercase;
  transition: color 180ms ease, transform 180ms ease;
}

/* line 143, app/assets/stylesheets/layouts/_footer.scss */
.site-footer__social {
  display: flex;
  gap: 24px;
}

/* line 148, app/assets/stylesheets/layouts/_footer.scss */
.site-footer__social-link:hover {
  color: var(--si-red-bright);
  transform: translateY(-1px);
}

/* line 153, app/assets/stylesheets/layouts/_footer.scss */
.site-footer__social-icon {
  align-items: center;
  border: 1px solid currentColor;
  border-radius: 999px;
  display: inline-flex;
  flex: 0 0 auto;
  height: 34px;
  justify-content: center;
  width: 34px;
}

/* line 164, app/assets/stylesheets/layouts/_footer.scss */
.site-footer__social-icon svg {
  display: block;
  height: 16px;
  width: 16px;
}

/* line 170, app/assets/stylesheets/layouts/_footer.scss */
.site-footer__social-text {
  letter-spacing: 0.8px;
}

/* line 174, app/assets/stylesheets/layouts/_footer.scss */
.site-footer__contact-link {
  color: #fff;
  font-family: var(--si-font-body);
  font-size: 14px;
  line-height: 1.5;
  text-decoration: none;
}

@media (max-width: 1180px) {
  /* line 183, app/assets/stylesheets/layouts/_footer.scss */
  .site-footer__main {
    grid-template-columns: 1fr;
  }
  /* line 187, app/assets/stylesheets/layouts/_footer.scss */
  .site-footer__divider {
    display: none;
  }
  /* line 191, app/assets/stylesheets/layouts/_footer.scss */
  .site-footer__bottom {
    flex-wrap: wrap;
  }
}

@media (max-width: 760px) {
  /* line 197, app/assets/stylesheets/layouts/_footer.scss */
  .site-footer {
    padding-bottom: 32px;
    padding-bottom: calc(32px + env(safe-area-inset-bottom));
    padding-top: 28px;
  }
  /* line 203, app/assets/stylesheets/layouts/_footer.scss */
  .site-footer__main,
.site-footer__bottom {
    padding-left: 16px;
    padding-right: 16px;
  }
  /* line 209, app/assets/stylesheets/layouts/_footer.scss */
  .site-footer__main {
    gap: 24px;
    padding-bottom: 20px;
  }
  /* line 214, app/assets/stylesheets/layouts/_footer.scss */
  .site-footer__mission-wrap {
    justify-self: stretch;
    text-align: left;
  }
  /* line 219, app/assets/stylesheets/layouts/_footer.scss */
  .site-footer__name {
    font-size: 38px;
  }
  /* line 223, app/assets/stylesheets/layouts/_footer.scss */
  .site-footer__bottom {
    align-items: stretch;
    flex-direction: column;
    gap: 18px;
  }
  /* line 229, app/assets/stylesheets/layouts/_footer.scss */
  .site-footer__links,
.site-footer__social {
    display: grid;
    gap: 8px;
  }
  /* line 235, app/assets/stylesheets/layouts/_footer.scss */
  .site-footer__link,
.site-footer__social-link,
.site-footer__contact-link {
    align-items: center;
    display: inline-flex;
    min-height: 44px;
  }
}

/* line 1, app/assets/stylesheets/pages/_home.scss */
.page--homepage {
  margin-bottom: 0;
  margin-top: 0;
}

/* line 6, app/assets/stylesheets/pages/_home.scss */
.home-band {
  box-sizing: border-box;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  max-width: 100vw;
  width: 100vw;
}

/* line 14, app/assets/stylesheets/pages/_home.scss */
.home-shell {
  margin: 0 auto;
  max-width: calc(var(--si-shell) + (var(--si-section-gutter) * 2));
  padding-left: var(--si-section-gutter);
  padding-right: var(--si-section-gutter);
  width: 100%;
}

/* line 22, app/assets/stylesheets/pages/_home.scss */
.home-hero {
  display: grid;
  gap: 32px;
  grid-template-columns: minmax(0, 832px) 363px;
  align-items: start;
  margin-top: 22px;
}

/* line 30, app/assets/stylesheets/pages/_home.scss */
.home-hero--lead-only {
  grid-template-columns: minmax(0, 1fr);
}

/* line 34, app/assets/stylesheets/pages/_home.scss */
.lead-story__media-wrap {
  position: relative;
}

/* line 38, app/assets/stylesheets/pages/_home.scss */
.lead-story__image-link {
  display: block;
}

/* line 42, app/assets/stylesheets/pages/_home.scss */
.lead-story__image {
  aspect-ratio: 832 / 453;
  display: block;
  object-fit: cover;
  width: 100%;
}

/* line 49, app/assets/stylesheets/pages/_home.scss */
.lead-story__badge {
  background: var(--si-red);
  color: #fff;
  font-family: var(--si-font-body);
  font-size: 10px;
  font-weight: 700;
  left: 16px;
  letter-spacing: 1px;
  line-height: 15px;
  padding: 4px 12px;
  position: absolute;
  text-transform: uppercase;
  top: 16px;
}

/* line 64, app/assets/stylesheets/pages/_home.scss */
.lead-story__title {
  margin: 16px 0 0;
}

/* line 68, app/assets/stylesheets/pages/_home.scss */
.lead-story__title-link {
  color: var(--si-ink);
  font-family: var(--si-font-heading);
  font-size: 60px;
  font-weight: 900;
  letter-spacing: -3px;
  line-height: 60px;
  text-decoration: none;
}

/* line 78, app/assets/stylesheets/pages/_home.scss */
.lead-story__standfirst {
  color: #57534e;
  font-family: var(--si-font-serif);
  font-size: 20px;
  line-height: 32.5px;
  margin: 10px 0 0;
}

/* line 86, app/assets/stylesheets/pages/_home.scss */
.lead-story__meta {
  color: var(--si-muted);
  font-family: var(--si-font-body);
  font-size: 11px;
  font-style: italic;
  letter-spacing: 1.2px;
  line-height: 16px;
  margin: 14px 0 0;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

/* line 101, app/assets/stylesheets/pages/_home.scss */
.lead-story__author,
.lead-story__read-time {
  display: inline;
}

/* line 106, app/assets/stylesheets/pages/_home.scss */
.lead-story__separator {
  display: inline;
}

/* line 110, app/assets/stylesheets/pages/_home.scss */
.home-hero__latest {
  background: var(--si-bg-soft);
  display: flex;
  flex-direction: column;
  min-height: 750px;
  padding: 32px;
}

/* line 118, app/assets/stylesheets/pages/_home.scss */
.home-latest__header {
  border-bottom: 4px solid var(--si-red);
  display: inline-flex;
  margin-bottom: 32px;
  padding-bottom: 12px;
}

/* line 125, app/assets/stylesheets/pages/_home.scss */
.home-latest__header h2 {
  font-family: var(--si-font-heading);
  font-size: 24px;
  font-weight: 800;
  letter-spacing: -0.6px;
  line-height: 32px;
  margin: 0;
  text-transform: uppercase;
}

/* line 135, app/assets/stylesheets/pages/_home.scss */
.home-latest__list {
  display: grid;
  gap: 30px;
}

/* line 140, app/assets/stylesheets/pages/_home.scss */
.home-latest__item {
  display: grid;
  gap: 6px;
  padding-bottom: 12px;
  border-bottom: 1px solid #e7e5e4;
}

/* line 147, app/assets/stylesheets/pages/_home.scss */
.home-latest__item:last-child {
  border-bottom: none;
}

/* line 151, app/assets/stylesheets/pages/_home.scss */
.home-latest__kicker {
  color: var(--si-red);
  font-family: var(--si-font-body);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1px;
  line-height: 15px;
  margin: 0;
  text-transform: uppercase;
}

/* line 162, app/assets/stylesheets/pages/_home.scss */
.home-latest__title {
  margin: 0;
}

/* line 166, app/assets/stylesheets/pages/_home.scss */
.home-latest__title-link {
  color: var(--si-ink);
  font-family: var(--si-font-heading);
  font-size: 18px;
  font-weight: 700;
  line-height: 1.25;
  text-decoration: none;
}

/* line 175, app/assets/stylesheets/pages/_home.scss */
.home-latest__title-link:hover {
  text-decoration: underline;
  text-decoration-color: var(--si-red);
  text-underline-offset: 3px;
}

/* line 181, app/assets/stylesheets/pages/_home.scss */
.home-latest__snippet {
  color: #78716c;
  font-family: var(--si-font-body);
  font-size: 13px;
  line-height: 1.5;
  margin: 0;
  display: none;
}

/* line 190, app/assets/stylesheets/pages/_home.scss */
.home-latest__time {
  color: var(--si-muted);
  font-family: var(--si-font-body);
  font-size: 10px;
  line-height: 15px;
  margin: 0;
  text-transform: uppercase;
}

/* line 199, app/assets/stylesheets/pages/_home.scss */
.home-latest__button {
  border: 1px solid #d6d3d1;
  color: var(--si-ink);
  display: inline-flex;
  font-family: var(--si-font-heading);
  font-size: 10px;
  font-weight: 700;
  justify-content: center;
  letter-spacing: 1px;
  line-height: 15px;
  margin-top: auto;
  min-height: 49px;
  padding: 17px 18px;
  text-decoration: none;
  text-transform: uppercase;
  width: 100%;
}

/* line 217, app/assets/stylesheets/pages/_home.scss */
.home-latest__button:hover {
  background: var(--si-ink);
  border-color: var(--si-ink);
  color: #fff;
}

/* line 223, app/assets/stylesheets/pages/_home.scss */
.home-mission {
  background: #171717;
  border-bottom: 8px solid var(--si-red-bright);
  border-top: 8px solid var(--si-red-bright);
  padding: 64px 0;
}

/* line 230, app/assets/stylesheets/pages/_home.scss */
.home-mission__inner {
  display: grid;
  justify-items: center;
  text-align: center;
}

/* line 236, app/assets/stylesheets/pages/_home.scss */
.home-mission__heading {
  color: var(--si-red-bright);
  font-family: var(--si-font-accent);
  font-size: 32px;
  font-weight: 800;
  line-height: 1.2;
  margin: 0 0 24px 0;
  text-transform: uppercase;
  letter-spacing: -0.5px;
}

/* line 247, app/assets/stylesheets/pages/_home.scss */
.home-mission__copy {
  color: #fff;
  font-family: var(--si-font-editorial);
  font-size: 42px;
  line-height: 1.3;
  margin: 0 auto;
  max-width: 760px;
  text-transform: uppercase;
  font-weight: 800;
}

/* line 258, app/assets/stylesheets/pages/_home.scss */
.home-mission__accent {
  background: var(--si-red-bright);
  display: block;
  height: 4px;
  margin-top: 28px;
  width: 96px;
}

/* line 266, app/assets/stylesheets/pages/_home.scss */
.home-action-grid {
  background: var(--si-bg-soft);
  padding: 96px var(--si-section-gutter) 80px;
}

/* line 271, app/assets/stylesheets/pages/_home.scss */
.home-action-grid__inner {
  display: grid;
  gap: 80px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

/* line 277, app/assets/stylesheets/pages/_home.scss */
.home-section-title {
  align-items: center;
  display: flex;
  gap: 16px;
  margin-bottom: 40px;
}

/* line 284, app/assets/stylesheets/pages/_home.scss */
.home-section-title h2 {
  font-family: var(--si-font-heading);
  font-size: 30px;
  font-weight: 800;
  letter-spacing: -1.5px;
  line-height: 36px;
  margin: 0;
  text-transform: uppercase;
}

/* line 294, app/assets/stylesheets/pages/_home.scss */
.home-section-title--green::before,
.home-section-title--red::before,
.home-section-title--black::before {
  content: "";
  display: block;
  height: 40px;
  width: 8px;
}

/* line 303, app/assets/stylesheets/pages/_home.scss */
.home-section-title--green::before {
  background: var(--si-green);
}

/* line 307, app/assets/stylesheets/pages/_home.scss */
.home-section-title--red::before {
  background: var(--si-red);
}

/* line 311, app/assets/stylesheets/pages/_home.scss */
.home-section-title--black::before {
  background: var(--si-ink);
}

/* line 315, app/assets/stylesheets/pages/_home.scss */
.home-action-section {
  min-width: 0;
}

/* line 319, app/assets/stylesheets/pages/_home.scss */
.home-action-list {
  display: grid;
  gap: 24px;
  grid-auto-rows: 1fr;
}

/* line 325, app/assets/stylesheets/pages/_home.scss */
.home-action-card {
  --home-action-accent: var(--si-red);
  --home-action-border: rgba(188, 1, 0, 0.18);
  --home-action-bg: var(--si-bg-paper);
  --home-action-title: var(--si-ink);
  --home-action-copy: var(--si-copy);
  background: var(--home-action-bg);
  border: 1px solid var(--home-action-border);
  border-top-width: 4px;
  box-shadow: 0 1px 0 rgba(27, 28, 28, 0.03);
  display: grid;
  gap: 18px;
  grid-template-rows: auto auto 1fr auto;
  height: 100%;
  min-height: 268px;
  padding: 26px;
  transition: border-color var(--si-motion-fast) var(--si-ease-soft), box-shadow var(--si-motion-fast) var(--si-ease-soft), transform var(--si-motion-fast) var(--si-ease-standard);
}

/* line 347, app/assets/stylesheets/pages/_home.scss */
.home-action-card--green {
  --home-action-accent: var(--si-green);
  --home-action-border: rgba(36, 107, 64, 0.2);
}

/* line 352, app/assets/stylesheets/pages/_home.scss */
.home-action-card--red {
  --home-action-accent: var(--si-red);
  --home-action-border: rgba(188, 1, 0, 0.18);
}

/* line 357, app/assets/stylesheets/pages/_home.scss */
.home-action-card--black {
  --home-action-accent: var(--si-red-bright);
  --home-action-border: rgba(220, 38, 38, 0.4);
  --home-action-bg: #050505;
  --home-action-title: #fff;
  --home-action-copy: rgba(255, 255, 255, 0.76);
}

/* line 365, app/assets/stylesheets/pages/_home.scss */
.home-action-card:hover,
.home-action-card:focus-within {
  box-shadow: 0 16px 32px rgba(27, 28, 28, 0.08);
  transform: translateY(-3px);
}

/* line 371, app/assets/stylesheets/pages/_home.scss */
.home-action-card__meta {
  align-items: start;
  display: flex;
  flex-wrap: wrap;
  min-height: 18px;
}

/* line 378, app/assets/stylesheets/pages/_home.scss */
.home-action-card__meta-text {
  color: var(--home-action-accent);
  font-family: var(--si-font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.4;
  margin: 0;
  text-transform: uppercase;
}

/* line 389, app/assets/stylesheets/pages/_home.scss */
.home-action-card__title {
  margin: 0;
}

/* line 393, app/assets/stylesheets/pages/_home.scss */
.home-action-card__title-link {
  color: var(--home-action-title);
  display: -webkit-box;
  font-family: var(--si-font-heading);
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.18;
  min-height: 2.36em;
  overflow: hidden;
  text-decoration: none;
  text-transform: uppercase;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

/* line 409, app/assets/stylesheets/pages/_home.scss */
.home-action-card__title-link:hover {
  text-decoration: underline;
  text-decoration-color: var(--home-action-accent);
  text-underline-offset: 3px;
}

/* line 415, app/assets/stylesheets/pages/_home.scss */
.home-action-card__details {
  color: var(--home-action-copy);
  display: -webkit-box;
  font-family: var(--si-font-body);
  font-size: 14px;
  line-height: 1.65;
  margin: 0;
  min-height: 4.95em;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

/* line 428, app/assets/stylesheets/pages/_home.scss */
.home-action-card__footer {
  align-content: end;
  display: grid;
}

/* line 433, app/assets/stylesheets/pages/_home.scss */
.home-action-card__link {
  align-items: center;
  border: 1px solid var(--home-action-accent);
  color: var(--home-action-accent);
  display: inline-flex;
  font-family: var(--si-font-heading);
  font-size: 11px;
  font-weight: 800;
  gap: 8px;
  justify-content: center;
  letter-spacing: 0.12em;
  line-height: 1.2;
  min-height: 46px;
  padding: 0 18px;
  text-decoration: none;
  text-transform: uppercase;
  transition: background-color var(--si-motion-fast) var(--si-ease-soft), color var(--si-motion-fast) var(--si-ease-soft), transform var(--si-motion-fast) var(--si-ease-standard);
}

/* line 455, app/assets/stylesheets/pages/_home.scss */
.home-action-card__link::after {
  content: "→";
  transition: transform var(--si-motion-fast) var(--si-ease-standard);
}

/* line 460, app/assets/stylesheets/pages/_home.scss */
.home-action-card__link:hover,
.home-action-card__link:focus-visible {
  background: var(--home-action-accent);
  color: #fff;
  transform: translateY(-1px);
}

/* line 467, app/assets/stylesheets/pages/_home.scss */
.home-action-card__link:hover::after,
.home-action-card__link:focus-visible::after {
  transform: translateX(2px);
}

/* line 472, app/assets/stylesheets/pages/_home.scss */
.home-cta {
  background: #000;
  padding: 80px 0;
}

/* line 477, app/assets/stylesheets/pages/_home.scss */
.home-cta__inner {
  align-items: center;
  display: flex;
  gap: 48px;
  justify-content: space-between;
}

/* line 484, app/assets/stylesheets/pages/_home.scss */
.home-cta__copy {
  display: grid;
  gap: 16px;
  max-width: 780px;
}

/* line 490, app/assets/stylesheets/pages/_home.scss */
.home-cta__copy h2 {
  color: #fff;
  font-family: var(--si-font-heading);
  font-size: 40px;
  font-weight: 900;
  line-height: 1.2;
  margin: 0;
  text-transform: uppercase;
  letter-spacing: -1.5px;
}

/* line 501, app/assets/stylesheets/pages/_home.scss */
.home-cta__copy p {
  color: #a3a3a3;
  font-family: var(--si-font-body);
  font-size: 16px;
  line-height: 1.6;
  margin: 0;
}

/* line 509, app/assets/stylesheets/pages/_home.scss */
.home-cta__actions {
  display: flex;
  flex-shrink: 0;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
}

/* line 517, app/assets/stylesheets/pages/_home.scss */
.home-cta__primary,
.home-cta__secondary {
  align-items: center;
  display: inline-flex;
  font-family: var(--si-font-body);
  font-size: 14px;
  font-weight: 600;
  justify-content: center;
  letter-spacing: 0.8px;
  line-height: 1.5;
  min-height: 56px;
  padding: 14px 36px;
  text-decoration: none;
  text-transform: uppercase;
  transition: background-color var(--si-motion-fast) var(--si-ease-soft), border-color var(--si-motion-fast) var(--si-ease-soft), box-shadow var(--si-motion-fast) var(--si-ease-soft), color var(--si-motion-fast) var(--si-ease-soft), transform var(--si-motion-fast) var(--si-ease-standard);
}

/* line 539, app/assets/stylesheets/pages/_home.scss */
.home-cta__primary {
  background: var(--si-red-bright);
  color: #fff;
  font-weight: 700;
}

/* line 545, app/assets/stylesheets/pages/_home.scss */
.home-cta__primary:hover {
  background: #e63946;
  box-shadow: 0 20px 36px rgba(188, 1, 0, 0.24);
  transform: translateY(-2px);
}

/* line 551, app/assets/stylesheets/pages/_home.scss */
.home-cta__secondary {
  border: 2px solid #fff;
  color: #fff;
  font-weight: 600;
}

/* line 557, app/assets/stylesheets/pages/_home.scss */
.home-cta__secondary:hover {
  background: #fff;
  box-shadow: 0 18px 34px rgba(255, 255, 255, 0.14);
  color: #000;
  transform: translateY(-2px);
}

@media (max-width: 1180px) {
  /* line 565, app/assets/stylesheets/pages/_home.scss */
  .home-hero,
.home-action-grid__inner {
    grid-template-columns: 1fr;
  }
  /* line 570, app/assets/stylesheets/pages/_home.scss */
  .home-hero__latest {
    min-height: unset;
  }
  /* line 574, app/assets/stylesheets/pages/_home.scss */
  .home-mission {
    padding-left: 0;
    padding-right: 0;
  }
  /* line 579, app/assets/stylesheets/pages/_home.scss */
  .lead-story__title-link {
    font-size: clamp(2.5rem, 6vw, 60px);
    line-height: 1.2;
  }
  /* line 584, app/assets/stylesheets/pages/_home.scss */
  .home-mission__heading {
    font-size: clamp(1.8rem, 4vw, 32px);
  }
  /* line 588, app/assets/stylesheets/pages/_home.scss */
  .home-mission__copy {
    font-size: clamp(1.8rem, 5vw, 42px);
  }
  /* line 592, app/assets/stylesheets/pages/_home.scss */
  .home-cta__inner {
    align-items: flex-start;
    flex-direction: column;
    gap: 32px;
  }
  /* line 598, app/assets/stylesheets/pages/_home.scss */
  .home-cta__copy {
    max-width: 100%;
  }
  /* line 602, app/assets/stylesheets/pages/_home.scss */
  .home-cta__copy h2 {
    font-size: 32px;
  }
  /* line 606, app/assets/stylesheets/pages/_home.scss */
  .home-cta__actions {
    width: 100%;
  }
  /* line 610, app/assets/stylesheets/pages/_home.scss */
  .home-cta__primary,
.home-cta__secondary {
    flex: 1;
    min-width: 140px;
  }
}

@media (max-width: 760px) {
  /* line 618, app/assets/stylesheets/pages/_home.scss */
  .homepage {
    gap: 32px;
  }
  /* line 622, app/assets/stylesheets/pages/_home.scss */
  .home-hero {
    gap: 20px;
    grid-template-columns: 1fr;
  }
  /* line 627, app/assets/stylesheets/pages/_home.scss */
  .home-hero__lead {
    min-width: 100%;
  }
  /* line 631, app/assets/stylesheets/pages/_home.scss */
  .lead-story__image {
    aspect-ratio: 4 / 3;
  }
  /* line 635, app/assets/stylesheets/pages/_home.scss */
  .lead-story__badge {
    font-size: 9px;
    left: 12px;
    padding: 3px 10px;
    top: 12px;
  }
  /* line 642, app/assets/stylesheets/pages/_home.scss */
  .lead-story__title {
    margin: 12px 0 0;
  }
  /* line 646, app/assets/stylesheets/pages/_home.scss */
  .lead-story__title-link {
    font-size: clamp(24px, 6vw, 32px);
    letter-spacing: -1px;
    line-height: 1.2;
  }
  /* line 652, app/assets/stylesheets/pages/_home.scss */
  .lead-story__standfirst {
    font-size: 15px;
    line-height: 1.5;
    margin: 8px 0 0;
  }
  /* line 658, app/assets/stylesheets/pages/_home.scss */
  .lead-story__meta {
    font-size: 10px;
    gap: 4px;
    margin: 10px 0 0;
  }
  /* line 664, app/assets/stylesheets/pages/_home.scss */
  .home-hero__latest {
    background: #f9f8f7;
    border-radius: 6px;
    min-height: unset;
    padding: 18px;
  }
  /* line 671, app/assets/stylesheets/pages/_home.scss */
  .home-latest__header {
    border-bottom: 3px solid var(--si-red);
    margin-bottom: 14px;
    padding-bottom: 10px;
  }
  /* line 677, app/assets/stylesheets/pages/_home.scss */
  .home-latest__header h2 {
    font-size: 18px;
    letter-spacing: -0.4px;
  }
  /* line 682, app/assets/stylesheets/pages/_home.scss */
  .home-latest__list {
    gap: 14px;
  }
  /* line 686, app/assets/stylesheets/pages/_home.scss */
  .home-latest__item {
    border-bottom: 1px solid #e7e5e4;
    gap: 4px;
    padding-bottom: 14px;
  }
  /* line 692, app/assets/stylesheets/pages/_home.scss */
  .home-latest__item:last-child {
    border-bottom: none;
    padding-bottom: 0;
  }
  /* line 697, app/assets/stylesheets/pages/_home.scss */
  .home-latest__kicker {
    font-size: 9px;
  }
  /* line 701, app/assets/stylesheets/pages/_home.scss */
  .home-latest__title {
    margin: 0;
  }
  /* line 705, app/assets/stylesheets/pages/_home.scss */
  .home-latest__title-link {
    font-size: 15px;
    line-height: 1.3;
  }
  /* line 710, app/assets/stylesheets/pages/_home.scss */
  .home-latest__snippet {
    display: block;
    font-size: 12px;
  }
  /* line 715, app/assets/stylesheets/pages/_home.scss */
  .home-latest__time {
    font-size: 9px;
  }
  /* line 719, app/assets/stylesheets/pages/_home.scss */
  .home-latest__button {
    font-size: 11px;
    margin-top: 12px;
    min-height: 42px;
  }
  /* line 725, app/assets/stylesheets/pages/_home.scss */
  .home-mission {
    border-width: 6px;
    padding: 40px 0;
  }
  /* line 730, app/assets/stylesheets/pages/_home.scss */
  .home-mission__inner {
    padding: 0 16px;
  }
  /* line 734, app/assets/stylesheets/pages/_home.scss */
  .home-mission__heading {
    font-size: clamp(20px, 5vw, 24px);
    letter-spacing: -0.3px;
    margin-bottom: 14px;
  }
  /* line 740, app/assets/stylesheets/pages/_home.scss */
  .home-mission__copy {
    font-size: clamp(20px, 5.5vw, 28px);
    line-height: 1.3;
    max-width: 100%;
  }
  /* line 746, app/assets/stylesheets/pages/_home.scss */
  .home-mission__accent {
    margin-top: 14px;
    width: 80px;
  }
  /* line 751, app/assets/stylesheets/pages/_home.scss */
  .home-action-grid {
    gap: 50px;
    padding: 40px 16px;
  }
  /* line 756, app/assets/stylesheets/pages/_home.scss */
  .home-action-grid__inner {
    gap: 40px;
  }
  /* line 760, app/assets/stylesheets/pages/_home.scss */
  .home-section-title {
    gap: 12px;
    margin-bottom: 32px;
  }
  /* line 765, app/assets/stylesheets/pages/_home.scss */
  .home-section-title h2 {
    font-size: clamp(18px, 4.5vw, 22px);
    letter-spacing: -0.4px;
  }
  /* line 770, app/assets/stylesheets/pages/_home.scss */
  .home-section-title--green::before,
.home-section-title--red::before,
.home-section-title--black::before {
    height: 32px;
    width: 6px;
  }
  /* line 777, app/assets/stylesheets/pages/_home.scss */
  .home-action-list {
    gap: 14px;
  }
  /* line 781, app/assets/stylesheets/pages/_home.scss */
  .home-action-card {
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    gap: 14px;
    min-height: 232px;
    padding: 18px;
  }
  /* line 788, app/assets/stylesheets/pages/_home.scss */
  .home-action-card__meta {
    min-height: 16px;
  }
  /* line 792, app/assets/stylesheets/pages/_home.scss */
  .home-action-card__meta-text {
    font-size: 10px;
  }
  /* line 796, app/assets/stylesheets/pages/_home.scss */
  .home-action-card__title-link {
    font-size: 17px;
    line-height: 1.28;
    min-height: 2.56em;
  }
  /* line 802, app/assets/stylesheets/pages/_home.scss */
  .home-action-card__details {
    font-size: 12px;
    line-height: 1.5;
    min-height: 4.5em;
  }
  /* line 808, app/assets/stylesheets/pages/_home.scss */
  .home-action-card__link {
    font-size: 10px;
    min-height: 42px;
  }
  /* line 813, app/assets/stylesheets/pages/_home.scss */
  .home-cta {
    padding: 40px 0;
  }
  /* line 817, app/assets/stylesheets/pages/_home.scss */
  .home-cta__inner {
    flex-direction: column;
    gap: 20px;
    padding-left: 16px;
    padding-right: 16px;
  }
  /* line 824, app/assets/stylesheets/pages/_home.scss */
  .home-cta__copy {
    max-width: 100%;
  }
  /* line 828, app/assets/stylesheets/pages/_home.scss */
  .home-cta__copy h2 {
    font-size: clamp(20px, 5vw, 24px);
    letter-spacing: -0.3px;
    line-height: 1.2;
  }
  /* line 834, app/assets/stylesheets/pages/_home.scss */
  .home-cta__copy p {
    font-size: 14px;
    line-height: 1.5;
  }
  /* line 839, app/assets/stylesheets/pages/_home.scss */
  .home-cta__actions {
    flex-direction: column;
    gap: 12px;
    width: 100%;
  }
  /* line 845, app/assets/stylesheets/pages/_home.scss */
  .home-cta__primary,
.home-cta__secondary {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.6px;
    min-height: 48px;
    padding: 12px 24px;
    width: 100%;
  }
  /* line 855, app/assets/stylesheets/pages/_home.scss */
  .home-cta__primary {
    order: 1;
  }
  /* line 859, app/assets/stylesheets/pages/_home.scss */
  .home-cta__secondary {
    order: 2;
  }
}

/* line 864, app/assets/stylesheets/pages/_home.scss */
.home-latest__header,
.home-section-title {
  justify-content: space-between;
}

/* line 869, app/assets/stylesheets/pages/_home.scss */
.home-latest__header {
  display: flex;
  width: 100%;
}

/* line 874, app/assets/stylesheets/pages/_home.scss */
.home-latest__header-link,
.home-section-title__link {
  color: var(--si-red);
  font-family: var(--si-font-body);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1.1px;
  line-height: 1.2;
  text-decoration: none;
  text-transform: uppercase;
  transition: color var(--si-motion-fast) var(--si-ease-soft), transform var(--si-motion-fast) var(--si-ease-standard);
}

/* line 889, app/assets/stylesheets/pages/_home.scss */
.home-latest__header-link:hover,
.home-section-title__link:hover {
  text-decoration: underline;
  text-decoration-color: currentColor;
  text-underline-offset: 3px;
  transform: translateX(2px);
}

/* line 897, app/assets/stylesheets/pages/_home.scss */
.home-section-title--green .home-section-title__link {
  color: var(--si-green);
}

/* line 901, app/assets/stylesheets/pages/_home.scss */
.home-section-title--red .home-section-title__link {
  color: var(--si-red);
}

/* line 905, app/assets/stylesheets/pages/_home.scss */
.home-section-title--black .home-section-title__link {
  color: var(--si-ink);
}

@media (max-width: 760px) {
  /* line 910, app/assets/stylesheets/pages/_home.scss */
  .lead-story__image {
    aspect-ratio: 16 / 10;
  }
  /* line 914, app/assets/stylesheets/pages/_home.scss */
  .lead-story__standfirst {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
  }
  /* line 921, app/assets/stylesheets/pages/_home.scss */
  .home-latest__header {
    align-items: center;
  }
  /* line 925, app/assets/stylesheets/pages/_home.scss */
  .home-latest__header-link {
    font-size: 10px;
  }
  /* line 929, app/assets/stylesheets/pages/_home.scss */
  .home-latest__item:nth-child(n + 5) {
    display: none;
  }
  /* line 933, app/assets/stylesheets/pages/_home.scss */
  .home-section-title {
    align-items: end;
  }
  /* line 937, app/assets/stylesheets/pages/_home.scss */
  .home-section-title__link {
    font-size: 10px;
    white-space: nowrap;
  }
}

/* line 1, app/assets/stylesheets/pages/_news.scss */
.page-header {
  margin-bottom: 32px;
}

/* line 5, app/assets/stylesheets/pages/_news.scss */
.page-header h1,
.generic-page__header h1,
.donate-hero h1 {
  font-family: var(--si-font-display);
  font-size: clamp(2rem, 5vw, 3.8rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1;
  margin: 0;
  text-transform: uppercase;
}

/* line 17, app/assets/stylesheets/pages/_news.scss */
.page-header__intro,
.donate-hero p {
  color: var(--si-copy);
  font-family: var(--si-font-serif);
  font-size: clamp(1rem, 2vw, 1.35rem);
  line-height: 1.6;
  margin: 12px 0 0;
  max-width: 760px;
}

/* line 27, app/assets/stylesheets/pages/_news.scss */
.page-header__meta {
  color: var(--si-red);
  font-family: var(--si-font-body);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  line-height: 1.2;
  margin: 18px 0 0;
  text-transform: uppercase;
}

/* line 38, app/assets/stylesheets/pages/_news.scss */
.page--news-index {
  display: grid;
  gap: 88px;
  margin-top: 0;
  padding-bottom: 140px;
  padding-top: 18px;
}

/* line 46, app/assets/stylesheets/pages/_news.scss */
.news-filter-bar {
  border-bottom: 1px solid var(--si-divider-soft);
  border-top: 1px solid var(--si-divider-soft);
  padding: 12px 0;
}

/* line 52, app/assets/stylesheets/pages/_news.scss */
.news-filter-bar__inner {
  align-items: center;
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scrollbar-width: none;
}

/* line 60, app/assets/stylesheets/pages/_news.scss */
.news-filter-bar__inner::-webkit-scrollbar {
  display: none;
}

/* line 64, app/assets/stylesheets/pages/_news.scss */
.news-filter-bar__label,
.news-related__tag {
  color: var(--si-red);
  font-family: var(--si-font-body);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1.6px;
  line-height: 1.2;
  margin: 0;
  text-transform: uppercase;
  white-space: nowrap;
}

/* line 77, app/assets/stylesheets/pages/_news.scss */
.news-filter-bar__label {
  padding-right: 28px;
  position: relative;
}

/* line 82, app/assets/stylesheets/pages/_news.scss */
.news-filter-bar__label::after {
  background: var(--si-line);
  content: "";
  height: 16px;
  position: absolute;
  right: 11px;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
}

/* line 93, app/assets/stylesheets/pages/_news.scss */
.news-filter-bar__link,
.news-filter-bar__reset {
  color: var(--si-ink);
  display: inline-flex;
  flex: 0 0 auto;
  font-family: var(--si-font-body);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.02em;
  line-height: 1.2;
  text-decoration: none;
  text-transform: uppercase;
  transition: color var(--si-motion-fast) var(--si-ease-soft), transform var(--si-motion-fast) var(--si-ease-standard);
  white-space: nowrap;
}

/* line 111, app/assets/stylesheets/pages/_news.scss */
.news-filter-bar__link.is-active,
.news-filter-bar__link:hover,
.news-filter-bar__reset {
  color: var(--si-red);
}

/* line 117, app/assets/stylesheets/pages/_news.scss */
.news-filter-bar__link:hover,
.news-filter-bar__reset:hover {
  transform: translateY(-1px);
}

/* line 122, app/assets/stylesheets/pages/_news.scss */
.news-filter-bar__reset {
  margin-left: auto;
}

/* line 126, app/assets/stylesheets/pages/_news.scss */
.news-feature {
  align-items: start;
  display: grid;
  gap: 32px;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 389px);
}

/* line 133, app/assets/stylesheets/pages/_news.scss */
.news-feature__main {
  display: grid;
  gap: 32px;
}

/* line 138, app/assets/stylesheets/pages/_news.scss */
.news-feature__image-frame {
  position: relative;
}

/* line 142, app/assets/stylesheets/pages/_news.scss */
.news-feature__image-link,
.news-history-card__image-link {
  background: var(--si-bg-soft);
  display: block;
  overflow: hidden;
}

/* line 149, app/assets/stylesheets/pages/_news.scss */
.news-feature__image,
.news-history-card__image {
  display: block;
  object-fit: cover;
  transition: transform 220ms ease;
  width: 100%;
}

/* line 157, app/assets/stylesheets/pages/_news.scss */
.news-feature__image {
  aspect-ratio: 811 / 456;
}

/* line 161, app/assets/stylesheets/pages/_news.scss */
.news-history-card__image {
  aspect-ratio: 379 / 284;
}

/* line 165, app/assets/stylesheets/pages/_news.scss */
.news-feature__main:hover .news-feature__image,
.news-history-card:hover .news-history-card__image {
  transform: scale(1.03);
}

/* line 170, app/assets/stylesheets/pages/_news.scss */
.news-feature__badge {
  background: var(--si-red);
  color: #fff;
  font-family: var(--si-font-body);
  font-size: 11px;
  font-weight: 800;
  left: 16px;
  letter-spacing: 1.8px;
  line-height: 1;
  padding: 9px 14px;
  position: absolute;
  text-transform: uppercase;
  top: 16px;
}

/* line 185, app/assets/stylesheets/pages/_news.scss */
.news-feature__content {
  display: grid;
  gap: 18px;
}

/* line 190, app/assets/stylesheets/pages/_news.scss */
.news-feature__title,
.news-related__heading,
.news-related__title,
.news-history__title,
.news-calendar__title,
.news-calendar-entry__title,
.news-history-card__title,
.news-empty__title {
  margin: 0;
}

/* line 201, app/assets/stylesheets/pages/_news.scss */
.news-feature__title-link,
.news-related__title-link,
.news-calendar-entry__title-link,
.news-history-card__title-link,
.news-empty__reset {
  color: var(--si-ink);
  text-decoration: none;
}

/* line 210, app/assets/stylesheets/pages/_news.scss */
.news-feature__title-link:hover,
.news-related__title-link:hover,
.news-calendar-entry__title-link:hover,
.news-history-card__title-link:hover,
.news-empty__reset:hover,
.news-filter-bar__link:hover,
.news-filter-bar__reset:hover,
.news-calendar__page:hover,
.news-history__more-link:hover {
  text-decoration: underline;
  text-decoration-color: var(--si-red);
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
}

/* line 225, app/assets/stylesheets/pages/_news.scss */
.news-feature__title-link {
  display: inline-block;
  font-family: var(--si-font-heading);
  font-size: clamp(2.25rem, 4.5vw, 3.6rem);
  font-weight: 900;
  letter-spacing: -0.05em;
  line-height: 0.98;
  text-transform: uppercase;
}

/* line 235, app/assets/stylesheets/pages/_news.scss */
.news-feature__summary {
  color: var(--si-copy);
  font-family: var(--si-font-editorial);
  font-size: clamp(1.4rem, 2.3vw, 1.95rem);
  line-height: 1.2;
  margin: 0;
}

/* line 243, app/assets/stylesheets/pages/_news.scss */
.news-feature__meta {
  align-items: center;
  column-gap: 16px;
  color: var(--si-muted);
  display: flex;
  flex-wrap: wrap;
  font-family: var(--si-font-body);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  line-height: 1.2;
  margin: 0;
  text-transform: uppercase;
}

/* line 258, app/assets/stylesheets/pages/_news.scss */
.news-feature__author {
  color: var(--si-red);
  font-family: var(--si-font-body);
  font-weight: 800;
}

/* line 264, app/assets/stylesheets/pages/_news.scss */
.news-feature__dot {
  background: var(--si-line);
  border-radius: 999px;
  height: 6px;
  width: 6px;
}

/* line 271, app/assets/stylesheets/pages/_news.scss */
.news-related {
  border-top: 4px solid var(--si-ink);
  display: grid;
  gap: 24px;
  padding-top: 18px;
}

/* line 278, app/assets/stylesheets/pages/_news.scss */
.news-related__heading,
.news-history__title,
.news-calendar__title,
.news-empty__title {
  color: var(--si-ink);
  font-family: var(--si-font-heading);
  font-size: clamp(1.9rem, 3vw, 2.6rem);
  font-weight: 900;
  letter-spacing: -0.05em;
  line-height: 1;
  text-transform: uppercase;
}

/* line 291, app/assets/stylesheets/pages/_news.scss */
.news-related__list {
  display: grid;
  gap: 28px;
}

/* line 296, app/assets/stylesheets/pages/_news.scss */
.news-related__item {
  display: grid;
  gap: 10px;
}

/* line 301, app/assets/stylesheets/pages/_news.scss */
.news-related__title-link {
  display: inline-block;
  font-family: var(--si-font-heading);
  font-size: clamp(1.35rem, 1.8vw, 1.65rem);
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1.08;
  text-transform: uppercase;
}

/* line 311, app/assets/stylesheets/pages/_news.scss */
.news-related__summary,
.news-related__empty,
.news-calendar-entry__summary,
.news-history-card__summary,
.news-empty__text {
  color: var(--si-copy);
  font-family: var(--si-font-body);
  font-size: 1rem;
  line-height: 1.65;
  margin: 0;
}

/* line 323, app/assets/stylesheets/pages/_news.scss */
.news-empty {
  display: grid;
  gap: 14px;
  justify-items: start;
}

/* line 329, app/assets/stylesheets/pages/_news.scss */
.news-calendar {
  display: grid;
  gap: 32px;
}

/* line 334, app/assets/stylesheets/pages/_news.scss */
.news-calendar__header {
  border-bottom: 4px solid var(--si-ink);
  padding-bottom: 20px;
}

/* line 339, app/assets/stylesheets/pages/_news.scss */
.news-calendar__months {
  display: grid;
  gap: 32px;
}

/* line 344, app/assets/stylesheets/pages/_news.scss */
.news-calendar-month {
  display: grid;
  gap: 16px;
}

/* line 349, app/assets/stylesheets/pages/_news.scss */
.news-calendar-month__label {
  border-bottom: 1px solid var(--si-divider-soft);
  padding-bottom: 12px;
}

/* line 354, app/assets/stylesheets/pages/_news.scss */
.news-calendar-month__month {
  color: var(--si-red);
  font-family: var(--si-font-body);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1.6px;
  line-height: 1.2;
  margin: 0;
  text-transform: uppercase;
}

/* line 365, app/assets/stylesheets/pages/_news.scss */
.news-calendar-month__entries {
  display: grid;
  gap: 18px;
}

/* line 370, app/assets/stylesheets/pages/_news.scss */
.news-calendar-month__cards {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

/* line 376, app/assets/stylesheets/pages/_news.scss */
.news-archive-card {
  background: var(--si-bg-paper);
  border: 1px solid var(--si-divider-soft);
  box-shadow: 0 14px 28px rgba(15, 23, 42, 0.05);
  display: grid;
  gap: 0;
  min-width: 0;
  transition: box-shadow 180ms ease, transform 180ms ease;
}

/* line 386, app/assets/stylesheets/pages/_news.scss */
.news-archive-card:hover {
  box-shadow: 0 18px 34px rgba(15, 23, 42, 0.09);
  transform: translateY(-2px);
}

/* line 391, app/assets/stylesheets/pages/_news.scss */
.news-archive-card__image-link {
  background: var(--si-bg-soft);
  display: block;
  overflow: hidden;
}

/* line 397, app/assets/stylesheets/pages/_news.scss */
.news-archive-card__image {
  aspect-ratio: 4 / 3;
  display: block;
  object-fit: cover;
  transition: transform 220ms ease;
  width: 100%;
}

/* line 405, app/assets/stylesheets/pages/_news.scss */
.news-archive-card:hover .news-archive-card__image {
  transform: scale(1.03);
}

/* line 409, app/assets/stylesheets/pages/_news.scss */
.news-archive-card__content {
  display: grid;
  gap: 10px;
  padding: 16px;
}

/* line 415, app/assets/stylesheets/pages/_news.scss */
.news-archive-card__title {
  margin: 0;
}

/* line 419, app/assets/stylesheets/pages/_news.scss */
.news-archive-card__title-link {
  color: var(--si-ink);
  display: inline-block;
  font-family: var(--si-font-heading);
  font-size: clamp(1.15rem, 1.45vw, 1.35rem);
  font-weight: 900;
  letter-spacing: -0.035em;
  line-height: 1.08;
  text-decoration: none;
  text-transform: uppercase;
}

/* line 431, app/assets/stylesheets/pages/_news.scss */
.news-archive-card__title-link:hover {
  text-decoration: underline;
  text-decoration-color: var(--si-red);
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
}

/* line 438, app/assets/stylesheets/pages/_news.scss */
.news-archive-card__date {
  color: var(--si-muted);
  font-family: var(--si-font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.2px;
  line-height: 1.2;
  text-transform: uppercase;
}

/* line 448, app/assets/stylesheets/pages/_news.scss */
.news-calendar-entry {
  align-items: start;
  border-bottom: 1px solid var(--si-divider-soft);
  display: grid;
  gap: 20px;
  grid-template-columns: 88px minmax(0, 1fr);
  padding-bottom: 18px;
}

/* line 457, app/assets/stylesheets/pages/_news.scss */
.news-calendar-entry__date {
  background: var(--si-bg-soft);
  display: grid;
  gap: 4px;
  justify-items: center;
  padding: 14px 10px 12px;
}

/* line 465, app/assets/stylesheets/pages/_news.scss */
.news-calendar-entry__day {
  color: var(--si-ink);
  font-family: var(--si-font-heading);
  font-size: 2rem;
  font-weight: 900;
  letter-spacing: -0.05em;
  line-height: 0.9;
}

/* line 474, app/assets/stylesheets/pages/_news.scss */
.news-calendar-entry__month,
.news-calendar-entry__tag,
.news-calendar-entry__time,
.news-calendar__page {
  font-family: var(--si-font-body);
  font-size: 11px;
  letter-spacing: 1.4px;
  line-height: 1.2;
  text-transform: uppercase;
}

/* line 485, app/assets/stylesheets/pages/_news.scss */
.news-calendar-entry__month {
  color: var(--si-muted);
  font-weight: 800;
}

/* line 490, app/assets/stylesheets/pages/_news.scss */
.news-calendar-entry__content {
  display: grid;
  gap: 10px;
}

/* line 495, app/assets/stylesheets/pages/_news.scss */
.news-calendar-entry__meta {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 16px;
}

/* line 502, app/assets/stylesheets/pages/_news.scss */
.news-calendar-entry__tag {
  background: #ebebeb;
  color: var(--si-ink);
  display: inline-flex;
  font-weight: 800;
  padding: 4px 8px;
}

/* line 510, app/assets/stylesheets/pages/_news.scss */
.news-calendar-entry__time {
  color: var(--si-muted);
  font-weight: 500;
}

/* line 515, app/assets/stylesheets/pages/_news.scss */
.news-calendar-entry__title-link {
  display: inline-block;
  font-family: var(--si-font-heading);
  font-size: clamp(1.3rem, 1.6vw, 1.55rem);
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1.08;
  text-transform: uppercase;
}

/* line 525, app/assets/stylesheets/pages/_news.scss */
.news-calendar__pagination {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

/* line 533, app/assets/stylesheets/pages/_news.scss */
.news-calendar__page {
  border: 1px solid var(--si-line);
  color: var(--si-ink);
  display: inline-flex;
  font-weight: 800;
  justify-content: center;
  min-width: 48px;
  padding: 14px 16px;
  text-decoration: none;
  transition: background-color var(--si-motion-fast) var(--si-ease-soft), border-color var(--si-motion-fast) var(--si-ease-soft), color var(--si-motion-fast) var(--si-ease-soft), transform var(--si-motion-fast) var(--si-ease-standard);
}

/* line 549, app/assets/stylesheets/pages/_news.scss */
.news-calendar__page:hover {
  transform: translateY(-1px);
}

/* line 553, app/assets/stylesheets/pages/_news.scss */
.news-calendar__page.is-active {
  background: var(--si-red);
  border-color: var(--si-red);
  color: #fff;
}

/* line 559, app/assets/stylesheets/pages/_news.scss */
.news-calendar__page--nav {
  padding-left: 20px;
  padding-right: 20px;
}

/* line 564, app/assets/stylesheets/pages/_news.scss */
.news-history {
  display: grid;
  gap: 40px;
}

/* line 569, app/assets/stylesheets/pages/_news.scss */
.news-history__header {
  border-bottom: 4px solid var(--si-ink);
  padding-bottom: 20px;
}

/* line 574, app/assets/stylesheets/pages/_news.scss */
.news-history__grid {
  display: grid;
  gap: 48px 48px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

/* line 580, app/assets/stylesheets/pages/_news.scss */
.news-history-card {
  display: grid;
  gap: 16px;
}

/* line 585, app/assets/stylesheets/pages/_news.scss */
.news-history-card__meta {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 16px;
  justify-content: space-between;
}

/* line 593, app/assets/stylesheets/pages/_news.scss */
.news-history-card__tag,
.news-history-card__date,
.news-history__more-label,
.news-empty__reset {
  font-family: var(--si-font-body);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1.4px;
  line-height: 1.2;
  text-transform: uppercase;
}

/* line 605, app/assets/stylesheets/pages/_news.scss */
.news-history-card__tag {
  background: #ebebeb;
  color: var(--si-ink);
  display: inline-flex;
  padding: 4px 8px;
}

/* line 612, app/assets/stylesheets/pages/_news.scss */
.news-history-card__date {
  color: var(--si-muted);
  font-weight: 500;
}

/* line 617, app/assets/stylesheets/pages/_news.scss */
.news-history-card__title-link {
  display: inline-block;
  font-family: var(--si-font-heading);
  font-size: clamp(1.35rem, 1.7vw, 1.7rem);
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1.08;
  text-transform: uppercase;
}

/* line 627, app/assets/stylesheets/pages/_news.scss */
.news-history__more {
  display: grid;
  gap: 18px;
  justify-items: center;
  padding-top: 8px;
}

/* line 634, app/assets/stylesheets/pages/_news.scss */
.news-history__more-label,
.news-empty__reset {
  color: var(--si-red);
}

/* line 639, app/assets/stylesheets/pages/_news.scss */
.news-history__more-link {
  align-items: center;
  border: 2px solid var(--si-red);
  color: var(--si-ink);
  display: inline-flex;
  height: 64px;
  justify-content: center;
  text-decoration: none;
  width: 64px;
}

/* line 650, app/assets/stylesheets/pages/_news.scss */
.news-history__more-link svg {
  height: 10px;
  width: 16px;
}

/* line 655, app/assets/stylesheets/pages/_news.scss */
.news-history__more-link:hover {
  background: var(--si-red);
  color: #fff;
}

@media (max-width: 1100px) {
  /* line 661, app/assets/stylesheets/pages/_news.scss */
  .page--news-index {
    gap: 72px;
    padding-bottom: 112px;
  }
  /* line 666, app/assets/stylesheets/pages/_news.scss */
  .news-feature {
    grid-template-columns: 1fr;
  }
  /* line 670, app/assets/stylesheets/pages/_news.scss */
  .news-history__grid {
    gap: 40px 28px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  /* line 675, app/assets/stylesheets/pages/_news.scss */
  .news-calendar-month__cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  /* line 681, app/assets/stylesheets/pages/_news.scss */
  .page--news-index {
    gap: 48px;
    padding-bottom: 80px;
    padding-top: 8px;
  }
  /* line 687, app/assets/stylesheets/pages/_news.scss */
  .news-filter-bar__inner {
    gap: 18px;
  }
  /* line 691, app/assets/stylesheets/pages/_news.scss */
  .news-filter-bar__reset {
    margin-left: 0;
  }
  /* line 695, app/assets/stylesheets/pages/_news.scss */
  .news-feature__main,
.news-related,
.news-calendar,
.news-history {
    gap: 24px;
  }
  /* line 702, app/assets/stylesheets/pages/_news.scss */
  .news-feature__title-link {
    font-size: clamp(1.95rem, 9vw, 2.75rem);
  }
  /* line 706, app/assets/stylesheets/pages/_news.scss */
  .news-feature__summary {
    font-size: 1.2rem;
  }
  /* line 710, app/assets/stylesheets/pages/_news.scss */
  .news-related__heading,
.news-history__title,
.news-calendar__title,
.news-empty__title {
    font-size: clamp(1.55rem, 6vw, 2.1rem);
  }
  /* line 717, app/assets/stylesheets/pages/_news.scss */
  .news-related__title-link,
.news-calendar-entry__title-link,
.news-history-card__title-link {
    font-size: 1.15rem;
  }
  /* line 723, app/assets/stylesheets/pages/_news.scss */
  .news-calendar-month__cards {
    gap: 16px;
    grid-template-columns: 1fr;
  }
  /* line 728, app/assets/stylesheets/pages/_news.scss */
  .news-archive-card__content {
    gap: 8px;
    padding: 14px;
  }
  /* line 733, app/assets/stylesheets/pages/_news.scss */
  .news-archive-card__title-link {
    font-size: 1.05rem;
  }
  /* line 737, app/assets/stylesheets/pages/_news.scss */
  .news-calendar-entry {
    gap: 16px;
    grid-template-columns: 72px minmax(0, 1fr);
  }
  /* line 742, app/assets/stylesheets/pages/_news.scss */
  .news-calendar__pagination {
    justify-content: flex-start;
  }
  /* line 746, app/assets/stylesheets/pages/_news.scss */
  .news-history__grid {
    gap: 32px;
    grid-template-columns: 1fr;
  }
}

@media (max-width: 520px) {
  /* line 753, app/assets/stylesheets/pages/_news.scss */
  .news-feature__meta,
.news-calendar-entry__meta,
.news-history-card__meta {
    align-items: flex-start;
    justify-content: flex-start;
  }
  /* line 760, app/assets/stylesheets/pages/_news.scss */
  .news-feature__dot {
    display: none;
  }
  /* line 764, app/assets/stylesheets/pages/_news.scss */
  .news-calendar-entry {
    grid-template-columns: 1fr;
  }
  /* line 768, app/assets/stylesheets/pages/_news.scss */
  .news-calendar-entry__date {
    justify-items: start;
  }
}

/* line 773, app/assets/stylesheets/pages/_news.scss */
.news-filter-bar__inner {
  align-items: start;
  display: grid;
  gap: 12px;
}

/* line 779, app/assets/stylesheets/pages/_news.scss */
.news-filter-bar__label {
  padding-right: 0;
}

/* line 783, app/assets/stylesheets/pages/_news.scss */
.news-filter-bar__label::after {
  display: none;
}

/* line 787, app/assets/stylesheets/pages/_news.scss */
.news-filter-bar__chips {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  scrollbar-width: none;
}

/* line 794, app/assets/stylesheets/pages/_news.scss */
.news-filter-bar__chips::-webkit-scrollbar {
  display: none;
}

/* line 798, app/assets/stylesheets/pages/_news.scss */
.news-filter-bar__link {
  border: 1px solid var(--si-line);
  border-radius: 999px;
  padding: 11px 16px;
}

/* line 804, app/assets/stylesheets/pages/_news.scss */
.news-filter-bar__link.is-active {
  background: var(--si-red);
  border-color: var(--si-red);
  color: #fff;
}

/* line 810, app/assets/stylesheets/pages/_news.scss */
.news-related__item {
  align-items: start;
  display: grid;
  gap: 16px;
  grid-template-columns: 108px minmax(0, 1fr);
}

/* line 817, app/assets/stylesheets/pages/_news.scss */
.news-related__media-link {
  background: var(--si-bg-soft);
  display: block;
  overflow: hidden;
}

/* line 823, app/assets/stylesheets/pages/_news.scss */
.news-related__media {
  aspect-ratio: 1;
  display: block;
  object-fit: cover;
  width: 100%;
}

/* line 830, app/assets/stylesheets/pages/_news.scss */
.news-related__content {
  display: grid;
  gap: 8px;
}

/* line 835, app/assets/stylesheets/pages/_news.scss */
.news-calendar-month__label {
  border-bottom: 0;
  padding-bottom: 0;
}

/* line 840, app/assets/stylesheets/pages/_news.scss */
.news-calendar-month__cards {
  gap: 18px;
}

/* line 844, app/assets/stylesheets/pages/_news.scss */
.news-calendar-entry {
  background: var(--si-bg-paper);
  border: 1px solid var(--si-divider-soft);
  padding: 18px;
}

/* line 850, app/assets/stylesheets/pages/_news.scss */
.news-calendar__pagination-desktop {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

/* line 858, app/assets/stylesheets/pages/_news.scss */
.news-calendar__pagination-mobile {
  display: none;
}

/* line 862, app/assets/stylesheets/pages/_news.scss */
.news-calendar__page--disabled {
  color: var(--si-muted);
  pointer-events: none;
}

/* line 867, app/assets/stylesheets/pages/_news.scss */
.news-calendar__page-label {
  color: var(--si-muted);
  font-family: var(--si-font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.2px;
  line-height: 1.2;
  text-transform: uppercase;
}

@media (max-width: 760px) {
  /* line 878, app/assets/stylesheets/pages/_news.scss */
  .news-filter-bar__inner {
    gap: 10px;
  }
  /* line 882, app/assets/stylesheets/pages/_news.scss */
  .news-filter-bar__chips {
    gap: 10px;
    padding-bottom: 2px;
  }
  /* line 887, app/assets/stylesheets/pages/_news.scss */
  .news-filter-bar__link {
    font-size: 12px;
    padding: 10px 14px;
  }
  /* line 892, app/assets/stylesheets/pages/_news.scss */
  .news-related__item {
    gap: 14px;
    grid-template-columns: 84px minmax(0, 1fr);
  }
  /* line 897, app/assets/stylesheets/pages/_news.scss */
  .news-related__heading,
.news-calendar__title,
.news-empty__title {
    font-size: clamp(1.45rem, 6vw, 1.95rem);
  }
  /* line 903, app/assets/stylesheets/pages/_news.scss */
  .news-related__title-link,
.news-calendar-entry__title-link {
    font-size: 1.1rem;
  }
  /* line 908, app/assets/stylesheets/pages/_news.scss */
  .news-archive-card__title-link {
    font-size: 1rem;
  }
  /* line 912, app/assets/stylesheets/pages/_news.scss */
  .news-calendar-entry {
    gap: 14px;
    padding: 16px;
  }
  /* line 917, app/assets/stylesheets/pages/_news.scss */
  .news-calendar__pagination-desktop {
    display: none;
  }
  /* line 921, app/assets/stylesheets/pages/_news.scss */
  .news-calendar__pagination-mobile {
    align-items: center;
    display: flex;
    gap: 10px;
    justify-content: space-between;
    width: 100%;
  }
  /* line 929, app/assets/stylesheets/pages/_news.scss */
  .news-calendar__pagination-mobile .news-calendar__page {
    min-width: 92px;
    padding-left: 12px;
    padding-right: 12px;
  }
}

/* line 1, app/assets/stylesheets/pages/_events.scss */
.page--events-catalogue,
.page--campaigns-index,
.page--campaign {
  display: grid;
  gap: 80px;
}

/* line 8, app/assets/stylesheets/pages/_events.scss */
.collection-catalogue {
  gap: 72px;
  padding-bottom: 112px;
}

/* line 13, app/assets/stylesheets/pages/_events.scss */
.collection-catalogue__masthead {
  display: grid;
  gap: 24px;
}

/* line 18, app/assets/stylesheets/pages/_events.scss */
.collection-catalogue__masthead h1 {
  color: var(--si-ink);
  font-family: var(--si-font-display);
  font-size: clamp(2.5rem, 6vw, 4.75rem);
  font-weight: 800;
  letter-spacing: -0.05em;
  line-height: 0.95;
  margin: 0;
  text-transform: uppercase;
}

/* line 29, app/assets/stylesheets/pages/_events.scss */
.collection-catalogue__intro {
  color: var(--si-copy);
  font-family: var(--si-font-serif);
  font-size: clamp(1.05rem, 2vw, 1.3rem);
  line-height: 1.7;
  margin: 0;
  max-width: 760px;
}

/* line 38, app/assets/stylesheets/pages/_events.scss */
.collection-catalogue__section {
  display: grid;
  gap: 28px;
}

/* line 43, app/assets/stylesheets/pages/_events.scss */
.collection-catalogue__heading {
  align-items: center;
  display: flex;
  gap: 16px;
}

/* line 49, app/assets/stylesheets/pages/_events.scss */
.collection-catalogue__heading h2 {
  color: var(--si-ink);
  font-family: var(--si-font-display);
  font-size: clamp(1.45rem, 3vw, 1.8rem);
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1;
  margin: 0;
  text-transform: uppercase;
}

/* line 60, app/assets/stylesheets/pages/_events.scss */
.collection-catalogue__heading span {
  background: var(--si-red);
  display: block;
  height: 4px;
  width: 96px;
}

/* line 67, app/assets/stylesheets/pages/_events.scss */
.collection-catalogue__grid {
  display: grid;
  gap: 32px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

/* line 73, app/assets/stylesheets/pages/_events.scss */
.events-catalogue__section {
  margin-bottom: 112px;
}

/* line 77, app/assets/stylesheets/pages/_events.scss */
.page--events-catalogue .events-catalogue__section,
.page--campaigns-index .campaigns-grid-section,
.page--campaign .campaigns-grid-section {
  margin-bottom: 0;
}

/* line 83, app/assets/stylesheets/pages/_events.scss */
.events-catalogue__masthead,
.campaigns-index__masthead {
  margin-bottom: -8px;
}

/* line 88, app/assets/stylesheets/pages/_events.scss */
.events-catalogue__feature,
.campaigns-index__feature {
  margin-top: -16px;
}

/* line 93, app/assets/stylesheets/pages/_events.scss */
.events-catalogue__heading {
  align-items: center;
  display: flex;
  gap: 16px;
  margin-bottom: 40px;
}

/* line 100, app/assets/stylesheets/pages/_events.scss */
.events-catalogue__heading h2 {
  color: var(--si-ink);
  font-family: var(--si-font-display);
  font-size: clamp(1.45rem, 3vw, 1.8rem);
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1;
  margin: 0;
  text-transform: uppercase;
}

/* line 111, app/assets/stylesheets/pages/_events.scss */
.events-catalogue__heading span {
  background: var(--si-red);
  display: block;
  height: 4px;
  width: 96px;
}

/* line 118, app/assets/stylesheets/pages/_events.scss */
.events-catalogue__grid {
  display: grid;
  gap: 48px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

/* line 124, app/assets/stylesheets/pages/_events.scss */
.events-catalogue__section--past {
  background: var(--si-bg-soft);
  margin-left: -24px;
  margin-right: -24px;
  padding: 112px 24px 80px;
}

/* line 131, app/assets/stylesheets/pages/_events.scss */
.events-catalogue__section--past .events-catalogue__heading h2 {
  color: var(--si-copy);
}

/* line 135, app/assets/stylesheets/pages/_events.scss */
.events-catalogue__section--past .events-catalogue__heading span {
  background: var(--si-copy);
  opacity: 0.3;
}

/* line 140, app/assets/stylesheets/pages/_events.scss */
.event-card {
  display: flex;
  flex-direction: column;
}

/* line 145, app/assets/stylesheets/pages/_events.scss */
.event-card__media-link {
  display: block;
  margin-bottom: 24px;
}

/* line 150, app/assets/stylesheets/pages/_events.scss */
.event-card__media {
  display: block;
  object-fit: cover;
  width: 100%;
}

/* line 156, app/assets/stylesheets/pages/_events.scss */
.event-card--upcoming .event-card__media {
  aspect-ratio: 1.333;
}

/* line 160, app/assets/stylesheets/pages/_events.scss */
.event-card--past .event-card__media {
  aspect-ratio: 1.778;
  filter: saturate(0.1) contrast(0.95);
  opacity: 0.75;
}

/* line 166, app/assets/stylesheets/pages/_events.scss */
.event-card__content {
  display: flex;
  flex: 1;
  flex-direction: column;
}

/* line 172, app/assets/stylesheets/pages/_events.scss */
.event-card__date {
  color: var(--si-red);
  display: inline-flex;
  font-family: var(--si-font-body);
  font-size: 12px;
  font-weight: 800;
  gap: 8px;
  letter-spacing: 1.2px;
  line-height: 16px;
  margin: 0 0 12px;
  text-transform: uppercase;
}

/* line 185, app/assets/stylesheets/pages/_events.scss */
.event-card__date--past {
  color: var(--si-copy);
  font-weight: 700;
}

/* line 190, app/assets/stylesheets/pages/_events.scss */
.event-card__title {
  margin: 0 0 16px;
}

/* line 194, app/assets/stylesheets/pages/_events.scss */
.event-card__title-link {
  color: var(--si-ink);
  font-family: var(--si-font-serif);
  font-size: clamp(1.45rem, 2.3vw, 2rem);
  font-weight: 400;
  line-height: 1.25;
  text-decoration: none;
}

/* line 203, app/assets/stylesheets/pages/_events.scss */
.event-card--past .event-card__title-link {
  font-size: clamp(1.2rem, 2vw, 1.5rem);
  line-height: 1.25;
}

/* line 208, app/assets/stylesheets/pages/_events.scss */
.event-card__location {
  color: var(--si-copy);
  font-family: var(--si-font-body);
  font-size: 14px;
  line-height: 20px;
  margin: 0 0 32px;
}

/* line 216, app/assets/stylesheets/pages/_events.scss */
.event-card__button {
  border: 2px solid #000;
  color: var(--si-ink);
  display: block;
  font-family: var(--si-font-display);
  font-size: 16px;
  font-weight: 800;
  letter-spacing: -0.4px;
  line-height: 24px;
  margin-top: auto;
  padding: 18px 8px;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
}

/* line 232, app/assets/stylesheets/pages/_events.scss */
.event-card__button:hover {
  background: var(--si-ink);
  color: #fff;
}

/* line 237, app/assets/stylesheets/pages/_events.scss */
.event-card__inline-link {
  color: var(--si-red);
  font-family: var(--si-font-body);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1.2px;
  line-height: 16px;
  margin-top: auto;
  text-decoration: none;
  text-transform: uppercase;
}

@media (max-width: 1180px) {
  /* line 250, app/assets/stylesheets/pages/_events.scss */
  .collection-catalogue__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  /* line 254, app/assets/stylesheets/pages/_events.scss */
  .events-catalogue__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  /* line 260, app/assets/stylesheets/pages/_events.scss */
  .page--events-catalogue,
.page--campaigns-index,
.page--campaign {
    gap: 64px;
  }
  /* line 266, app/assets/stylesheets/pages/_events.scss */
  .collection-catalogue {
    gap: 56px;
    padding-bottom: 72px;
  }
  /* line 271, app/assets/stylesheets/pages/_events.scss */
  .collection-catalogue__grid {
    grid-template-columns: 1fr;
  }
  /* line 275, app/assets/stylesheets/pages/_events.scss */
  .collection-catalogue__heading {
    align-items: start;
    flex-direction: column;
  }
  /* line 280, app/assets/stylesheets/pages/_events.scss */
  .events-catalogue__heading {
    align-items: start;
    flex-direction: column;
  }
  /* line 285, app/assets/stylesheets/pages/_events.scss */
  .events-catalogue__grid {
    grid-template-columns: 1fr;
  }
  /* line 289, app/assets/stylesheets/pages/_events.scss */
  .events-catalogue__section--past {
    margin-left: -16px;
    margin-right: -16px;
    padding-left: 16px;
    padding-right: 16px;
  }
}

/* line 297, app/assets/stylesheets/pages/_events.scss */
.collection-catalogue__jump-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

/* line 303, app/assets/stylesheets/pages/_events.scss */
.collection-catalogue__jump-link {
  align-items: center;
  border: 1px solid var(--si-line);
  border-radius: 999px;
  color: var(--si-ink);
  display: inline-flex;
  font-family: var(--si-font-body);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1.1px;
  min-height: 44px;
  padding: 10px 16px;
  text-decoration: none;
  text-transform: uppercase;
}

/* line 319, app/assets/stylesheets/pages/_events.scss */
.collection-catalogue__jump-link:hover {
  border-color: var(--si-red);
  color: var(--si-red);
}

/* line 324, app/assets/stylesheets/pages/_events.scss */
.collection-catalogue__collapse {
  display: grid;
  gap: 24px;
}

/* line 329, app/assets/stylesheets/pages/_events.scss */
.collection-catalogue__collapse-summary {
  display: none;
}

/* line 333, app/assets/stylesheets/pages/_events.scss */
.page--campaigns-index #active-campaigns .catalogue-card {
  border-top: 3px solid var(--si-green);
}

@media (max-width: 760px) {
  /* line 338, app/assets/stylesheets/pages/_events.scss */
  .collection-catalogue__jump-nav {
    gap: 10px;
  }
  /* line 342, app/assets/stylesheets/pages/_events.scss */
  .collection-catalogue__jump-link {
    font-size: 11px;
    min-height: 42px;
    padding: 10px 14px;
  }
  /* line 348, app/assets/stylesheets/pages/_events.scss */
  .collection-catalogue__collapse {
    gap: 18px;
  }
  /* line 352, app/assets/stylesheets/pages/_events.scss */
  .collection-catalogue__collapse-summary {
    align-items: center;
    border: 1px solid var(--si-line);
    border-radius: 999px;
    color: var(--si-ink);
    cursor: pointer;
    display: inline-flex;
    font-family: var(--si-font-body);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1.1px;
    min-height: 44px;
    padding: 10px 16px;
    text-transform: uppercase;
  }
  /* line 368, app/assets/stylesheets/pages/_events.scss */
  .collection-catalogue__collapse-summary::-webkit-details-marker {
    display: none;
  }
  /* line 372, app/assets/stylesheets/pages/_events.scss */
  .page--campaigns-index #active-campaigns .catalogue-card {
    border-top-width: 4px;
  }
}

/* line 1, app/assets/stylesheets/pages/_event_template.scss */
.event-template {
  margin: 0 auto;
  max-width: 1280px;
}

/* line 6, app/assets/stylesheets/pages/_event_template.scss */
.event-template__header {
  display: grid;
  gap: 24px;
  max-width: 896px;
  width: 100%;
}

/* line 13, app/assets/stylesheets/pages/_event_template.scss */
.event-template__header--page {
  max-width: 1040px;
}

/* line 17, app/assets/stylesheets/pages/_event_template.scss */
.event-template__eyebrow {
  color: var(--si-red);
  font-family: var(--si-font-body);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1.4px;
  line-height: 1.2;
  margin: 0;
  text-transform: uppercase;
}

/* line 28, app/assets/stylesheets/pages/_event_template.scss */
.event-template__header h1,
.event-template__header h2 {
  font-family: var(--si-font-display);
  font-size: clamp(2.15rem, 5.4vw, 4.25rem);
  font-weight: 800;
  letter-spacing: -0.05em;
  line-height: 0.98;
  margin: 0;
  text-transform: uppercase;
}

/* line 39, app/assets/stylesheets/pages/_event_template.scss */
.event-template__title-link {
  color: inherit;
  text-decoration: none;
}

/* line 44, app/assets/stylesheets/pages/_event_template.scss */
.event-template__title-link:hover {
  text-decoration: underline;
  text-decoration-color: var(--si-red);
  text-decoration-thickness: 3px;
  text-underline-offset: 5px;
}

/* line 51, app/assets/stylesheets/pages/_event_template.scss */
.event-template__summary {
  color: var(--si-copy);
  font-family: var(--si-font-serif);
  font-size: clamp(1.25rem, 2.5vw, 1.8rem);
  font-style: italic;
  line-height: 1.2;
  margin: 0;
}

/* line 60, app/assets/stylesheets/pages/_event_template.scss */
.event-template__meta {
  border-bottom: 1px solid rgba(235, 187, 180, 0.2);
  border-top: 1px solid rgba(235, 187, 180, 0.2);
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  list-style: none;
  margin: 0;
  padding: 17px 0;
}

/* line 71, app/assets/stylesheets/pages/_event_template.scss */
.event-template__meta li {
  display: inline-flex;
  gap: 8px;
}

/* line 76, app/assets/stylesheets/pages/_event_template.scss */
.event-template__meta span {
  color: var(--si-red);
  font-family: var(--si-font-body);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1px;
  line-height: 16px;
  text-transform: uppercase;
}

/* line 86, app/assets/stylesheets/pages/_event_template.scss */
.event-template__meta strong {
  color: var(--si-ink);
  font-family: var(--si-font-body);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.2px;
  line-height: 16px;
  text-transform: uppercase;
}

/* line 96, app/assets/stylesheets/pages/_event_template.scss */
.event-template__hero {
  margin: 48px 0 0;
}

/* line 100, app/assets/stylesheets/pages/_event_template.scss */
.event-template__hero-link {
  display: block;
}

/* line 104, app/assets/stylesheets/pages/_event_template.scss */
.event-template__hero img {
  aspect-ratio: 1280 / 528;
  display: block;
  object-fit: cover;
  width: 100%;
}

/* line 111, app/assets/stylesheets/pages/_event_template.scss */
.event-template__content-grid {
  display: grid;
  gap: 48px;
  grid-template-columns: minmax(0, 7fr) minmax(300px, 4fr);
  margin-top: 48px;
  padding-top: 16px;
}

/* line 119, app/assets/stylesheets/pages/_event_template.scss */
.event-template__about header {
  border-left: 8px solid var(--si-red);
  margin-bottom: 32px;
  padding-left: 32px;
}

/* line 125, app/assets/stylesheets/pages/_event_template.scss */
.event-template__about h2,
.event-template__about h3 {
  font-family: var(--si-font-display);
  font-size: 24px;
  font-weight: 800;
  line-height: 30px;
  margin: 0;
  text-transform: uppercase;
}

/* line 135, app/assets/stylesheets/pages/_event_template.scss */
.event-template__body {
  color: var(--si-ink);
  font-family: var(--si-font-serif);
  font-size: clamp(1rem, 2vw, 1.5rem);
  line-height: 1.33;
}

/* line 142, app/assets/stylesheets/pages/_event_template.scss */
.event-template__body p {
  margin: 0 0 24px;
}

/* line 146, app/assets/stylesheets/pages/_event_template.scss */
.event-template__aside {
  background: var(--si-bg-soft);
  border-top: 4px solid #000;
  display: grid;
  gap: 24px;
  padding: 36px 32px 32px;
}

/* line 154, app/assets/stylesheets/pages/_event_template.scss */
.event-template__aside h3 {
  font-family: var(--si-font-display);
  font-size: 18px;
  font-weight: 800;
  letter-spacing: -0.5px;
  line-height: 24px;
  margin: 0;
  text-transform: uppercase;
}

/* line 164, app/assets/stylesheets/pages/_event_template.scss */
.event-template__aside dl {
  display: grid;
  gap: 18px;
  margin: 0;
}

/* line 170, app/assets/stylesheets/pages/_event_template.scss */
.event-template__aside dt {
  color: var(--si-copy);
  font-family: var(--si-font-body);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1px;
  line-height: 15px;
  margin: 0 0 4px;
  text-transform: uppercase;
}

/* line 181, app/assets/stylesheets/pages/_event_template.scss */
.event-template__aside dd {
  color: var(--si-ink);
  font-family: var(--si-font-body);
  font-size: 18px;
  font-weight: 700;
  line-height: 28px;
  margin: 0;
}

/* line 190, app/assets/stylesheets/pages/_event_template.scss */
.event-template__cta {
  align-items: center;
  background: var(--si-red);
  color: #fff;
  display: inline-flex;
  font-family: var(--si-font-display);
  font-size: 20px;
  font-weight: 800;
  justify-content: center;
  letter-spacing: -1px;
  line-height: 28px;
  min-height: 86px;
  padding: 24px 32px;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  transition: background-color var(--si-motion-fast) var(--si-ease-soft), box-shadow var(--si-motion-fast) var(--si-ease-soft), transform var(--si-motion-fast) var(--si-ease-standard);
}

/* line 212, app/assets/stylesheets/pages/_event_template.scss */
.event-template__cta:hover {
  background: #8f0000;
  box-shadow: 0 20px 34px rgba(143, 0, 0, 0.16);
  transform: translateY(-2px);
}

/* line 218, app/assets/stylesheets/pages/_event_template.scss */
.event-template__aside-note {
  color: var(--si-copy);
  font-family: var(--si-font-body);
  font-size: 10px;
  letter-spacing: 1px;
  line-height: 15px;
  margin: 0;
  text-align: center;
  text-transform: uppercase;
}

@media (max-width: 1180px) {
  /* line 230, app/assets/stylesheets/pages/_event_template.scss */
  .event-template__content-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  /* line 236, app/assets/stylesheets/pages/_event_template.scss */
  .event-template__meta {
    gap: 16px;
  }
  /* line 240, app/assets/stylesheets/pages/_event_template.scss */
  .event-template__meta li {
    display: grid;
    gap: 4px;
  }
  /* line 245, app/assets/stylesheets/pages/_event_template.scss */
  .event-template__content-grid {
    gap: 32px;
    margin-top: 40px;
  }
  /* line 250, app/assets/stylesheets/pages/_event_template.scss */
  .event-template__about header {
    padding-left: 20px;
  }
  /* line 254, app/assets/stylesheets/pages/_event_template.scss */
  .event-template__aside {
    padding: 28px 24px 24px;
  }
}

/* line 259, app/assets/stylesheets/pages/_event_template.scss */
.event-template__about {
  order: 1;
}

/* line 263, app/assets/stylesheets/pages/_event_template.scss */
.event-template__aside {
  order: 2;
}

/* line 267, app/assets/stylesheets/pages/_event_template.scss */
.event-template__sticky-cta {
  display: none;
  opacity: 0;
  transform: translate3d(0, 18px, 0);
  transition: opacity var(--si-motion-base) var(--si-ease-soft), transform var(--si-motion-base) var(--si-ease-standard);
}

/* line 276, app/assets/stylesheets/pages/_event_template.scss */
.event-template__sticky-copy {
  display: grid;
  gap: 2px;
}

/* line 281, app/assets/stylesheets/pages/_event_template.scss */
.event-template__sticky-label {
  color: rgba(255, 255, 255, 0.72);
  font-family: var(--si-font-body);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 1.2px;
  line-height: 1.2;
  text-transform: uppercase;
}

/* line 291, app/assets/stylesheets/pages/_event_template.scss */
.event-template__sticky-copy strong {
  color: #fff;
  font-family: var(--si-font-heading);
  font-size: 1rem;
  font-weight: 800;
  line-height: 1.2;
  text-transform: uppercase;
}

/* line 300, app/assets/stylesheets/pages/_event_template.scss */
.event-template__sticky-button {
  align-items: center;
  background: var(--si-red);
  color: #fff;
  display: inline-flex;
  font-family: var(--si-font-heading);
  font-size: 12px;
  font-weight: 800;
  justify-content: center;
  letter-spacing: 1px;
  min-height: 44px;
  padding: 10px 16px;
  text-decoration: none;
  text-transform: uppercase;
  white-space: nowrap;
}

@media (max-width: 760px) {
  /* line 318, app/assets/stylesheets/pages/_event_template.scss */
  .page--event-detail,
.page--campaign {
    padding-bottom: 132px;
  }
  /* line 323, app/assets/stylesheets/pages/_event_template.scss */
  .event-template__hero {
    margin-top: 36px;
  }
  /* line 327, app/assets/stylesheets/pages/_event_template.scss */
  .event-template__hero img {
    aspect-ratio: 4 / 3;
  }
  /* line 331, app/assets/stylesheets/pages/_event_template.scss */
  .event-template__aside {
    order: 1;
    padding: 24px 20px 20px;
  }
  /* line 336, app/assets/stylesheets/pages/_event_template.scss */
  .event-template__about {
    order: 2;
  }
  /* line 340, app/assets/stylesheets/pages/_event_template.scss */
  .event-template__about header {
    margin-bottom: 24px;
    padding-left: 18px;
  }
  /* line 345, app/assets/stylesheets/pages/_event_template.scss */
  .event-template__body {
    font-size: 1.02rem;
    line-height: 1.7;
  }
  /* line 350, app/assets/stylesheets/pages/_event_template.scss */
  .event-template__cta {
    font-size: 16px;
    line-height: 1.2;
    min-height: 56px;
    padding: 16px 20px;
    width: 100%;
  }
  /* line 358, app/assets/stylesheets/pages/_event_template.scss */
  .event-template__aside-note {
    text-align: left;
  }
  /* line 362, app/assets/stylesheets/pages/_event_template.scss */
  .event-template__sticky-cta.is-visible {
    align-items: center;
    background: rgba(23, 23, 23, 0.94);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    bottom: 0;
    column-gap: 12px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    left: 0;
    padding: 12px 16px;
    padding-bottom: calc(12px + env(safe-area-inset-bottom));
    position: fixed;
    right: 0;
    opacity: 1;
    transform: translate3d(0, 0, 0);
    z-index: 45;
  }
}

/* line 1, app/assets/stylesheets/pages/_content.scss */
.page--article {
  display: grid;
  gap: 56px;
  padding-bottom: 112px;
}

/* line 7, app/assets/stylesheets/pages/_content.scss */
.article-detail {
  display: grid;
  gap: 32px;
}

/* line 12, app/assets/stylesheets/pages/_content.scss */
.article-detail__header {
  background: var(--si-bg-paper);
  border: 1px solid var(--si-border);
  display: grid;
  gap: 16px;
  padding: 40px;
}

/* line 20, app/assets/stylesheets/pages/_content.scss */
.article-detail h1 {
  color: var(--si-ink);
  font-family: var(--si-font-heading);
  font-size: clamp(2rem, 4vw, 3.35rem);
  font-weight: 900;
  letter-spacing: -0.045em;
  line-height: 1.02;
  margin: 0;
  text-transform: uppercase;
}

/* line 31, app/assets/stylesheets/pages/_content.scss */
.campaign-detail h1 {
  color: var(--si-ink);
  font-family: var(--si-font-heading);
  font-size: clamp(2.6rem, 6vw, 5rem);
  font-weight: 900;
  letter-spacing: -0.06em;
  line-height: 0.94;
  margin: 0;
  text-transform: uppercase;
}

/* line 42, app/assets/stylesheets/pages/_content.scss */
.article-detail__back,
.article-followup__back {
  color: var(--si-red);
  font-family: var(--si-font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.2px;
  line-height: 1.2;
  text-decoration: none;
  text-transform: uppercase;
}

/* line 54, app/assets/stylesheets/pages/_content.scss */
.article-detail__back:hover,
.article-followup__back:hover {
  text-decoration: underline;
  text-decoration-color: var(--si-red);
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
}

/* line 62, app/assets/stylesheets/pages/_content.scss */
.article-detail__kicker,
.campaign-detail__status,
.article-followup__eyebrow {
  color: var(--si-red);
  font-family: var(--si-font-body);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1px;
  line-height: 1.2;
  margin: 0;
  text-transform: uppercase;
}

/* line 75, app/assets/stylesheets/pages/_content.scss */
.campaign-detail__status {
  color: var(--si-green);
}

/* line 79, app/assets/stylesheets/pages/_content.scss */
.article-detail__standfirst,
.campaign-detail__summary {
  color: var(--si-copy);
  font-family: var(--si-font-serif);
  font-size: clamp(1.15rem, 2vw, 1.6rem);
  line-height: 1.6;
  margin: 0;
  max-width: 70ch;
}

/* line 89, app/assets/stylesheets/pages/_content.scss */
.article-detail__meta {
  align-items: center;
  color: var(--si-muted);
  display: flex;
  flex-wrap: wrap;
  font-family: var(--si-font-body);
  font-size: 11px;
  gap: 8px;
  letter-spacing: 1px;
  line-height: 1.3;
  margin: 0;
  text-transform: uppercase;
}

/* line 103, app/assets/stylesheets/pages/_content.scss */
.article-detail__content-grid {
  align-items: start;
  display: grid;
  gap: 32px;
  grid-template-columns: minmax(0, 8fr) minmax(280px, 4fr);
}

/* line 110, app/assets/stylesheets/pages/_content.scss */
.article-detail__primary {
  display: grid;
  gap: 32px;
  min-width: 0;
}

/* line 116, app/assets/stylesheets/pages/_content.scss */
.article-detail__hero {
  background: var(--si-bg-paper);
  border: 1px solid var(--si-border);
  margin: 0;
}

/* line 122, app/assets/stylesheets/pages/_content.scss */
.article-detail__hero img,
.campaign-detail__hero img {
  aspect-ratio: 16 / 9;
  display: block;
  object-fit: cover;
  width: 100%;
}

/* line 130, app/assets/stylesheets/pages/_content.scss */
.article-detail__caption {
  color: var(--si-copy);
  display: flex;
  flex-wrap: wrap;
  font-family: var(--si-font-body);
  font-size: 13px;
  gap: 12px 20px;
  justify-content: space-between;
  line-height: 1.5;
  margin: 0;
  padding: 14px 18px 16px;
}

/* line 143, app/assets/stylesheets/pages/_content.scss */
.article-detail__caption-credit {
  margin-left: auto;
}

/* line 147, app/assets/stylesheets/pages/_content.scss */
.article-detail__aside {
  display: grid;
  gap: 16px;
  position: sticky;
  top: 104px;
}

/* line 154, app/assets/stylesheets/pages/_content.scss */
.article-detail__aside-card {
  background: var(--si-bg-paper);
  border: 1px solid var(--si-border);
  display: grid;
  gap: 16px;
  padding: 20px;
}

/* line 162, app/assets/stylesheets/pages/_content.scss */
.article-detail__aside-label {
  color: var(--si-ink);
  font-family: var(--si-font-heading);
  font-size: 18px;
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin: 0;
  text-transform: uppercase;
}

/* line 173, app/assets/stylesheets/pages/_content.scss */
.article-share {
  display: grid;
  gap: 12px;
}

/* line 178, app/assets/stylesheets/pages/_content.scss */
.article-share__actions {
  display: grid;
  gap: 10px;
}

/* line 183, app/assets/stylesheets/pages/_content.scss */
.article-share__button {
  align-items: center;
  background: var(--si-ink);
  border: 1px solid var(--si-ink);
  color: #fff;
  cursor: pointer;
  display: inline-flex;
  font-family: var(--si-font-body);
  font-size: 11px;
  font-weight: 700;
  justify-content: center;
  letter-spacing: 1px;
  min-height: 42px;
  padding: 10px 14px;
  text-transform: uppercase;
  transition: background-color 160ms ease, border-color 160ms ease, color 160ms ease;
}

/* line 201, app/assets/stylesheets/pages/_content.scss */
.article-share__button:hover {
  background: var(--si-red);
  border-color: var(--si-red);
}

/* line 206, app/assets/stylesheets/pages/_content.scss */
.article-share__button--secondary {
  background: transparent;
  color: var(--si-ink);
}

/* line 211, app/assets/stylesheets/pages/_content.scss */
.article-share__button--secondary:hover {
  background: var(--si-ink);
  border-color: var(--si-ink);
  color: #fff;
}

/* line 217, app/assets/stylesheets/pages/_content.scss */
.article-share__status {
  color: var(--si-copy);
  font-family: var(--si-font-body);
  font-size: 13px;
  line-height: 1.5;
  margin: 0;
  min-height: 20px;
}

/* line 226, app/assets/stylesheets/pages/_content.scss */
.article-facts {
  display: grid;
  gap: 14px;
  margin: 0;
}

/* line 232, app/assets/stylesheets/pages/_content.scss */
.article-facts__row {
  border-top: 1px solid var(--si-border);
  display: grid;
  gap: 4px;
  padding-top: 14px;
}

/* line 239, app/assets/stylesheets/pages/_content.scss */
.article-facts__row:first-child {
  border-top: 0;
  padding-top: 0;
}

/* line 244, app/assets/stylesheets/pages/_content.scss */
.article-facts dt {
  color: var(--si-muted);
  font-family: var(--si-font-body);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1px;
  line-height: 1.2;
  margin: 0;
  text-transform: uppercase;
}

/* line 255, app/assets/stylesheets/pages/_content.scss */
.article-facts dd {
  color: var(--si-ink);
  font-family: var(--si-font-serif);
  font-size: 1rem;
  line-height: 1.5;
  margin: 0;
}

/* line 263, app/assets/stylesheets/pages/_content.scss */
.article-detail__cta-link {
  width: 100%;
}

/* line 267, app/assets/stylesheets/pages/_content.scss */
.article-detail__body,
.campaign-detail__body,
.generic-page__body,
.donate-body {
  color: var(--si-ink);
  line-height: 1.8;
}

/* line 275, app/assets/stylesheets/pages/_content.scss */
.article-detail__body {
  background: var(--si-bg-paper);
  border: 1px solid var(--si-border);
  font-family: var(--si-font-serif);
  font-size: 1.08rem;
  line-height: 1.88;
  padding: 36px 40px 48px;
}

/* line 284, app/assets/stylesheets/pages/_content.scss */
.article-detail__body > *:first-child {
  margin-top: 0;
}

/* line 288, app/assets/stylesheets/pages/_content.scss */
.article-detail__body p,
.campaign-detail__body p,
.generic-page__body p,
.donate-body p {
  margin: 0 0 22px;
}

/* line 295, app/assets/stylesheets/pages/_content.scss */
.article-detail__body h2,
.article-detail__body h3 {
  color: var(--si-ink);
  font-family: var(--si-font-heading);
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1;
  margin: 0;
  text-transform: uppercase;
}

/* line 306, app/assets/stylesheets/pages/_content.scss */
.article-detail__body h2 {
  font-size: clamp(1.9rem, 3vw, 2.75rem);
  margin-bottom: 16px;
  margin-top: 48px;
}

/* line 312, app/assets/stylesheets/pages/_content.scss */
.article-detail__body h3 {
  font-size: clamp(1.45rem, 2vw, 2rem);
  margin-bottom: 12px;
  margin-top: 36px;
}

/* line 318, app/assets/stylesheets/pages/_content.scss */
.article-detail__body ul,
.article-detail__body ol {
  margin: 0 0 24px;
  padding-left: 1.25rem;
}

/* line 324, app/assets/stylesheets/pages/_content.scss */
.article-detail__body li + li {
  margin-top: 10px;
}

/* line 328, app/assets/stylesheets/pages/_content.scss */
.article-detail__body strong {
  color: var(--si-ink);
  font-weight: 700;
}

/* line 333, app/assets/stylesheets/pages/_content.scss */
.article-detail__body a {
  color: var(--si-ink);
  text-decoration: underline;
  text-decoration-color: var(--si-red);
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
}

/* line 341, app/assets/stylesheets/pages/_content.scss */
.article-detail__body blockquote {
  border-left: 4px solid var(--si-red);
  color: var(--si-copy);
  font-family: var(--si-font-serif);
  font-size: clamp(1.2rem, 2vw, 1.45rem);
  line-height: 1.65;
  margin: 28px 0;
  padding: 4px 0 4px 22px;
}

/* line 351, app/assets/stylesheets/pages/_content.scss */
.article-detail__body img {
  display: block;
  height: auto;
  max-width: 100%;
}

/* line 357, app/assets/stylesheets/pages/_content.scss */
.article-detail__body figure {
  margin: 32px 0;
}

/* line 361, app/assets/stylesheets/pages/_content.scss */
.article-detail__body figcaption {
  color: var(--si-copy);
  font-family: var(--si-font-body);
  font-size: 13px;
  line-height: 1.5;
  margin-top: 12px;
}

/* line 369, app/assets/stylesheets/pages/_content.scss */
.article-detail__body iframe {
  border: 0;
  min-height: 360px;
  width: 100%;
}

/* line 375, app/assets/stylesheets/pages/_content.scss */
.article-followup {
  display: grid;
  gap: 24px;
}

/* line 380, app/assets/stylesheets/pages/_content.scss */
.article-followup__header {
  align-items: end;
  border-top: 4px solid var(--si-ink);
  display: flex;
  gap: 16px;
  justify-content: space-between;
  padding-top: 24px;
}

/* line 389, app/assets/stylesheets/pages/_content.scss */
.article-followup__header h2,
.section-heading h2 {
  color: var(--si-ink);
  font-family: var(--si-font-heading);
  font-size: clamp(1.9rem, 3vw, 2.8rem);
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1;
  margin: 6px 0 0;
  text-transform: uppercase;
}

/* line 401, app/assets/stylesheets/pages/_content.scss */
.article-followup__grid {
  margin-top: 8px;
}

/* line 405, app/assets/stylesheets/pages/_content.scss */
.campaign-detail,
.generic-page {
  margin: 0 auto;
  max-width: 960px;
}

/* line 411, app/assets/stylesheets/pages/_content.scss */
.campaign-detail__body,
.generic-page__body,
.donate-body {
  font-family: var(--si-font-body);
}

/* line 417, app/assets/stylesheets/pages/_content.scss */
.section-heading {
  align-items: center;
  border-bottom: 1px solid var(--si-border);
  display: inline-flex;
  margin-bottom: 20px;
  padding-bottom: 8px;
}

/* line 425, app/assets/stylesheets/pages/_content.scss */
.section-heading--accent {
  border-bottom-color: var(--si-green);
}

/* line 429, app/assets/stylesheets/pages/_content.scss */
.empty-state {
  color: var(--si-muted);
  margin: 0;
}

/* line 434, app/assets/stylesheets/pages/_content.scss */
.empty-state--inverse {
  color: rgba(255, 255, 255, 0.68);
}

@media (max-width: 1180px) {
  /* line 439, app/assets/stylesheets/pages/_content.scss */
  .page--article {
    gap: 48px;
    padding-bottom: 96px;
  }
  /* line 444, app/assets/stylesheets/pages/_content.scss */
  .article-detail__content-grid {
    grid-template-columns: 1fr;
  }
  /* line 448, app/assets/stylesheets/pages/_content.scss */
  .article-detail__aside {
    order: -1;
    position: static;
  }
  /* line 453, app/assets/stylesheets/pages/_content.scss */
  .article-share__actions {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  /* line 459, app/assets/stylesheets/pages/_content.scss */
  .page--article {
    gap: 40px;
    padding-bottom: 72px;
  }
  /* line 464, app/assets/stylesheets/pages/_content.scss */
  .article-detail__header,
.article-detail__body {
    padding: 24px;
  }
  /* line 469, app/assets/stylesheets/pages/_content.scss */
  .article-detail__caption {
    padding: 12px 14px 14px;
  }
  /* line 473, app/assets/stylesheets/pages/_content.scss */
  .article-followup__header {
    align-items: start;
    flex-direction: column;
  }
  /* line 478, app/assets/stylesheets/pages/_content.scss */
  .article-share__actions {
    display: grid;
  }
  /* line 482, app/assets/stylesheets/pages/_content.scss */
  .article-detail__body iframe {
    min-height: 240px;
  }
}

/* line 487, app/assets/stylesheets/pages/_content.scss */
.generic-page__header {
  background: var(--si-bg-paper);
  border: 1px solid var(--si-border);
  margin-bottom: 24px;
  padding: 32px 40px;
}

/* line 494, app/assets/stylesheets/pages/_content.scss */
.generic-page__body,
.donate-body {
  background: var(--si-bg-paper);
  border: 1px solid var(--si-border);
  color: var(--si-ink);
  font-family: var(--si-font-serif);
  font-size: 1.05rem;
  line-height: 1.88;
  padding: 36px 40px 48px;
}

/* line 505, app/assets/stylesheets/pages/_content.scss */
.generic-page__body > *:first-child,
.donate-body > *:first-child {
  margin-top: 0;
}

/* line 510, app/assets/stylesheets/pages/_content.scss */
.generic-page__body h2,
.generic-page__body h3,
.donate-body h2,
.donate-body h3 {
  color: var(--si-ink);
  font-family: var(--si-font-heading);
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1;
  margin: 0;
  text-transform: uppercase;
}

/* line 523, app/assets/stylesheets/pages/_content.scss */
.generic-page__body h2,
.donate-body h2 {
  font-size: clamp(1.9rem, 3vw, 2.75rem);
  margin-bottom: 16px;
  margin-top: 48px;
}

/* line 530, app/assets/stylesheets/pages/_content.scss */
.generic-page__body h3,
.donate-body h3 {
  font-size: clamp(1.45rem, 2vw, 2rem);
  margin-bottom: 12px;
  margin-top: 36px;
}

/* line 537, app/assets/stylesheets/pages/_content.scss */
.generic-page__body ul,
.generic-page__body ol,
.donate-body ul,
.donate-body ol {
  margin: 0 0 24px;
  padding-left: 1.25rem;
}

/* line 545, app/assets/stylesheets/pages/_content.scss */
.article-detail__body table,
.generic-page__body table,
.donate-body table {
  border-collapse: collapse;
  display: block;
  margin: 28px 0;
  max-width: 100%;
  overflow-x: auto;
  white-space: nowrap;
}

/* line 556, app/assets/stylesheets/pages/_content.scss */
.article-detail__body th,
.article-detail__body td,
.generic-page__body th,
.generic-page__body td,
.donate-body th,
.donate-body td {
  border: 1px solid var(--si-border);
  padding: 10px 12px;
}

/* line 566, app/assets/stylesheets/pages/_content.scss */
.article-detail__body pre,
.generic-page__body pre,
.donate-body pre {
  background: #f5f3f3;
  overflow-x: auto;
  padding: 18px;
}

/* line 574, app/assets/stylesheets/pages/_content.scss */
.generic-page__body iframe,
.donate-body iframe {
  border: 0;
  min-height: 320px;
  width: 100%;
}

@media (max-width: 1180px) {
  /* line 582, app/assets/stylesheets/pages/_content.scss */
  .article-detail__aside {
    order: 2;
  }
}

@media (max-width: 760px) {
  /* line 588, app/assets/stylesheets/pages/_content.scss */
  .generic-page__header,
.generic-page__body,
.donate-body {
    padding: 24px;
  }
  /* line 594, app/assets/stylesheets/pages/_content.scss */
  .generic-page__body,
.donate-body {
    font-size: 1rem;
    line-height: 1.8;
  }
  /* line 600, app/assets/stylesheets/pages/_content.scss */
  .generic-page__body iframe,
.donate-body iframe {
    min-height: 240px;
  }
}

/* line 1, app/assets/stylesheets/pages/_donate.scss */
.donate-hero {
  background: var(--si-bg-soft);
  margin-bottom: 24px;
  padding: 28px;
}

/* line 7, app/assets/stylesheets/pages/_donate.scss */
.donate-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

/* line 14, app/assets/stylesheets/pages/_donate.scss */
.donate-impact {
  margin-bottom: 24px;
}

/* line 18, app/assets/stylesheets/pages/_donate.scss */
.donate-impact h2 {
  font-family: var(--si-font-heading);
  font-size: 1.4rem;
  line-height: 1.2;
  margin: 0 0 12px;
  text-transform: uppercase;
}

/* line 26, app/assets/stylesheets/pages/_donate.scss */
.donate-impact ul {
  margin: 0;
  padding-left: 20px;
}

/* line 31, app/assets/stylesheets/pages/_donate.scss */
.donate-impact li {
  margin-bottom: 8px;
}

/* line 35, app/assets/stylesheets/pages/_donate.scss */
.donate-hero {
  background: var(--si-bg-paper);
  border: 1px solid var(--si-border);
  display: grid;
  gap: 18px;
  padding: 32px;
}

/* line 43, app/assets/stylesheets/pages/_donate.scss */
.donate-hero__actions {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

/* line 49, app/assets/stylesheets/pages/_donate.scss */
.donate-hero__button,
.donate-impact__button {
  width: 100%;
}

/* line 54, app/assets/stylesheets/pages/_donate.scss */
.donate-impact {
  display: grid;
  gap: 18px;
}

/* line 59, app/assets/stylesheets/pages/_donate.scss */
.donate-impact__list {
  display: grid;
  gap: 14px;
  list-style: none;
  margin: 0;
  padding: 0;
}

/* line 67, app/assets/stylesheets/pages/_donate.scss */
.donate-impact__list li {
  background: var(--si-bg-paper);
  border: 1px solid var(--si-border);
  color: var(--si-ink);
  margin: 0;
  padding: 18px 20px;
}

/* line 75, app/assets/stylesheets/pages/_donate.scss */
.donate-impact__cta {
  margin-top: 6px;
}

@media (max-width: 760px) {
  /* line 80, app/assets/stylesheets/pages/_donate.scss */
  .donate-hero {
    padding: 24px;
  }
  /* line 84, app/assets/stylesheets/pages/_donate.scss */
  .donate-hero__actions {
    grid-template-columns: 1fr;
  }
  /* line 88, app/assets/stylesheets/pages/_donate.scss */
  .donate-impact__list li {
    padding: 16px 18px;
  }
}

/* line 1, app/assets/stylesheets/pages/_about.scss */
.page--about {
  background: var(--si-bg);
  padding-bottom: 0;
}

/* line 6, app/assets/stylesheets/pages/_about.scss */
.about-shell {
  margin: 0 auto;
  max-width: calc(var(--si-shell) + (var(--si-gutter) * 2));
  padding-left: var(--si-gutter);
  padding-right: var(--si-gutter);
}

/* line 13, app/assets/stylesheets/pages/_about.scss */
.about-hero {
  background: var(--si-bg-paper);
  padding: 28px 0 42px;
}

/* line 18, app/assets/stylesheets/pages/_about.scss */
.about-hero__inner {
  align-items: stretch;
  border-bottom: 2px solid var(--si-line);
  display: grid;
  gap: 32px;
  grid-template-columns: minmax(0, 7fr) minmax(320px, 5fr);
  padding-bottom: 28px;
}

/* line 27, app/assets/stylesheets/pages/_about.scss */
.about-hero__copy {
  align-items: start;
  display: grid;
  gap: 22px;
}

/* line 33, app/assets/stylesheets/pages/_about.scss */
.about-hero__kicker,
.about-label {
  color: var(--si-red);
  font-family: var(--si-font-body);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 1.4px;
  line-height: 1.2;
  margin: 0;
  text-transform: uppercase;
}

/* line 45, app/assets/stylesheets/pages/_about.scss */
.about-label--inverse {
  color: rgba(255, 255, 255, 0.72);
}

/* line 49, app/assets/stylesheets/pages/_about.scss */
.about-hero h1 {
  color: var(--si-ink);
  font-family: var(--si-font-display);
  font-size: clamp(3.2rem, 7vw, 4.8rem);
  font-weight: 900;
  letter-spacing: -0.08em;
  line-height: 0.9;
  margin: 0;
  max-width: 9ch;
  text-transform: uppercase;
}

/* line 61, app/assets/stylesheets/pages/_about.scss */
.about-hero__badge {
  align-items: center;
  background: var(--si-red);
  color: #fff;
  display: inline-flex;
  font-family: var(--si-font-body);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 1.3px;
  line-height: 1;
  margin: 0;
  min-height: 28px;
  padding: 8px 14px;
  text-transform: uppercase;
}

/* line 77, app/assets/stylesheets/pages/_about.scss */
.about-hero__quote {
  border-left: 3px solid var(--si-red);
  color: var(--si-copy);
  display: grid;
  gap: 14px;
  padding-left: 22px;
}

/* line 85, app/assets/stylesheets/pages/_about.scss */
.about-hero__quote blockquote,
.about-quote-card blockquote {
  margin: 0;
}

/* line 90, app/assets/stylesheets/pages/_about.scss */
.about-hero__quote blockquote p,
.about-quote-card blockquote p {
  color: inherit;
  font-family: var(--si-font-serif);
  font-size: clamp(1.08rem, 1.9vw, 1.35rem);
  font-style: italic;
  line-height: 1.55;
  margin: 0;
}

/* line 100, app/assets/stylesheets/pages/_about.scss */
.about-hero__quote-source,
.about-quote-card__source {
  color: var(--si-red);
  font-family: var(--si-font-body);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 1.4px;
  line-height: 1.2;
  margin: 0;
  text-transform: uppercase;
}

/* line 112, app/assets/stylesheets/pages/_about.scss */
.about-image-break {
  background: #d8d8d8;
  margin-inline: calc(50% - 50vw);
}

/* line 117, app/assets/stylesheets/pages/_about.scss */
.about-image-break img {
  display: block;
  height: clamp(280px, 36vw, 470px);
  object-fit: cover;
  object-position: center center;
  width: 100%;
}

/* line 125, app/assets/stylesheets/pages/_about.scss */
.about-approach {
  background: var(--si-bg-soft);
  padding: 72px 0 88px;
}

/* line 130, app/assets/stylesheets/pages/_about.scss */
.about-section-heading {
  display: grid;
  gap: 18px;
  margin: 0 auto 40px;
}

/* line 136, app/assets/stylesheets/pages/_about.scss */
.about-section-heading--center {
  justify-items: center;
  max-width: 760px;
  text-align: center;
}

/* line 142, app/assets/stylesheets/pages/_about.scss */
.about-section-heading h2,
.about-purpose h2 {
  color: var(--si-ink);
  font-family: var(--si-font-heading);
  font-size: clamp(2rem, 4vw, 3.3rem);
  font-weight: 900;
  letter-spacing: -0.05em;
  line-height: 0.96;
  margin: 0;
  text-transform: uppercase;
}

/* line 154, app/assets/stylesheets/pages/_about.scss */
.about-section-heading p,
.about-purpose p,
.about-approach-card p,
.about-mission__body,
.about-principle p,
.about-cta-band__copy p {
  color: var(--si-copy);
  font-family: var(--si-font-body);
  font-size: 0.98rem;
  line-height: 1.7;
  margin: 0;
}

/* line 167, app/assets/stylesheets/pages/_about.scss */
.about-approach__grid {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

/* line 173, app/assets/stylesheets/pages/_about.scss */
.about-approach-card {
  background: var(--si-bg-paper);
  border-top: 3px solid var(--si-red);
  box-shadow: 0 0 0 1px rgba(27, 28, 28, 0.05);
  display: grid;
  gap: 18px;
  padding: 24px 22px 26px;
}

/* line 182, app/assets/stylesheets/pages/_about.scss */
.about-approach-card__icon {
  color: var(--si-red);
  display: inline-flex;
  height: 28px;
  width: 28px;
}

/* line 189, app/assets/stylesheets/pages/_about.scss */
.about-approach-card__icon svg {
  display: block;
  height: 100%;
  width: 100%;
}

/* line 195, app/assets/stylesheets/pages/_about.scss */
.about-approach-card h3,
.about-principle h3,
.about-mission h2,
.about-cta-band h2 {
  color: var(--si-ink);
  font-family: var(--si-font-heading);
  font-size: clamp(1.35rem, 2vw, 2rem);
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1;
  margin: 0;
  text-transform: uppercase;
}

/* line 209, app/assets/stylesheets/pages/_about.scss */
.about-mission {
  background: var(--si-bg-paper);
  padding: 88px 0 90px;
}

/* line 214, app/assets/stylesheets/pages/_about.scss */
.about-mission__grid {
  align-items: start;
  display: grid;
  gap: 30px;
  grid-template-columns: minmax(0, 5fr) minmax(320px, 4fr);
}

/* line 221, app/assets/stylesheets/pages/_about.scss */
.about-mission__story {
  display: grid;
  gap: 18px;
}

/* line 226, app/assets/stylesheets/pages/_about.scss */
.about-mission__story h2 {
  text-transform: none;
}

/* line 230, app/assets/stylesheets/pages/_about.scss */
.about-quote-card {
  background: #f8efed;
  border-left: 3px solid var(--si-red);
  display: grid;
  gap: 14px;
  margin-top: 10px;
  padding: 22px 24px 22px 20px;
}

/* line 239, app/assets/stylesheets/pages/_about.scss */
.about-principles {
  background: var(--si-ink);
  display: grid;
  gap: 22px;
  padding: 28px 28px 30px;
}

/* line 246, app/assets/stylesheets/pages/_about.scss */
.about-principles__list {
  display: grid;
  gap: 22px;
}

/* line 251, app/assets/stylesheets/pages/_about.scss */
.about-principle {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: grid;
  gap: 8px;
  padding-top: 18px;
  position: relative;
}

/* line 259, app/assets/stylesheets/pages/_about.scss */
.about-principle:first-child {
  border-top: 0;
  padding-top: 0;
}

/* line 264, app/assets/stylesheets/pages/_about.scss */
.about-principle::before {
  background: var(--si-red);
  content: "";
  height: 11px;
  left: 0;
  position: absolute;
  top: 22px;
  width: 3px;
}

/* line 274, app/assets/stylesheets/pages/_about.scss */
.about-principle:first-child::before {
  top: 4px;
}

/* line 278, app/assets/stylesheets/pages/_about.scss */
.about-principle h3 {
  color: #fff;
  font-size: 1rem;
  padding-left: 16px;
}

/* line 284, app/assets/stylesheets/pages/_about.scss */
.about-principle p {
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.92rem;
  padding-left: 16px;
}

/* line 290, app/assets/stylesheets/pages/_about.scss */
.about-purpose {
  background: var(--si-bg-paper);
  padding: 86px 0 96px;
}

/* line 295, app/assets/stylesheets/pages/_about.scss */
.about-purpose__inner {
  align-items: center;
  display: grid;
  gap: 18px;
  justify-items: center;
  max-width: 980px;
  text-align: center;
}

/* line 304, app/assets/stylesheets/pages/_about.scss */
.about-purpose__inner p:last-child {
  font-family: var(--si-font-serif);
  font-size: 1.06rem;
  font-style: italic;
  max-width: 54ch;
}

/* line 311, app/assets/stylesheets/pages/_about.scss */
.about-cta-band {
  background: #111;
  border-top: 1px solid var(--si-red);
  padding: 36px 0;
}

/* line 317, app/assets/stylesheets/pages/_about.scss */
.about-cta-band__inner {
  align-items: center;
  display: grid;
  gap: 22px 32px;
  grid-template-columns: minmax(0, 1fr) auto;
}

/* line 324, app/assets/stylesheets/pages/_about.scss */
.about-cta-band__copy {
  display: grid;
  gap: 12px;
}

/* line 329, app/assets/stylesheets/pages/_about.scss */
.about-cta-band h2 {
  color: #fff;
  font-family: var(--si-font-body);
  font-size: clamp(1.7rem, 3vw, 2.5rem);
  font-style: italic;
  letter-spacing: -0.04em;
  max-width: 18ch;
}

/* line 338, app/assets/stylesheets/pages/_about.scss */
.about-cta-band__copy p {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.92rem;
}

/* line 343, app/assets/stylesheets/pages/_about.scss */
.about-cta-band__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: flex-end;
}

/* line 350, app/assets/stylesheets/pages/_about.scss */
.about-cta-band__button {
  min-height: 52px;
  min-width: 176px;
}

/* line 355, app/assets/stylesheets/pages/_about.scss */
.about-cta-band__button--secondary {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.28);
  color: #fff;
}

/* line 361, app/assets/stylesheets/pages/_about.scss */
.about-cta-band__button--secondary:hover {
  background: #fff;
  border-color: #fff;
  color: var(--si-ink);
}

@media (max-width: 980px) {
  /* line 368, app/assets/stylesheets/pages/_about.scss */
  .about-hero__inner,
.about-mission__grid,
.about-cta-band__inner {
    grid-template-columns: 1fr;
  }
  /* line 374, app/assets/stylesheets/pages/_about.scss */
  .about-hero__quote {
    max-width: 720px;
  }
  /* line 378, app/assets/stylesheets/pages/_about.scss */
  .about-approach__grid {
    grid-template-columns: 1fr;
  }
  /* line 382, app/assets/stylesheets/pages/_about.scss */
  .about-cta-band__actions {
    justify-content: flex-start;
  }
}

@media (max-width: 640px) {
  /* line 388, app/assets/stylesheets/pages/_about.scss */
  .about-hero {
    padding-bottom: 30px;
  }
  /* line 392, app/assets/stylesheets/pages/_about.scss */
  .about-hero__inner,
.about-mission,
.about-purpose,
.about-approach {
    gap: 24px;
  }
  /* line 399, app/assets/stylesheets/pages/_about.scss */
  .about-hero h1 {
    max-width: 7ch;
  }
  /* line 403, app/assets/stylesheets/pages/_about.scss */
  .about-approach,
.about-mission,
.about-purpose {
    padding-bottom: 64px;
    padding-top: 56px;
  }
  /* line 410, app/assets/stylesheets/pages/_about.scss */
  .about-principles,
.about-quote-card,
.about-approach-card {
    padding-left: 20px;
    padding-right: 20px;
  }
  /* line 417, app/assets/stylesheets/pages/_about.scss */
  .about-cta-band {
    padding: 28px 0;
  }
  /* line 421, app/assets/stylesheets/pages/_about.scss */
  .about-cta-band__button {
    width: 100%;
  }
}

/* line 426, app/assets/stylesheets/pages/_about.scss */
.about-hero-quote--mobile {
  display: none;
}

/* line 430, app/assets/stylesheets/pages/_about.scss */
.about-hero__quote--desktop {
  display: grid;
}

/* line 434, app/assets/stylesheets/pages/_about.scss */
.about-principle {
  overflow: hidden;
}

/* line 438, app/assets/stylesheets/pages/_about.scss */
.about-principle__summary {
  align-items: start;
  cursor: pointer;
  display: flex;
  gap: 16px;
  justify-content: space-between;
  list-style: none;
}

/* line 447, app/assets/stylesheets/pages/_about.scss */
.about-principle__summary::-webkit-details-marker {
  display: none;
}

/* line 451, app/assets/stylesheets/pages/_about.scss */
.about-principle__toggle {
  display: inline-flex;
  flex: 0 0 auto;
  height: 18px;
  margin-top: 2px;
  position: relative;
  width: 18px;
}

/* line 460, app/assets/stylesheets/pages/_about.scss */
.about-principle__toggle::before,
.about-principle__toggle::after {
  background: var(--si-red);
  content: "";
  left: 50%;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
}

/* line 470, app/assets/stylesheets/pages/_about.scss */
.about-principle__toggle::before {
  height: 2px;
  width: 14px;
}

/* line 475, app/assets/stylesheets/pages/_about.scss */
.about-principle__toggle::after {
  height: 14px;
  width: 2px;
}

/* line 480, app/assets/stylesheets/pages/_about.scss */
.about-principle[open] .about-principle__toggle::after {
  opacity: 0;
}

/* line 484, app/assets/stylesheets/pages/_about.scss */
.about-principle__body {
  padding-left: 16px;
}

/* line 488, app/assets/stylesheets/pages/_about.scss */
.about-principle__body p {
  margin-top: 8px;
}

@media (max-width: 640px) {
  /* line 493, app/assets/stylesheets/pages/_about.scss */
  .about-hero__quote--desktop {
    display: none;
  }
  /* line 497, app/assets/stylesheets/pages/_about.scss */
  .about-hero-quote--mobile {
    display: block;
  }
  /* line 501, app/assets/stylesheets/pages/_about.scss */
  .about-hero-quote--mobile .about-hero__quote {
    background: var(--si-bg-paper);
    border: 1px solid var(--si-border);
    border-left: 3px solid var(--si-red);
    padding: 18px 18px 18px 20px;
  }
  /* line 508, app/assets/stylesheets/pages/_about.scss */
  .about-principle {
    padding-top: 0;
  }
  /* line 512, app/assets/stylesheets/pages/_about.scss */
  .about-principle::before {
    display: none;
  }
  /* line 516, app/assets/stylesheets/pages/_about.scss */
  .about-principle__summary h3,
.about-principle__body p {
    padding-left: 0;
  }
  /* line 521, app/assets/stylesheets/pages/_about.scss */
  .about-principle__body {
    padding-left: 0;
  }
}

/* line 1, app/assets/stylesheets/base/_motion.scss */
:root {
  --si-header-offset: 120px;
}

/* line 5, app/assets/stylesheets/base/_motion.scss */
.motion-word {
  display: inline-block;
  will-change: opacity, transform;
}

/* line 10, app/assets/stylesheets/base/_motion.scss */
[data-animate="clip-reveal"],
[data-parallax] {
  overflow: clip;
}

/* line 15, app/assets/stylesheets/base/_motion.scss */
[data-animate="clip-reveal"] img,
[data-parallax] img {
  will-change: transform;
}

/* line 20, app/assets/stylesheets/base/_motion.scss */
[data-parallax] img,
[data-parallax] video,
[data-parallax] iframe {
  transform: translate3d(0, var(--si-parallax-offset, 0px), 0) scale(1.06);
}

/* line 26, app/assets/stylesheets/base/_motion.scss */
.site-motion-progress,
.site-reading-progress {
  left: 0;
  pointer-events: none;
  position: fixed;
  right: 0;
  z-index: 70;
}

/* line 35, app/assets/stylesheets/base/_motion.scss */
.site-motion-progress {
  height: 3px;
  opacity: 0;
  top: 0;
  transition: opacity var(--si-motion-fast) ease;
}

/* line 42, app/assets/stylesheets/base/_motion.scss */
.site-motion-progress.is-active {
  opacity: 1;
}

/* line 46, app/assets/stylesheets/base/_motion.scss */
.site-motion-progress__bar,
.site-reading-progress__bar {
  background: linear-gradient(90deg, var(--si-red-bright), var(--si-red));
  display: block;
  height: 100%;
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform var(--si-motion-base) var(--si-ease-standard);
  width: 100%;
}

/* line 57, app/assets/stylesheets/base/_motion.scss */
.site-reading-progress {
  box-shadow: 0 1px 0 rgba(27, 28, 28, 0.06);
  height: 3px;
  top: var(--si-header-offset);
  transition: top var(--si-motion-base) var(--si-ease-soft);
  z-index: 39;
}

/* line 65, app/assets/stylesheets/base/_motion.scss */
.site-reading-progress__bar {
  background: var(--si-red);
}

/* line 69, app/assets/stylesheets/base/_motion.scss */
.article-share__status {
  opacity: 0;
  transform: translateY(6px);
  transition: opacity var(--si-motion-fast) var(--si-ease-soft), transform var(--si-motion-fast) var(--si-ease-soft);
}

/* line 77, app/assets/stylesheets/base/_motion.scss */
.article-share__status.is-active {
  opacity: 1;
  transform: translateY(0);
}

/* line 82, app/assets/stylesheets/base/_motion.scss */
.about-principle__body {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height var(--si-motion-slow) var(--si-ease-soft), opacity var(--si-motion-base) var(--si-ease-soft);
}

/* line 91, app/assets/stylesheets/base/_motion.scss */
.about-principle[open] .about-principle__body {
  max-height: 16rem;
  opacity: 1;
}

/* line 96, app/assets/stylesheets/base/_motion.scss */
.about-principle__toggle {
  transition: transform var(--si-motion-base) var(--si-ease-standard);
}

/* line 100, app/assets/stylesheets/base/_motion.scss */
.about-principle[open] .about-principle__toggle {
  transform: rotate(45deg);
}

@media (max-width: 760px) {
  /* line 105, app/assets/stylesheets/base/_motion.scss */
  :root {
    --si-header-offset: 92px;
  }
}

@media (prefers-reduced-motion: reduce) {
  /* line 111, app/assets/stylesheets/base/_motion.scss */
  [data-parallax] img,
[data-parallax] video,
[data-parallax] iframe {
    transform: none !important;
  }
  /* line 117, app/assets/stylesheets/base/_motion.scss */
  .site-motion-progress__bar,
.site-reading-progress__bar,
.article-share__status,
.about-principle__body,
.about-principle__toggle {
    transition: none !important;
  }
}

.catalogue-card__media--poster {
  aspect-ratio: 677 / 1000;
  background: #000;
  object-fit: contain;
}

.catalogue-card:hover .catalogue-card__media--poster {
  transform: none;
}

.lead-story__image--poster {
  aspect-ratio: 677 / 1000;
  background: #000;
  height: auto;
  margin: 0 auto;
  max-height: min(1000px, 78vh);
  max-width: 100%;
  object-fit: contain;
  width: auto;
}

.lead-story__media-wrap--poster {
  margin-left: auto;
  margin-right: auto;
  max-width: 677px;
}

.event-template__hero--poster {
  background: #000;
  display: grid;
  justify-items: center;
  margin-left: auto;
  margin-right: auto;
  max-width: 677px;
  overflow: visible;
}

.event-template__hero--poster img {
  aspect-ratio: 677 / 1000;
  height: auto;
  max-height: 1000px;
  max-width: 100%;
  object-fit: contain;
  transform: none !important;
  width: 100%;
}

/*# sourceMappingURL=application.css-ef4c15855ce8803f580e7a1b7470ad7d63724d90e645e896f488149b5328c452.map */
