:root {
  --bg: #0b0b0a;
  --text: #f1eadc;
  --muted: #b8ad9d;
  --line: rgba(241, 234, 220, 0.18);
  --accent: #e54d2e;
  --accent-soft: rgba(229, 77, 46, 0.14);
  --max: 1120px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--text);
  background:
    linear-gradient(90deg, rgba(241,234,220,.035) 1px, transparent 1px),
    linear-gradient(180deg, #0b0b0a 0%, #100e0c 100%);
  background-size: 72px 72px, auto;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
  overflow-x: hidden;
}

::selection { background: var(--accent); color: #120b08; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.site-header, main, .site-footer { width: min(var(--max), calc(100% - 40px)); margin: 0 auto; }
.site-header {
  min-height: 86px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  border-bottom: 1px solid var(--line);
}
.brand { display: inline-flex; align-items: center; gap: 14px; min-width: 0; }
.brand img { width: 44px; height: 54px; object-fit: contain; background: #fff; }
.brand span { display: grid; gap: 2px; }
.brand strong { font-size: .96rem; letter-spacing: .09em; text-transform: uppercase; }
.brand em, .label, .site-nav, .nav-toggle, .site-footer, .news-item time {
  color: var(--muted);
  font-size: .74rem;
  font-style: normal;
  font-weight: 700;
  letter-spacing: .13em;
  text-transform: uppercase;
}
.site-nav { display: flex; gap: 22px; }
.site-nav a, .site-footer a, .hero-links a, .social-list a, .email-line a {
  border-bottom: 1px solid transparent;
  transition: color .16s ease, border-color .16s ease, background .16s ease;
}
.site-nav a:hover, .site-nav a[aria-current="page"], .site-footer a:hover, .hero-links a:hover, .social-list a:hover, .email-line a:hover { color: var(--text); border-color: var(--accent); }
.nav-toggle { display: none; padding: 8px 10px; border: 1px solid var(--line); background: rgba(255,255,255,.02); color: var(--text); cursor: pointer; }

.hero, .page-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 430px);
  gap: clamp(44px, 8vw, 108px);
  align-items: center;
  border-bottom: 1px solid var(--line);
}
.hero { min-height: min(820px, calc(100vh - 86px)); padding: 52px 0 64px; }
.page-hero { padding: 72px 0; }
.hero-copy { max-width: 760px; min-width: 0; }
.label { margin: 0 0 22px; color: var(--accent); }
h1, h2, p { margin: 0; }
h1 { font-size: clamp(4.2rem, 10.5vw, 9.2rem); line-height: .84; letter-spacing: -.075em; font-weight: 900; text-transform: uppercase; max-width: 840px; }
.page-hero h1 { font-size: clamp(4rem, 9vw, 8rem); }
.lead { margin-top: 28px; max-width: 650px; color: var(--text); font-size: clamp(1.22rem, 2.2vw, 1.95rem); line-height: 1.15; letter-spacing: -.03em; overflow-wrap: break-word; }
.support { margin-top: 18px; max-width: 560px; color: var(--muted); font-size: 1.05rem; overflow-wrap: break-word; }
.hero-links { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 34px; }
.hero-links a { padding: 10px 12px; border: 1px solid var(--line); color: var(--muted); background: rgba(255,255,255,.018); }
.hero-links a:hover { background: var(--accent-soft); }
.hero-photo, .page-hero > img { border: 1px solid var(--line); background: rgba(255,255,255,.018); padding: 10px; overflow: hidden; }
.hero-photo img, .page-hero > img { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; filter: saturate(.94) contrast(1.04); }

.section { display: grid; grid-template-columns: 240px minmax(0, 1fr); gap: clamp(30px, 6vw, 72px); padding: 82px 0; border-bottom: 1px solid var(--line); min-width: 0; max-width: 100%; }
.full-section { display: block; }
.section-head { padding-top: 8px; border-top: 1px solid var(--line); }
.section-head h2 { margin-top: 18px; font-size: clamp(2rem, 4vw, 4.3rem); line-height: .92; letter-spacing: -.06em; text-transform: uppercase; }

.show-list, .social-list { list-style: none; padding: 0; margin: 0; }
.show-list, .news-list, .social-list { border-top: 1px solid var(--line); }
.show-list li { display: grid; grid-template-columns: 180px 1fr minmax(120px, auto); gap: 22px; padding: 18px 0; border-bottom: 1px solid var(--line); color: var(--muted); }
.show-list .empty-state { display: block; color: var(--text); }
.show-list time { color: var(--accent); font-weight: 800; }
.news-item { display: grid; grid-template-columns: 180px minmax(0, 1fr); gap: 22px; padding: 20px 0; border-bottom: 1px solid var(--line); }
.news-item time { color: var(--accent); }
.news-item p, .email-line { color: var(--text); font-size: 1.08rem; }
.email-line { margin-bottom: 28px; }
.email-line a { color: var(--text); border-color: var(--line); }
.social-list { display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); }
.social-list li { border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.social-list li:last-child { border-right: 0; }
.social-list a { display: flex; align-items: flex-end; min-height: 86px; padding: 14px; color: var(--muted); background: rgba(255,255,255,.014); }
.social-list a:hover { background: var(--accent-soft); }

.photo-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.photo-grid figure { margin: 0; border: 1px solid var(--line); background: rgba(11,11,10,.78); min-height: 320px; overflow: hidden; }
.photo-grid img, .photo-grid video { width: 100%; height: 100%; object-fit: contain; filter: saturate(.96) contrast(1.03); background: rgba(11,11,10,.88); }
.photo-grid video { background: #000; }
.all-photos figure:nth-child(1), .all-photos figure:nth-child(8), .all-photos figure:nth-child(12) { grid-row: auto; min-height: 360px; }

.site-footer { display: flex; justify-content: space-between; gap: 20px; padding: 26px 0 44px; }

@media (max-width: 860px) {
  .site-header { min-height: 76px; }
  .brand img { width: 38px; height: 46px; }
  .nav-toggle { display: inline-flex; }
  .site-nav { display: none; position: absolute; top: 76px; left: 20px; right: 20px; z-index: 4; padding: 14px; flex-direction: column; gap: 12px; background: rgba(11,11,10,.98); border: 1px solid var(--line); }
  .site-nav.is-open { display: flex; }
  .hero, .page-hero, .section { grid-template-columns: 1fr; }
  .hero { min-height: auto; padding: 56px 0 64px; }
  .page-hero { padding: 56px 0; }
  .hero-photo, .page-hero > img { max-width: 440px; }
  .show-list li, .news-item, .social-list { grid-template-columns: 1fr; }
  .social-list li, .social-list li:last-child { border-right: 0; }
  .social-list a { min-height: 56px; }
  .photo-grid { grid-template-columns: 1fr 1fr; }
  .all-photos figure:nth-child(1), .all-photos figure:nth-child(8), .all-photos figure:nth-child(12) { min-height: 340px; }
}

@media (max-width: 520px) {
  .site-header, main, .site-footer { width: min(var(--max), calc(100% - 28px)); }
  .brand em { max-width: 180px; }
  h1 { font-size: clamp(3rem, 17vw, 4.35rem); letter-spacing: -.055em; }
  .page-hero h1 { font-size: clamp(3rem, 16vw, 4.2rem); }
  .lead { font-size: 1.18rem; }
  .hero-links { display: grid; grid-template-columns: 1fr; }
  .hero-links a { width: 100%; }
  .hero-photo img, .page-hero > img { aspect-ratio: 1 / 1.08; }
  .photo-grid { grid-template-columns: 1fr; }
  .photo-grid figure, .all-photos figure:nth-child(1), .all-photos figure:nth-child(8), .all-photos figure:nth-child(12) { min-height: 340px; }
  .site-footer { flex-direction: column; }
}

.bio-copy {
  display: grid;
  gap: 18px;
  max-width: 780px;
}

.bio-copy p {
  color: var(--text);
  font-size: clamp(1.05rem, 1.5vw, 1.24rem);
}

.member-list {
  display: grid;
  gap: 14px;
}

.member-card {
  border-top: 1px solid var(--line);
  padding: 22px 0 6px;
}

.member-card h3 {
  margin: 0 0 8px;
  font-size: clamp(1.5rem, 2.8vw, 2.6rem);
  line-height: 1;
  letter-spacing: -.045em;
  text-transform: uppercase;
}

.member-role {
  color: var(--accent);
  margin-bottom: 12px;
  font-size: .82rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.member-card p:not(.member-role) {
  color: var(--muted);
  max-width: 820px;
}

.contact-links {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.contact-links a {
  display: grid;
  align-content: end;
  gap: 6px;
}

.contact-links span {
  color: var(--accent);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.contact-links strong {
  color: var(--text);
  font-size: .95rem;
  line-height: 1.18;
  overflow-wrap: anywhere;
}

.page-hero > img[src$="jennifer-place-logo-white-transparent.png"] {
  object-fit: contain;
  padding: clamp(38px, 8vw, 84px);
  background: rgba(255,255,255,.018);
}

.contact-links strong {
  font-size: clamp(.82rem, 1.05vw, .95rem);
}

/* Landing-page navigation update: no traditional top menu. */
.site-header {
  justify-content: flex-start;
}

.brand img {
  background: transparent;
}

.portal-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 34px;
  max-width: 720px;
}

.portal-links a {
  display: grid;
  gap: 6px;
  min-height: 118px;
  padding: 16px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.014);
  align-content: end;
}

.portal-links a:hover {
  border-color: var(--accent);
  background: var(--accent-soft);
}

.portal-links span,
.portal-links em {
  color: var(--muted);
  font-size: .72rem;
  font-style: normal;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.portal-links strong {
  color: var(--text);
  font-size: 1.15rem;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: -.02em;
}

.portal-links .primary-path {
  border-color: rgba(229,77,46,.58);
}

@media (max-width: 520px) {
  .portal-links {
    grid-template-columns: 1fr;
  }
}

.path-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: flex-end;
}

.path-footer nav a {
  color: var(--muted);
  border-bottom: 1px solid transparent;
}

.path-footer nav a:hover {
  color: var(--text);
  border-color: var(--accent);
}

@media (max-width: 520px) {
  .path-footer nav {
    justify-content: flex-start;
  }
}

.show-list small {
  grid-column: 2 / -1;
  color: var(--muted);
  font-size: .92rem;
}

@media (max-width: 860px) {
  .show-list small {
    grid-column: auto;
  }
}

.photo-credit,
.image-credit,
.photo-grid figcaption {
  color: var(--muted);
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.photo-credit {
  margin-top: 14px;
}

.hero-photo,
.page-hero > img {
  position: relative;
}

.image-credit {
  margin-top: -34px;
  justify-self: end;
  padding: 6px 8px;
  background: rgba(11,11,10,.72);
  border: 1px solid rgba(241,234,220,.12);
  position: relative;
  z-index: 2;
}

.photo-grid figure {
  display: grid;
  grid-template-rows: 1fr auto;
}

.photo-grid figcaption {
  padding: 8px 10px;
  border-top: 1px solid var(--line);
  background: rgba(11,11,10,.86);
}

.feature-news {
  grid-template-columns: 180px minmax(0, 1fr);
}

.feature-news h2 {
  margin: 0 0 14px;
  font-size: clamp(1.65rem, 3vw, 3.2rem);
  line-height: .95;
  letter-spacing: -.055em;
  text-transform: uppercase;
}

.feature-news p + p {
  margin-top: 14px;
}

.text-link {
  color: var(--text);
  border-bottom: 1px solid var(--accent);
}

.text-link:hover {
  color: var(--accent);
}

@media (max-width: 860px) {
  .feature-news {
    grid-template-columns: 1fr;
  }
}

/* No-header launch version */
.site-header {
  display: none !important;
}

@media (max-width: 860px) {
  .home-hero {
    display: flex;
    flex-direction: column;
    align-items: stretch;
  }

  .home-hero .hero-copy {
    order: 1;
  }

  .home-hero .hero-photo {
    order: 2;
    max-width: 100%;
    margin-top: 28px;
  }

  .home-hero .portal-links {
    order: 3;
  }
}

.home-hero .portal-links {
  grid-column: 1 / -1;
  max-width: none;
}

@media (max-width: 860px) {
  .home-hero .portal-links {
    order: 3;
    width: 100%;
  }
}

@media (max-width: 860px) {
  main,
  .site-footer,
  .home-hero,
  .home-hero .hero-copy,
  .home-hero .hero-photo,
  .home-hero .portal-links,
  .contact-section,
  .contact-section > div,
  .social-list {
    min-width: 0;
    max-width: 100%;
  }

  .home-hero .lead,
  .contact-links strong {
    max-width: 100%;
    overflow-wrap: anywhere;
  }

  .home-hero .hero-photo {
    width: 100%;
    justify-self: stretch;
  }

  .image-credit {
    justify-self: start;
    margin-top: 8px;
  }
}

.news-archive {
  padding-top: 64px;
}

.latest-update {
  border: 1px solid var(--line);
  background: linear-gradient(135deg, rgba(229,77,46,.12), rgba(255,255,255,.018));
  padding: clamp(24px, 5vw, 46px);
}

.latest-update h2 {
  max-width: 920px;
  margin: 12px 0 18px;
  font-size: clamp(2rem, 5.5vw, 5rem);
  line-height: .9;
  letter-spacing: -.06em;
  text-transform: uppercase;
}

.story-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 14px;
  align-items: center;
  color: var(--accent);
  font-size: .72rem;
  font-style: normal;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.story-meta span,
.story-meta em {
  color: var(--muted);
  font-style: normal;
}

.story-excerpt {
  max-width: 820px;
  color: var(--text);
  font-size: clamp(1.05rem, 1.8vw, 1.35rem);
  line-height: 1.35;
}

.story-body {
  max-width: 860px;
  margin-top: 20px;
  display: grid;
  gap: 14px;
}
.story-body p {
  color: var(--muted);
  font-size: 1.02rem;
}

.video-embed {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.018);
  overflow: hidden;
}

.video-embed iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.update-stack {
  margin-top: 18px;
  border-top: 1px solid var(--line);
}
.archive-label {
  margin: 26px 0 4px;
  color: var(--accent);
}

.past-updates {
  margin-top: 34px;
}


.update-card {
  border-bottom: 1px solid var(--line);
  background: rgba(255,255,255,.012);
}

.update-card[open] {
  background: rgba(255,255,255,.028);
}

.update-card summary {
  display: grid;
  grid-template-columns: 220px minmax(220px, .8fr) minmax(0, 1fr);
  gap: 20px;
  align-items: start;
  padding: 22px 0;
  cursor: pointer;
  list-style: none;
}

.update-card summary::-webkit-details-marker {
  display: none;
}

.update-card summary::after {
  content: '+';
  grid-column: 3;
  justify-self: end;
  color: var(--accent);
  font-size: 1.4rem;
  line-height: 1;
}

.update-card[open] summary::after {
  content: '–';
}

.update-card summary strong {
  color: var(--text);
  font-size: clamp(1.15rem, 2vw, 1.6rem);
  line-height: 1.02;
  letter-spacing: -.04em;
  text-transform: uppercase;
}

.update-card summary .story-excerpt {
  color: var(--muted);
  font-size: .98rem;
  padding-right: 34px;
}

.update-card .story-body {
  margin: -4px 0 24px 220px;
  padding: 0 34px 0 20px;
  border-left: 1px solid var(--line);
}

@media (max-width: 860px) {
  .news-hero {
    gap: 28px;
  }

  .latest-update h2 {
    font-size: clamp(2rem, 12vw, 3.7rem);
  }

  .update-card summary {
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 20px 0;
  }

  .update-card summary::after {
    grid-column: 1;
    grid-row: 1;
  }

  .update-card summary .story-excerpt {
    padding-right: 0;
  }

  .update-card .story-body {
    margin: 0 0 24px 0;
    padding: 0 0 0 16px;
  }
}

@media (max-width: 860px) {
  .news-hero {
    display: block;
    padding-bottom: 34px;
  }

  .news-hero .lead,
  .latest-update,
  .latest-update h2,
  .latest-update .story-excerpt,
  .latest-update .story-body,
  .update-card,
  .update-card summary,
  .update-card summary strong,
  .update-card summary .story-excerpt,
  .update-card .story-body {
    max-width: 100%;
    min-width: 0;
    overflow-wrap: anywhere;
    word-break: normal;
  }

  .news-hero > img {
    width: 100%;
    max-width: 320px;
    margin-top: 28px;
  }

  .news-archive {
    padding-top: 36px;
  }

  .latest-update {
    padding: 22px 16px;
  }

  .latest-update h2 {
    font-size: clamp(1.55rem, 8.8vw, 2.65rem);
    line-height: .98;
    letter-spacing: -.04em;
  }

  .story-excerpt {
    font-size: 1rem;
  }

  .story-body p {
    font-size: .96rem;
  }
}

@media (max-width: 520px) {
  .news-hero h1 {
    font-size: clamp(2.35rem, 13vw, 3.3rem);
  }

  .news-hero > img {
    max-width: 100%;
    aspect-ratio: 1 / .82;
  }
}

@media (max-width: 520px) {
  html,
  body {
    max-width: 100vw;
    overflow-x: hidden;
  }

  main,
  .site-footer {
    width: calc(100vw - 28px);
    max-width: calc(100vw - 28px);
  }

  h1,
  h2,
  .page-hero h1,
  .latest-update h2,
  .update-card summary strong {
    overflow-wrap: anywhere;
    word-break: normal;
    hyphens: auto;
  }

  .news-hero h1 {
    font-size: clamp(2rem, 10.5vw, 2.75rem);
    line-height: .96;
    letter-spacing: -.04em;
  }

  .latest-update h2 {
    font-size: clamp(1.45rem, 7.4vw, 2.15rem);
    line-height: 1.04;
    letter-spacing: -.025em;
  }
}

.media-link {
  display: block;
  border-radius: inherit;
  cursor: zoom-in;
}

.media-link:focus-visible {
  outline: 3px solid var(--accent, #5ee7ff);
  outline-offset: 4px;
}

.media-link img {
  transition: transform 180ms ease, filter 180ms ease;
}

.media-link:hover img {
  transform: scale(1.015);
  filter: brightness(1.06);
}

.media-video-embed {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 320px;
  background: #000;
}

.media-video-embed iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.story-video {
  width: 100%;
  max-width: 860px;
  display: block;
  border: 1px solid var(--line);
  background: #000;
}

.vertical-video {
  max-width: 420px;
  aspect-ratio: 9 / 16;
}

.media-video-embed-vertical {
  max-width: 420px;
  min-height: 420px;
  aspect-ratio: 9 / 16;
  margin: 0 auto;
}

.email-list-section {
  align-items: start;
}

.email-list-panel {
  display: grid;
  gap: 18px;
  max-width: 820px;
  padding: clamp(22px, 4vw, 38px);
  border: 1px solid var(--line);
  background:
    radial-gradient(circle at 16% 0%, rgba(229,77,46,.18), transparent 34%),
    rgba(255,255,255,.014);
}

.email-list-copy {
  color: var(--text);
  font-size: clamp(1.05rem, 1.7vw, 1.32rem);
  line-height: 1.35;
  max-width: 680px;
}

.email-list-form {
  display: grid;
  grid-template-columns: minmax(220px, 1.1fr) minmax(180px, .8fr) auto;
  gap: 12px;
  align-items: end;
}

.email-list-form label {
  display: grid;
  gap: 7px;
  color: var(--accent);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.email-list-form label em {
  color: var(--muted);
  font-style: normal;
}

.email-list-form input {
  width: 100%;
  min-height: 48px;
  border: 1px solid var(--line);
  border-radius: 0;
  color: var(--text);
  background: rgba(11,11,10,.68);
  padding: 12px 13px;
  font: inherit;
}

.email-list-form input:focus {
  outline: 2px solid rgba(229,77,46,.62);
  outline-offset: 2px;
  border-color: var(--accent);
}

.email-list-form button {
  min-height: 48px;
  border: 1px solid rgba(229,77,46,.72);
  color: var(--text);
  background: rgba(229,77,46,.22);
  padding: 12px 16px;
  font: inherit;
  font-size: .78rem;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background .16s ease, border-color .16s ease, color .16s ease;
}

.email-list-form button:hover,
.email-list-form button:focus-visible {
  background: var(--accent);
  border-color: var(--accent);
  color: #120b08;
}

.privacy-note {
  max-width: 620px;
  color: var(--muted);
  font-size: .92rem;
}

.hidden-field {
  display: none;
}

.email-list-callout {
  display: grid;
  gap: 12px;
  margin: 28px 0 4px;
  padding: clamp(20px, 4vw, 34px);
  border: 1px solid var(--line);
  background: linear-gradient(135deg, rgba(229,77,46,.11), rgba(255,255,255,.016));
}

.email-list-callout h2 {
  margin: 0;
  font-size: clamp(1.55rem, 3vw, 3.1rem);
  line-height: .95;
  letter-spacing: -.055em;
  text-transform: uppercase;
}

.email-list-callout p:not(.label) {
  max-width: 640px;
  color: var(--muted);
  font-size: 1rem;
}

.email-list-callout .text-link {
  width: fit-content;
  font-size: .78rem;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.thanks-hero {
  min-height: min(760px, calc(100vh - 86px));
}

@media (max-width: 860px) {
  .email-list-form {
    grid-template-columns: 1fr;
  }

  .email-list-form button {
    width: 100%;
  }
}


.local-video-embed video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  object-fit: cover;
  background: #050504;
}

.video-embed.vertical-video {
  aspect-ratio: 9 / 16;
  max-width: 430px;
  background: rgba(255,255,255,.018);
}


.principle-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  margin: 2px 0 6px;
  padding: 0;
  list-style: none;
}

.principle-list li,
.story-tags span {
  border: 1px solid var(--line);
  background: rgba(255,255,255,.025);
  color: var(--text);
}

.principle-list li {
  padding: 10px 12px;
  font-size: .88rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.button-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  min-height: 44px;
  padding: 12px 16px;
  border: 1px solid var(--accent);
  color: var(--text);
  background: rgba(229,77,46,.14);
  text-transform: uppercase;
  letter-spacing: .1em;
  font-size: .76rem;
  font-weight: 900;
}

.button-link:hover {
  background: var(--accent);
  color: var(--bg);
}

.story-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 4px;
}

.story-tags span {
  padding: 7px 9px;
  color: var(--muted);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
}

@media (max-width: 680px) {
  .principle-list {
    grid-template-columns: 1fr;
  }

  .video-embed.vertical-video {
    max-width: 100%;
  }

  .button-link {
    width: 100%;
  }
}
