/* Newsreader draws $ with two vertical strokes. It has no stylistic-set
   alternate (its GSUB carries only case/liga/locl/ordn/pnum/sups/tnum), so the
   single-bar glyph has to be borrowed. Restricting the borrow to U+0024 means
   every dollar amount on these pages picks it up - the fact strip, the prices,
   the fund sizes - without touching a single string. If none of these faces are
   installed the browser falls through to Newsreader's own dollar, unchanged. */
@font-face {
  font-family: "Newsreader";
  src: local("Inter"), local("Inter Regular"), local("Helvetica Neue"), local("HelveticaNeue"), local("Arial"), local("Segoe UI"), local("Roboto");
  font-weight: 400;
  unicode-range: U+0024;
}
@font-face {
  font-family: "Newsreader";
  src: local("Inter Medium"), local("Inter"), local("Helvetica Neue Medium"), local("Helvetica Neue"), local("Arial"), local("Segoe UI"), local("Roboto");
  font-weight: 500;
  unicode-range: U+0024;
}

.press-page {
  --press-paper: #ffffff;
  --press-night: #12110e;
  --press-muted: #666860;
  background: var(--press-paper);
}

.press-page main { overflow: hidden; }
.press-page .sbn-header { background: rgba(250, 250, 247, 0.94); backdrop-filter: blur(18px); }

.press-kicker,
.story-meta {
  margin: 0;
  color: var(--press-muted);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .17em;
  line-height: 1.3;
  text-transform: uppercase;
}

.press-hero {
  min-height: auto;
  padding: clamp(40px, 4.5vw, 72px) 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(380px, .92fr);
  align-items: center;
  gap: clamp(32px, 3.5vw, 64px);
}

.press-hero-copy { max-width: 850px; }
.press-hero h1,
.press-section-head h2,
.recognition h2,
.resources-copy h2,
.press-article h1,
.press-article h2 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: -.045em;
  line-height: .94;
}

.press-hero h1 {
  max-width: 820px;
  margin-top: 24px;
  font-size: clamp(64px, 7.4vw, 120px);
}

.press-lede {
  max-width: 660px;
  margin: 24px 0 0;
  color: #5d594f;
  font-size: clamp(18px, 1.6vw, 24px);
  line-height: 1.45;
}

.press-actions { margin-top: 28px; display: flex; flex-wrap: wrap; gap: 12px; }

.press-hero-art {
  width: 100%;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.press-hero-art img { width: 100%; height: auto; aspect-ratio: 4 / 5; object-fit: cover; display: block; background: #15172c; }

.press-latest { padding: clamp(48px, 5vw, 80px) 0; border-top: 1px solid var(--line); }
.press-section-head { display: block; }
.press-section-head h2 { max-width: 860px; margin-top: 20px; font-size: clamp(36px, 3.8vw, 58px); }

.lead-story {
  margin-top: clamp(30px, 3vw, 46px);
  padding-top: 24px;
  border-top: 1px solid var(--ink);
  display: grid;
  grid-template-columns: minmax(280px, .63fr) minmax(520px, 1.37fr);
  gap: clamp(46px, 7vw, 112px);
}

.story-meta { display: flex; flex-wrap: wrap; gap: 10px 22px; }
.story-meta span + span::before,
.story-meta time::before { content: "·"; margin-right: 22px; color: #aaa397; }
.lead-story h3,
.milestone-row h3 {
  margin: 44px 0 0;
  font-family: var(--serif);
  font-size: clamp(38px, 4vw, 68px);
  font-weight: 400;
  letter-spacing: -.035em;
  line-height: 1;
}

.lead-story-copy > p:not(.story-meta),
.milestone-row article > p:not(.story-meta) {
  margin: 30px 0 0;
  color: #5e5a51;
  font-size: 17px;
  line-height: 1.65;
}

.lead-story blockquote {
  margin: 46px 0 0;
  padding: 24px 0 0;
  border-top: 1px solid var(--line);
  font-family: var(--serif);
  font-size: 27px;
  line-height: 1.15;
}

.press-arrow {
  width: fit-content;
  margin-top: 36px;
  padding-bottom: 6px;
  border-bottom: 1px solid currentColor;
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 13px;
  font-weight: 700;
}
.press-arrow span { transition: transform 180ms ease; }
.press-arrow:hover span { transform: translate(3px, -3px); }

.lead-video,
.article-video { min-width: 0; }
.video-frame { position: relative; width: 100%; aspect-ratio: 16 / 9; background: #13120f; overflow: hidden; }
/* two classes beats the .lead-video iframe rule below, which sets height:auto for
   the old bare-iframe case */
.lead-video .video-frame iframe,
.article-video .video-frame iframe { position: absolute; inset: 0; width: 100%; height: 100%; aspect-ratio: auto; border: 0; display: block; }
/* The poster is what the reader was already looking at; it stays until the player
   reports PLAYING, so the frame never goes empty between click and first frame. */
.video-frame-poster { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; display: block; z-index: 2; transition: opacity 260ms ease; }
.video-frame.is-playing .video-frame-poster { opacity: 0; pointer-events: none; }

.lead-video iframe,
.article-video iframe {
  width: 100%;
  /* height:auto is load-bearing. The IFrame API stamps width/height ATTRIBUTES on
     the iframe it creates; those map to a definite presentational height, and
     aspect-ratio is ignored whenever height is definite. Without this the player
     renders at YouTube's default 390px inside a 16:9 box. */
  height: auto;
  aspect-ratio: 16 / 9;
  border: 0;
  display: block;
  background: #13120f;
}

.video-caption {
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  gap: 20px;
  color: #757064;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 10px;
  letter-spacing: .07em;
  text-transform: uppercase;
}
.video-caption a { color: var(--ink); }
/* the story link sits under the poster, so it hangs off the caption rule rather
   than off a paragraph of body copy */
.press-arrow-video { margin-top: 22px; }

.press-stream { padding: clamp(50px, 5.2vw, 84px) 0; border-block: 1px solid var(--line); color: var(--ink); background: #fff; }
.press-section-head-light .press-kicker { color: var(--press-muted); }
.press-section-head-light h2 { color: var(--ink); }
.milestone-row {
  margin-top: clamp(28px, 3.2vw, 46px);
  display: grid;
  grid-template-columns: minmax(260px, .65fr) minmax(420px, 1.35fr);
  gap: clamp(58px, 10vw, 156px);
  align-items: center;
}
.milestone-row figure { max-width: 420px; margin: 0; aspect-ratio: 4 / 5; overflow: hidden; }
.milestone-row figure img { width: 100%; height: 100%; object-fit: cover; }
.milestone-row h3 { max-width: 820px; font-size: clamp(52px, 6.2vw, 104px); }
.milestone-row article > p:not(.story-meta) { max-width: 720px; color: #625f57; font-size: 19px; }
.press-arrow-light { color: var(--ink); }
.spc-mark { display: flex; align-items: center; gap: 18px; }
.spc-mark img { width: 68px; height: 68px; object-fit: contain; }

.recognition {
  padding: clamp(50px, 5.2vw, 84px) 0;
}
.recognition-intro { display: grid; grid-template-columns: minmax(320px, .9fr) minmax(420px, 1.1fr); gap: clamp(70px, 11vw, 180px); align-items: end; }
.recognition h2 { margin-top: 22px; font-size: clamp(52px, 5.7vw, 90px); }
.recognition-intro > p:last-child { max-width: 610px; margin: 0; color: #625e54; font-size: 17px; line-height: 1.65; }
.award-list { margin-top: clamp(64px, 8vw, 110px); border-block: 1px solid var(--ink); display: grid; grid-template-columns: repeat(4, 1fr); }
.award-row {
  min-width: 0;
  padding: clamp(24px, 2.6vw, 38px);
  border-right: 1px solid var(--line);
  display: grid;
  /* Four across leaves ~25% of the shell per cell, too narrow for the old
     logo | text | arrow row. The cell stacks instead — mark above, name below,
     arrow held at the bottom corner — which keeps the divider rhythm and the
     type scale of the rest of the page. */
  grid-template-columns: minmax(0, 1fr) auto;
  align-content: start;
  row-gap: 0;
  column-gap: 14px;
  transition: background 180ms ease;
}
.award-row:last-child { border-right: 0; }
.award-row:hover { background: #f5f5f2; }
.award-row > img { grid-column: 1 / -1; width: auto; max-width: 100%; height: 82px; margin-bottom: clamp(18px, 1.8vw, 26px); object-fit: contain; object-position: left top; }
.award-row > span { grid-column: 1; min-width: 0; }
.award-row > i { grid-column: 2; align-self: end; }
.award-year { color: var(--press-muted); font-family: ui-monospace, SFMono-Regular, Menlo, monospace; font-size: 10px; letter-spacing: .13em; }
.award-row strong { margin-top: 10px; display: block; font-family: var(--serif); font-size: clamp(20px, 1.5vw, 26px); font-weight: 400; line-height: 1.08; text-wrap: balance; }
.award-row small { margin-top: 10px; display: block; color: #716c61; font-size: 13px; line-height: 1.4; }
.award-row i { font-style: normal; font-size: 18px; }

.press-gallery-rail { padding: 0 0 clamp(96px, 12vw, 176px); }
.rail-heading { padding-top: 22px; border-top: 1px solid var(--ink); display: flex; align-items: flex-start; justify-content: space-between; gap: 30px; }
.rail-heading .press-arrow { margin-top: 0; }
.rail-images { margin-top: 34px; display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; align-items: start; }
.rail-images figure { margin: 0; overflow: hidden; }

.rail-images img { width: 100%; height: auto; aspect-ratio: 4 / 5; object-fit: cover; }

.press-resources {
  padding: clamp(50px, 5.2vw, 84px) 0;
  border-top: 1px solid var(--line);
  background: #fff;
}
.resources-grid { display: grid; grid-template-columns: minmax(360px, .9fr) minmax(480px, 1.1fr); gap: clamp(70px, 10vw, 160px); align-items: center; }
.resources-copy h2 { max-width: 670px; margin-top: 22px; font-size: clamp(54px, 5.8vw, 92px); }
.resources-copy > p:not(.press-kicker) { max-width: 620px; margin: 34px 0 0; color: #5e5a51; font-size: 17px; line-height: 1.65; }
.resource-links { margin-top: 48px; border-top: 1px solid var(--ink); }
.resource-links a { padding: 18px 0; border-bottom: 1px solid var(--line); display: flex; justify-content: space-between; gap: 28px; }
.resource-links strong { font-size: 14px; }
.resource-links span { color: #716c61; font-size: 12px; text-align: right; }
.resource-art { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; align-items: end; }
.resource-art img { width: 100%; height: auto; aspect-ratio: 4 / 5; object-fit: cover; }
.resource-art { align-items: start; }

/* Digital Trends media item */
.press-article { padding: clamp(36px, 4vw, 60px) 0 clamp(56px, 6vw, 96px); }
.article-back { display: inline-block; color: #716c61; font-size: 14px; }
.article-header { max-width: 980px; margin: 30px auto 0; text-align: center; }
.article-header .story-meta { justify-content: center; }
.article-header h1 { margin-top: 20px; font-size: clamp(38px, 3.6vw, 58px); }
.article-header > p { max-width: 760px; margin: 38px auto 0; color: #5e5a51; font-size: 22px; line-height: 1.55; }
.article-video { max-width: 1060px; margin: 36px auto 0; }
.article-body { max-width: 1300px; margin: 64px auto 0; display: grid; grid-template-columns: 290px minmax(0, 900px); justify-content: space-between; gap: 72px; }
.article-facts { align-self: stretch; display: flex; flex-direction: column; }
.article-facts dl { margin: 28px 0 0; border-top: 1px solid var(--ink); }
.article-facts dl div { padding: 15px 0; border-bottom: 1px solid var(--line); }
.article-facts dt { color: #8a8478; font-size: 12px; text-transform: uppercase; letter-spacing: .08em; }
.article-facts dd { margin: 5px 0 0; font-size: 15.5px; }
.article-copy h2 { margin: 20px 0 30px; font-size: clamp(44px, 4.8vw, 74px); }
.article-copy p { margin: 0 0 25px; color: #4f4b43; font-family: var(--serif); font-size: 23px; line-height: 1.55; }
.article-copy blockquote { margin: 58px 0; padding: 36px 0; border-block: 1px solid var(--ink); font-family: var(--serif); font-size: clamp(34px, 4vw, 56px); line-height: 1.08; }
.article-copy cite { margin-top: 20px; display: block; color: #8a8478; font-family: var(--sans); font-size: 11px; font-style: normal; letter-spacing: .1em; text-transform: uppercase; }
.article-copy ul { margin: 8px 0 0; padding: 0; list-style: none; }
.article-copy li { padding: 14px 0 14px 26px; border-bottom: 1px solid var(--line); position: relative; color: #4f4b43; }
.article-copy li::before { content: "↳"; position: absolute; left: 0; color: var(--ink); }
.article-contact { margin-top: 130px; padding: 54px 0; border-block: 1px solid var(--ink); display: grid; grid-template-columns: 1.3fr .7fr; gap: 70px; align-items: end; }
.article-contact h2 { max-width: 800px; margin-top: 20px; font-size: clamp(45px, 5.2vw, 80px); }
.article-contact > div:last-child { display: flex; flex-direction: column; align-items: flex-start; }

@media (max-width: 1180px) {
  .press-hero { grid-template-columns: 1.2fr .6fr; gap: 60px; }
  .lead-story { grid-template-columns: .7fr 1.3fr; gap: 48px; }
  .recognition { gap: 70px; }
  .resources-grid { gap: 70px; }
}

@media (max-width: 900px) {
  .press-hero { min-height: auto; grid-template-columns: 1fr; }
  .press-hero-art { width: min(72vw, 480px); margin: 0; }
  .press-section-head,
  .lead-story,
  .milestone-row,
  .recognition,
  .resources-grid,
  .article-body,
  .article-contact { grid-template-columns: 1fr; }
  .lead-story { gap: 54px; }
  .lead-story-copy { max-width: 680px; }
  .milestone-row figure { width: min(68vw, 430px); }
  .recognition { gap: 64px; }
  .recognition-intro { grid-template-columns: 1fr; gap: 32px; }
  .award-list { grid-template-columns: repeat(2, 1fr); }
  .award-row:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .award-row:nth-child(2n) { border-right: 0; }
  .award-row { border-right: 0; border-bottom: 1px solid var(--line); }
  .award-row:last-child { border-bottom: 0; }
  .resource-art { max-width: 680px; }
  .rail-images { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .article-body { gap: 72px; }
  .article-contact { align-items: start; }
}

@media (max-width: 600px) {
  .press-hero { padding: 56px 0 80px; gap: 52px; }
  .press-hero h1 { font-size: clamp(50px, 15vw, 70px); }
  .press-lede { margin-top: 28px; font-size: 18px; }
  .press-actions { margin-top: 32px; flex-direction: column; }
  .press-actions .button { width: 100%; }
  .press-hero-art { width: calc(100% - 24px); }
  .press-latest { padding-block: 80px; }
  .press-section-head { gap: 20px; }
  .press-section-head h2,
  .recognition h2,
  .resources-copy h2 { font-size: 48px; }
  .lead-story { margin-top: 54px; }
  .story-meta { gap: 7px 13px; }
  .story-meta span + span::before,
  .story-meta time::before { margin-right: 13px; }
  .lead-story h3 { margin-top: 30px; font-size: 40px; }
  .lead-story blockquote { font-size: 24px; }
  .video-caption { flex-direction: column; gap: 5px; }
  .press-stream { padding-block: 86px; }
  .milestone-row { margin-top: 32px; gap: 48px; }
  .milestone-row figure { width: calc(100% - 38px); }
  .milestone-row h3 { font-size: 50px; }
  .recognition { padding-block: 86px; }
  .award-row { padding: 24px 0; grid-template-columns: 72px 1fr auto; gap: 14px; }
  .award-row > img { width: 62px; height: 76px; }
  .rail-heading { flex-direction: column; }
  .rail-images { margin-top: 36px; grid-template-columns: 1fr 1fr; gap: 8px; }
  
  .rail-images figure:last-child { grid-column: 1 / -1; width: 70%; margin: -10px 0 0 auto; }
  .award-row strong { font-size: 26px; }
  .press-resources { padding-block: 86px; }
  .resource-links a { flex-direction: column; gap: 6px; }
  .resource-links span { text-align: left; }
  .resource-art { gap: 8px; }

  .press-article { padding-top: 34px; }
  .article-header { margin-top: 54px; text-align: left; }
  .article-header .story-meta { justify-content: flex-start; }
  .article-header h1 { font-size: 52px; }
  .article-header > p { margin-top: 28px; font-size: 18px; }
  .article-video { margin-top: 54px; }
  .article-body { margin-top: 74px; gap: 64px; }
  .article-copy p { font-size: 20px; }
  .article-copy h2 { font-size: 44px; }
  .article-copy blockquote { margin-block: 44px; font-size: 35px; }
  .article-contact { margin-top: 90px; padding-block: 40px; gap: 38px; }
  .article-contact h2 { font-size: 44px; }
}

@media (prefers-reduced-motion: reduce) {
  .press-page *,
  .press-page *::before,
  .press-page *::after { scroll-behavior: auto !important; transition-duration: .01ms !important; }
}


/* Press-release figures. The pen is the subject of the announcement, so the
   photography sits in the column at full measure rather than as decoration. */
.article-copy .lede { font-size: clamp(19px, 1.4vw, 21px); line-height: 1.6; color: var(--ink); }
.lede strong { font-weight: 600; letter-spacing: .01em; }
.copy-figure { margin: 30px 0; padding: 22px; background: var(--paper-deep); }
.copy-figure img { max-width: 100%; max-height: 380px; width: auto; height: auto; display: block; margin: 0 auto; }
.copy-figure figcaption { margin-top: 14px; text-align: center; color: #6b6459; font-size: 14.5px; line-height: 1.5; }
.facts-figure { margin: 26px 0 0; padding: 18px; background: var(--paper-deep); }
.facts-figure img { max-width: 100%; max-height: 240px; width: auto; height: auto; display: block; margin: 0 auto; }
.facts-figure figcaption { margin-top: 12px; text-align: center; color: #6b6459; font-size: 12px; line-height: 1.45; }
.press-footnote { margin-top: 34px; padding-top: 16px; border-top: 1px solid var(--line); color: #6b6459; font-size: 13px; line-height: 1.55; }
@media (max-width: 900px) {
  .article-body { grid-template-columns: 1fr; gap: 36px; margin-top: 34px; }
}


/* Three phone screens read as one object: same width, same baseline, one caption
   underneath. Portrait mockups are 720x1558, so the row is capped by height. */
.phone-row { margin: 32px 0; padding: 26px 22px; background: var(--paper-deep); }
.phone-row > div { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; align-items: end; }
.phone-row img { width: 100%; height: auto; display: block; }
.phone-row figcaption { margin-top: 16px; text-align: center; color: #6b6459; font-size: 14.5px; line-height: 1.5; }
@media (max-width: 700px) { .phone-row > div { grid-template-columns: 1fr; gap: 14px; } }


/* Press-release body type. The article was set at display sizes that suit a
   landing page, not a document a journalist reads end to end. */
.article-copy p { font-size: 18.5px; line-height: 1.64; }
.article-copy h2 { font-size: clamp(28px, 2.5vw, 36px); margin-top: 44px; }
.article-copy blockquote { font-size: clamp(24px, 2.2vw, 31px); }
.press-article h1 { letter-spacing: -.02em; }


/* ---- Press-release components ---------------------------------------------
   A release is skimmed before it is read. The fact strip carries the three
   numbers a journalist would otherwise have to hunt for; the sources block
   carries the ones an investor will check. */
.release-facts {
  margin: 30px 0 34px;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  list-style: none;
  background: var(--line);
  border-block: 1px solid var(--ink);
}
.release-facts li { margin: 0; padding: 20px 18px 22px; display: flex; flex-direction: column; gap: 7px; background: var(--press-paper); }
.release-facts b { font-family: var(--serif); font-size: clamp(30px, 2.9vw, 40px); font-weight: 500; line-height: 1; letter-spacing: -.02em; color: var(--ink); }
.release-facts span { color: #5e5a51; font-size: 13.5px; line-height: 1.45; }
@media (max-width: 700px) { .release-facts { grid-template-columns: 1fr; } }

.article-copy code { padding: 2px 6px; background: var(--paper-deep); font-family: ui-monospace, SFMono-Regular, Menlo, monospace; font-size: .86em; }

.release-contact { margin-top: 38px !important; padding-top: 18px; border-top: 1px solid var(--ink); font-family: var(--sans) !important; font-size: 15px !important; }

.release-sources { margin-top: 34px; padding-top: 18px; border-top: 1px solid var(--line); }
.release-sources ol { margin: 14px 0 0; padding-left: 19px; }
.release-sources li { margin: 0 0 8px; color: #6b6459; font-family: var(--sans); font-size: 13.5px; line-height: 1.5; }
.release-sources a { color: #4f4b43; }

/* Loud on purpose. A silent placeholder is the kind that gets deployed. */
.draft-slot { margin: 34px 0; padding: 20px 22px; border: 1px dashed #b08a3c; background: #fdf8ee; }
.draft-slot p { margin: 0; color: #6b5a33; font-family: var(--sans) !important; font-size: 14.5px !important; line-height: 1.55; }
.draft-slot-label { margin-bottom: 8px !important; font-family: ui-monospace, SFMono-Regular, Menlo, monospace !important; font-size: 10px !important; font-weight: 700; letter-spacing: .17em; text-transform: uppercase; }
/* The house list marker belongs to prose lists, not to the fact strip. */
.release-facts li::before, .release-sources li::before { content: none; }
.release-sources ol li { position: static; }
/* pen-in-hand is a product shot on white; at the shared 380px cap it sat in a
   field of nothing. The wide variant is the one that carries the page. */
.copy-figure-wide { padding: 10px 22px 22px; }
.copy-figure-wide img { max-height: 520px; }
/* $0 is the argument, so it gets a cell of its own rather than a clause. */

/* The frame is baked into the artwork now, so the row is just three devices. */
.phone-row { padding: 0; background: none; }
.phone-row > div { align-items: start; gap: 22px; }

/* A named face carries more than an italic line does. */
.press-quote {
  margin: 40px 0;
  padding: 26px 0;
  border-block: 1px solid var(--ink);
  display: grid;
  grid-template-columns: 92px minmax(0, 1fr);
  align-items: center;
  gap: 24px;
}
.press-quote img { width: 92px; height: 92px; border-radius: 50%; object-fit: cover; display: block; }
.press-quote blockquote { margin: 0; padding: 0; border: 0; font-family: var(--serif); font-size: clamp(24px, 2.3vw, 33px); line-height: 1.18; letter-spacing: -.02em; }
.press-quote figcaption { margin-top: 14px; display: flex; flex-wrap: wrap; align-items: baseline; gap: 4px 14px; }
.press-quote figcaption b { font-family: var(--sans); font-size: 15px; font-weight: 650; letter-spacing: .01em; }
.press-quote figcaption span { color: var(--press-muted); font-family: ui-monospace, SFMono-Regular, Menlo, monospace; font-size: 10px; font-weight: 700; letter-spacing: .15em; text-transform: uppercase; }
@media (max-width: 640px) { .press-quote { grid-template-columns: 1fr; gap: 18px; } }

/* Attribution only — we have no licence to the reporter's photograph, and a
   borrowed headshot reads as endorsement. With no face to anchor it the line has
   to carry itself, so it is set larger and given the room a pull quote needs. */
.press-quote-plain { grid-template-columns: minmax(0, 1fr); gap: 0; padding: 32px 0; }
.press-quote-plain blockquote { font-size: clamp(27px, 2.9vw, 39px); line-height: 1.14; text-wrap: balance; }
.press-quote-plain figcaption { margin-top: 18px; }

/* Click-to-load video. The embed's default frame belongs to another exhibitor,
   so the page paints its own poster and only loads YouTube on demand. */
.video-facade {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  display: block;
  padding: 0;
  border: 0;
  background: #13120f;
  cursor: pointer;
  overflow: hidden;
}
.video-facade img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 700ms cubic-bezier(.22,.61,.36,1); }
.video-facade:hover img, .video-facade:focus-visible img { transform: scale(1.02); }
/* The poster carries its own centred headline. A play button in the middle of
   the frame lands straight on that type, so the control pairs with the timestamp
   in the corner instead and reads as one deliberate cluster. */
.video-play {
  position: absolute; inset: auto auto clamp(10px, 1.4vw, 18px) clamp(10px, 1.4vw, 18px); margin: 0;
  width: clamp(44px, 4.4vw, 64px); height: clamp(44px, 4.4vw, 64px);
  display: grid; place-items: center;
  color: #faf9f6;
  background: rgba(21, 19, 14, .82);
  border-radius: 50%;
  transition: background 220ms ease, transform 220ms ease;
}
.video-facade:hover .video-play, .video-facade:focus-visible .video-play { background: var(--ink); transform: scale(1.06); }
.video-play svg { margin-left: 3px; }
.video-cue {
  position: absolute; bottom: clamp(10px, 1.4vw, 18px);
  left: calc(clamp(10px, 1.4vw, 18px) + clamp(44px, 4.4vw, 64px) + 10px);
  height: clamp(44px, 4.4vw, 64px);
  display: inline-flex; align-items: center;
  padding: 0 13px;
  color: #faf9f6;
  background: rgba(21, 19, 14, .82);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 10px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase;
}
.video-facade:focus-visible { outline: 2px solid var(--ink); outline-offset: 3px; }

/* The left column was mostly empty below the facts. It now carries a quiet
   strip of gallery pictures, people and posters alternating, scrolling with
   the article rather than pinned beside it. */
/* The strip is distributed, never stacked: the aside stretches to the article's
   own height and the pictures space themselves across whatever that turns out to
   be. A fixed gap only ever fits one length of article - cutting two sections
   from the copy left the rail hanging 1275px past the end of the text. */
.article-rail { margin-top: 46px; flex: 1 1 auto; min-height: 0; display: flex; flex-direction: column; justify-content: space-between; gap: 34px; overflow: hidden; }
.article-rail img { width: 100%; height: auto; aspect-ratio: 4 / 5; object-fit: cover; display: block; }
.rail-more { color: #716c61; font-size: 13px; }
.rail-more:hover { color: var(--ink); }
@media (max-width: 900px) {
  .article-facts { display: block; }
  .article-rail { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 12px; align-items: start; overflow: visible; }
  .article-rail .press-kicker, .rail-more { grid-column: 1 / -1; }
}
@media (max-width: 560px) { .article-rail { grid-template-columns: repeat(2, minmax(0, 1fr)); } }

/* Award marks, three across. Without this they inherit the prose list marker
   and render at their natural 300-500px. */
.award-marks { margin: 24px 0 30px; padding: 0; display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 26px; list-style: none; }
.award-marks li { margin: 0; padding: 22px 20px; position: static; background: var(--paper-deep); }
.award-marks li::before { content: none; }
.award-marks a { display: block; color: inherit; text-decoration: none; }
.award-marks img { width: auto; height: 84px; max-width: 100%; object-fit: contain; object-position: left center; display: block; }
.award-marks b { margin-top: 16px; display: block; font-family: var(--sans); font-size: 14.5px; font-weight: 650; }
.award-marks span { margin-top: 5px; display: block; color: #716c61; font-family: var(--sans); font-size: 12.5px; line-height: 1.45; }
.award-marks a:hover b { text-decoration: underline; }
.award-marks .award-mark-static { display: block; color: inherit; }
.award-marks-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 18px; }
@media (max-width: 980px) { .award-marks-4 { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 700px) { .award-marks, .award-marks-4 { grid-template-columns: 1fr; gap: 10px; } }

/* Red Dot page. The mark carries real transparency, so it sits straight on the
   paper — no white plate behind it — and height:auto keeps its 300x424 attributes
   from pinning a definite height that would cancel the width. */
.reddot-header { display: grid; grid-template-columns: auto minmax(0, 1fr); align-items: start; gap: clamp(24px, 3vw, 46px); text-align: left; }
.reddot-mark { margin: 0; padding: 0; }
.reddot-mark img { width: clamp(104px, 10.5vw, 150px); height: auto; display: block; }
.reddot-header h1 { margin: 14px 0 0; text-wrap: balance; }
.reddot-dek { margin: 18px 0 0; max-width: 62ch; color: var(--press-muted); font-size: clamp(16.5px, 1.2vw, 18.5px); line-height: 1.6; }
.reddot-facts { margin-top: 34px; }
.reddot-copy { max-width: 74ch; margin-inline: auto; }
@media (max-width: 760px) { .reddot-header { grid-template-columns: 1fr; gap: 20px; } }

/* Each picture rises into place as it scrolls in. Pure CSS, so it cannot leave
   an image stuck at opacity 0 the way an observer would on a page that never
   loads script.js - the default state below is fully visible. */
@supports (animation-timeline: view()) {
  @media (prefers-reduced-motion: no-preference) {
    .article-rail img {
      animation: rail-rise linear both;
      animation-timeline: view();
      animation-range: entry 0% entry 80%;
    }
    @keyframes rail-rise {
      from { opacity: 0; transform: translateY(26px); }
      to   { opacity: 1; transform: none; }
    }
  }
}
