:root {
  --navy: #081b35;
  --navy2: #0e294e;
  --red: #d61f2c;
  --red2: #ae1520;
  --white: #fff;
  --paper: #f4f5f7;
  --ink: #121b29;
  --muted: #607087;
  --line: #d7dce3;
  --display: "Libre Franklin", Arial, sans-serif;
  --body: "DM Sans", Arial, sans-serif;
}

.editorial-section {
  display: grid;
  grid-template-columns: 0.8fr 1.25fr 0.72fr;
  gap: 3vw;
  padding: 105px 4vw;
  background: var(--navy);
  color: #fff;
}
.editorial-heading h2 {
  font-size: clamp(3.5rem, 5.6vw, 6.4rem);
  line-height: 0.88;
}
.editorial-heading h2 em { color: var(--red); }
.editorial-heading > p:last-child {
  max-width: 480px;
  color: #b9c6d5;
  margin-top: 26px;
}
.forbes-features { display: grid; gap: 18px; }
.forbes-card {
  display: grid;
  grid-template-columns: 175px 1fr;
  background: #fff;
  color: var(--navy);
  min-height: 235px;
  transition: transform 0.25s, box-shadow 0.25s;
}
.forbes-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.28);
}
.forbes-card img { width: 100%; height: 100%; object-fit: cover; }
.forbes-card > div { padding: 27px; }
.forbes-card span,
.forbes-card b {
  display: block;
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}
.forbes-card span { color: var(--red); }
.forbes-card h3 {
  font: 800 clamp(1.35rem, 2vw, 2rem)/1 var(--display);
  margin: 15px 0;
}
.forbes-card p { font-size: 0.75rem; color: var(--muted); margin: -5px 0 18px; }
.magazine-gallery { display: grid; grid-template-rows: 1.3fr 0.7fr; gap: 18px; }
.magazine-cover,
.magazine-profile {
  position: relative;
  min-height: 0;
  overflow: hidden;
  background: #102c50;
  margin: 0;
}
.magazine-cover img,
.magazine-profile img { width: 100%; height: 100%; object-fit: cover; display: block; }
.magazine-cover span,
.magazine-profile figcaption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 42px 18px 16px;
  background: linear-gradient(transparent, rgba(3, 15, 31, 0.92));
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: #fff;
}
.magazine-profile img { object-position: center 25%; }
@media (max-width: 1020px) {
  .editorial-section { grid-template-columns: 1fr 1fr; }
  .editorial-heading { grid-column: 1 / -1; }
  .magazine-gallery { min-height: 600px; }
}
@media (max-width: 650px) {
  .editorial-section { grid-template-columns: 1fr; padding: 80px 20px; }
  .forbes-card { grid-template-columns: 120px 1fr; }
  .forbes-card > div { padding: 20px; }
  .magazine-gallery { min-height: 760px; }
  .editorial-heading h2 { font-size: 3.35rem; }
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font: 16px/1.62 var(--body);
  overflow-x: hidden;
}
a {
  color: inherit;
  text-decoration: none;
}
img {
  display: block;
  width: 100%;
}
figure {
  margin: 0;
}
::selection {
  background: var(--red);
  color: #fff;
}
.kicker,
.eyebrow {
  margin: 0 0 20px;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.kicker {
  color: var(--red);
}
.kicker.light {
  color: #ff8490;
}
h1,
h2,
h3 {
  font-family: var(--display);
  margin: 0;
  letter-spacing: -0.055em;
  line-height: 0.91;
}
h2 {
  font-size: clamp(3.7rem, 7.7vw, 8.5rem);
  font-weight: 900;
}
h2 em {
  font-style: normal;
  color: var(--red);
}
.site-header {
  height: 88px;
  padding: 0 4vw;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: absolute;
  inset: 0 0 auto;
  z-index: 20;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 5px solid var(--red);
  color: var(--navy);
}
.brand img {
  width: 245px;
  height: auto;
}
.site-header nav {
  display: flex;
  gap: 29px;
  align-items: center;
  font-size: 0.71rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.site-header nav > a:not(.nav-cta):hover {
  color: var(--red);
}
.nav-cta {
  background: var(--navy);
  color: #fff;
  padding: 12px 19px;
}
.nav-cta:hover {
  background: var(--red);
}
.menu-toggle {
  display: none;
  border: 0;
  background: none;
  color: var(--navy);
  font: 800 0.75rem var(--body);
  text-transform: uppercase;
  letter-spacing: 0.12em;
}
.hero {
  min-height: max(780px, 100svh);
  position: relative;
  background: var(--navy);
  color: #fff;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 88px;
}
.hero-image {
  position: absolute;
  inset: 0 0 0 auto;
  width: 59%;
  height: 100%;
  object-fit: cover;
  object-position: center 18%;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      90deg,
      var(--navy) 0 47%,
      rgba(8, 27, 53, 0.85) 58%,
      rgba(8, 27, 53, 0.06) 82%
    ),
    linear-gradient(0deg, rgba(8, 27, 53, 0.55), transparent 40%);
}
.hero:before {
  content: "";
  position: absolute;
  z-index: 2;
  left: 0;
  top: 88px;
  bottom: 0;
  width: 10px;
  background: var(--red);
}
.hero-copy {
  position: relative;
  z-index: 3;
  padding: 105px 4vw 110px;
  max-width: 880px;
}
.eyebrow {
  display: flex;
  align-items: center;
  gap: 15px;
  color: #dce5ef;
}
.eyebrow:before {
  content: "★";
  color: var(--red);
  font-size: 0.9rem;
}
h1 {
  font-size: clamp(5.4rem, 11.5vw, 11rem);
  font-weight: 900;
  line-height: 0.78;
}
.hero-lead {
  max-width: 700px;
  font-size: clamp(1.1rem, 1.65vw, 1.42rem);
  line-height: 1.5;
  color: #d3dce7;
  margin: 34px 0 0;
}
.hero-actions {
  display: flex;
  gap: 12px;
  margin-top: 36px;
}
.button {
  display: inline-flex;
  min-height: 54px;
  padding: 0 23px;
  align-items: center;
  justify-content: center;
  border: 2px solid transparent;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: 0.2s;
  gap: 9px;
}
.button i,
.nav-cta i {
  font-size: 1rem;
  line-height: 1;
}
.button.primary {
  background: var(--red);
  color: #fff;
}
.button.primary:hover {
  background: #fff;
  color: var(--navy);
}
.button.secondary {
  border-color: rgba(255, 255, 255, 0.65);
  color: #fff;
}
.button.secondary:hover {
  background: #fff;
  color: var(--navy);
}
.button.dark {
  background: var(--navy);
  color: #fff;
  margin-top: 28px;
}
.button.dark:hover {
  background: var(--red);
}
.hero-note {
  position: absolute;
  z-index: 4;
  bottom: 25px;
  right: 4vw;
  width: 300px;
  padding: 18px 20px;
  background: #fff;
  color: var(--navy);
  border-left: 6px solid var(--red);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.16);
}
.hero-note strong,
.hero-note span {
  display: block;
}
.hero-note strong {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.hero-note span {
  font-size: 0.74rem;
  color: var(--muted);
  margin-top: 3px;
}
.identity-band {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: var(--red);
  color: #fff;
}
.as-seen-on {
  position: relative;
  z-index: 2;
  padding: 32px 4vw 36px;
  background: var(--red);
  color: var(--white);
  border-top: 1px solid rgba(255,255,255,.2);
  border-bottom: 1px solid rgba(0,0,0,.14);
}
.as-seen-on > p {
  margin: 0 0 22px;
  color: rgba(255,255,255,.78);
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .2em;
  text-align: center;
  text-transform: uppercase;
}
.as-seen-logos {
  display: grid;
  grid-template-columns: repeat(8, minmax(0, 1fr));
  gap: 28px;
  align-items: center;
  max-width: 1520px;
  margin: 0 auto;
}
.media-wordmark {
  display: flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-family: var(--display);
  font-size: clamp(.72rem, 1vw, 1rem);
  font-weight: 900;
  letter-spacing: -.02em;
  line-height: 1;
  text-align: center;
  text-transform: uppercase;
  transition: opacity .2s ease, transform .2s ease;
}
.media-wordmark:hover {
  color: var(--white);
  opacity: .76;
  transform: translateY(-2px);
}
.media-wordmark.nyt {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(.8rem, 1.15vw, 1.12rem);
  text-transform: none;
}
.media-wordmark.cnn {
  font-size: clamp(1.35rem, 2vw, 2rem);
  letter-spacing: -.1em;
}
.media-wordmark.axios {
  font-size: clamp(1.2rem, 1.7vw, 1.65rem);
  text-transform: none;
}
.media-wordmark.forbes {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(.8rem, 1.15vw, 1.15rem);
  text-transform: none;
}
.media-wordmark.univision {
  letter-spacing: .04em;
}
.identity-band span {
  padding: 23px 24px;
  text-align: center;
  border-right: 1px solid rgba(255, 255, 255, 0.3);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.section {
  padding: 120px 4vw;
}
.section-mark {
  border-top: 2px solid var(--navy);
  padding-top: 10px;
  font-size: 0.67rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  color: var(--red);
}
.statement {
  display: grid;
  grid-template-columns: 70px 1.25fr 0.75fr;
  gap: 5vw;
  align-items: start;
  background: #fff;
}
.statement-copy {
  padding-top: 50px;
}
.statement-copy h2 {
  font-size: clamp(3.8rem, 6.5vw, 7.2rem);
}
.statement-copy .lede {
  font: 700 clamp(1.6rem, 2.8vw, 2.7rem)/1.18 var(--display);
  letter-spacing: -0.045em;
  color: var(--navy);
  max-width: 870px;
  margin: 50px 0 24px;
}
.statement-copy > p:last-child {
  max-width: 780px;
  color: #4d5b6d;
}
.statement-photo {
  padding-top: 50px;
}
.statement-photo img {
  height: 640px;
  object-fit: cover;
  object-position: center 20%;
  filter: saturate(0.85);
}
figcaption {
  margin-top: 9px;
  color: var(--muted);
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.record-section {
  background: var(--navy);
  color: #fff;
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 7vw;
  padding: 120px 4vw;
}
.record-heading {
  position: sticky;
  top: 38px;
  align-self: start;
}
.record-heading h2 {
  color: #fff;
}
.record-heading > p:last-child {
  max-width: 500px;
  color: #aebdce;
  margin-top: 32px;
}
.record-list {
  border-top: 1px solid #36506d;
}
.record-card {
  position: relative;
  padding: 34px 0 40px;
  border-bottom: 1px solid #36506d;
}
.record-type {
  display: inline-block;
  padding: 6px 9px;
  background: var(--red);
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.record-year {
  position: absolute;
  right: 0;
  top: 39px;
  color: #8fa3ba;
  font-size: 0.67rem;
  font-weight: 700;
  letter-spacing: 0.1em;
}
.record-card h3 {
  font-size: clamp(2rem, 3vw, 3.1rem);
  margin: 25px 0 15px;
}
.record-card p {
  color: #bdc9d7;
  max-width: 710px;
  margin: 0 0 18px;
}
.record-card a {
  font-size: 0.7rem;
  color: #fff;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border-bottom: 2px solid var(--red);
  padding-bottom: 4px;
}
.work {
  background: var(--paper);
}
.work-heading {
  margin: 65px 0;
}
.work-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}
.work-card {
  min-height: 410px;
  padding: 35px;
  background: #fff;
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
}
.work-card > span,
.work-card.image div > span {
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  color: var(--red);
}
.work-card h3 {
  font-size: clamp(2.6rem, 4.6vw, 5rem);
  margin: auto 0 24px;
  color: var(--navy);
}
.work-card p {
  max-width: 600px;
  color: #586577;
  margin: 0;
}
.work-card.red {
  background: var(--red);
  color: #fff;
  border-color: var(--red);
}
.work-card.red span,
.work-card.navy span {
  color: #fff;
}
.work-card.red h3,
.work-card.red p,
.work-card.navy h3,
.work-card.navy p {
  color: #fff;
}
.work-card.navy {
  background: var(--navy);
  color: #fff;
  border-color: var(--navy);
}
.work-card.image {
  position: relative;
  padding: 0;
  overflow: hidden;
  color: #fff;
  border: 0;
}
.work-card.image > img {
  position: absolute;
  inset: 0;
  height: 100%;
  object-fit: cover;
}
.work-card.image:after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    0deg,
    rgba(8, 27, 53, 0.95),
    rgba(8, 27, 53, 0.08) 75%
  );
}
.work-card.image > div {
  position: absolute;
  z-index: 2;
  inset: auto 35px 35px;
}
.work-card.image h3 {
  color: #fff;
  margin: 60px 0 15px;
}
.work-card.image p {
  color: #dbe4ee;
}
.convening {
  padding: 120px 4vw;
  background: var(--red);
  color: #fff;
  display: grid;
  grid-template-columns: 0.68fr 1.32fr;
  gap: 6vw;
}
.convening-copy {
  align-self: center;
}
.convening-copy h2 {
  font-size: clamp(4rem, 6.6vw, 7rem);
}
.convening-copy h2 em {
  color: var(--navy);
}
.convening-copy > p:last-child {
  max-width: 500px;
  color: #ffe0e2;
  margin-top: 32px;
}
.convening-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  grid-template-rows: 1fr 1fr;
  gap: 14px;
}
.convening-grid figure {
  min-height: 280px;
}
.convening-grid .large {
  grid-row: 1/3;
  min-height: 620px;
}
.convening-grid img {
  height: 100%;
  object-fit: cover;
}
.convening-grid figcaption {
  color: #fff;
}
.speaking {
  display: grid;
  grid-template-columns: 65px 0.8fr 1.2fr;
  gap: 5vw;
  background: #fff;
}
.speaking-visual {
  padding-top: 55px;
  position: relative;
}
.speaking-visual img {
  height: 730px;
  object-fit: cover;
  object-position: center 18%;
}
.broadcast-badge {
  position: absolute;
  top: 80px;
  left: -13px;
  background: var(--red);
  color: #fff;
  padding: 10px 15px;
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.18em;
}
.speaking-copy {
  padding-top: 55px;
}
.speaking-copy h2 {
  font-size: clamp(3.8rem, 6vw, 6.7rem);
}
.speaking-copy > p {
  max-width: 680px;
  color: #526174;
  margin: 32px 0;
}
.topics {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}
.topics span {
  padding: 8px 11px;
  background: var(--paper);
  border: 1px solid var(--line);
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.press {
  display: grid;
  grid-template-columns: 65px 0.7fr 1.3fr;
  gap: 5vw;
}
.press-heading {
  padding-top: 55px;
}
.press-heading h2 {
  font-size: clamp(3.5rem, 5.7vw, 6.2rem);
}
.press-list {
  padding-top: 55px;
  border-top: 2px solid var(--navy);
}
.homepage-press-list .press-row:not(.featured-press) {
  display: none;
}
.homepage-press-list {
  display: flex;
  flex-direction: column;
}
.homepage-press-list .priority-1 { order: 1; }
.homepage-press-list .priority-2 { order: 2; }
.homepage-press-list .priority-3 { order: 3; }
.homepage-press-list .priority-4 { order: 4; }
.homepage-press-list .priority-5 { order: 5; }
.homepage-press-list .priority-6 { order: 6; }
.homepage-press-list .priority-7 { order: 7; }
.homepage-press-list .priority-8 { order: 8; }
.press-archive-link {
  grid-column: 3;
  justify-self: start;
  margin-top: 28px;
}
.press-page main {
  background: var(--paper);
}
.press-archive-hero {
  padding: 150px 7vw 72px;
  background: var(--navy);
  color: white;
}
.press-archive-hero h1 {
  max-width: 1000px;
  margin: 16px 0 20px;
  font-size: clamp(4rem, 9vw, 8.5rem);
  line-height: .84;
  letter-spacing: -.07em;
}
.press-archive-hero p:last-child {
  max-width: 690px;
  color: #cbd3df;
}
.press-archive {
  padding: 80px 7vw 120px;
}
.press-archive .press-list {
  max-width: 1120px;
  margin-left: auto;
}
.press-group-title {
  max-width: 1120px;
  margin: 72px 0 16px auto;
}
.press-row {
  display: grid;
  grid-template-columns: 155px 1fr 65px;
  gap: 20px;
  align-items: center;
  padding: 26px 0;
  border-bottom: 1px solid var(--line);
  transition: 0.2s;
}
.press-row:hover {
  padding-left: 10px;
  color: var(--red);
}
.press-row span,
.press-row b {
  font-size: 0.67rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.press-row strong {
  font-size: 1.04rem;
  color: var(--navy);
}
.press-row b {
  text-align: right;
}
.disclosure {
  background: #e7eaf0;
  padding: 32px 4vw;
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 30px;
  border-top: 1px solid #cad1dc;
}
.disclosure strong {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--navy);
}
.disclosure p {
  margin: 0;
  max-width: 1100px;
  font-size: 0.78rem;
  color: #546376;
}
.closing {
  min-height: 720px;
  position: relative;
  display: flex;
  align-items: center;
  color: #fff;
  overflow: hidden;
}
.closing > img {
  position: absolute;
  inset: 0;
  height: 100%;
  object-fit: cover;
  object-position: center 34%;
}
.closing-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(8, 27, 53, 0.95),
    rgba(8, 27, 53, 0.64) 60%,
    rgba(8, 27, 53, 0.18)
  );
}
.closing-copy {
  position: relative;
  z-index: 2;
  padding: 90px 4vw;
}
.closing-copy h2 {
  font-size: clamp(4.8rem, 9vw, 9.5rem);
}
.closing-copy p:not(.kicker) {
  font-size: 1.05rem;
  color: #d5dfeb;
  max-width: 590px;
}
.closing-copy .button {
  margin-top: 22px;
}
footer {
  padding: 48px 4vw;
  background: #fff;
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  align-items: center;
  gap: 20px;
  border-top: 6px solid var(--red);
}
footer img {
  width: 235px;
}
footer p {
  color: var(--muted);
  font-size: 0.75rem;
}
footer div {
  display: flex;
  gap: 18px;
  font-size: 0.68rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.07em;
}
footer small {
  grid-column: 1/-1;
  color: var(--muted);
  font-size: 0.65rem;
}
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 0.65s ease,
    transform 0.65s ease;
}
.reveal.visible {
  opacity: 1;
  transform: none;
}
@media (max-width: 1020px) {
  .site-header {
    height: 76px;
  }
  .brand img {
    width: 205px;
  }
  .menu-toggle {
    display: block;
  }
  .site-header nav {
    display: none;
    position: absolute;
    top: 76px;
    left: 0;
    right: 0;
    padding: 25px 4vw;
    background: #fff;
    flex-direction: column;
    align-items: flex-start;
    border-bottom: 5px solid var(--red);
  }
  .site-header nav.open {
    display: flex;
  }
  .hero {
    padding-top: 76px;
  }
  .hero:before {
    top: 76px;
  }
  .hero-image {
    width: 100%;
    opacity: 0.58;
  }
  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(8, 27, 53, 0.94), rgba(8, 27, 53, 0.4)),
      linear-gradient(0deg, rgba(8, 27, 53, 0.88), transparent 55%);
  }
  .hero-copy {
    padding-top: 125px;
  }
  .identity-band {
    grid-template-columns: 1fr 1fr;
  }
  .statement,
  .record-section,
  .convening {
    grid-template-columns: 1fr;
  }
  .statement {
    grid-template-columns: 55px 1fr;
  }
  .statement-photo {
    grid-column: 2;
  }
  .record-heading {
    position: static;
  }
  .convening-copy {
    margin-bottom: 30px;
  }
  .speaking,
  .press {
    grid-template-columns: 55px 1fr;
  }
  .speaking-visual,
  .press-heading {
    grid-column: 2;
  }
  .speaking-copy,
  .press-list {
    grid-column: 2;
  }
  .speaking-visual img {
    height: 620px;
  }
  .hero-note {
    display: none;
  }
}
@media (max-width: 650px) {
  .site-header {
    padding: 0 20px;
  }
  .hero-copy {
    padding: 115px 20px 85px;
  }
  .hero {
    min-height: 760px;
  }
  .hero-image {
    object-position: center 14%;
  }
  h1 {
    font-size: 4.7rem;
  }
  .hero-lead {
    font-size: 1rem;
  }
  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
  }
  .identity-band {
    grid-template-columns: 1fr;
  }
  .identity-band span {
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  }
  .section,
  .record-section,
  .convening {
    padding: 80px 20px;
  }
  .statement,
  .speaking,
  .press {
    grid-template-columns: 1fr;
  }
  .section-mark {
    grid-column: 1;
  }
  .statement-copy,
  .statement-photo,
  .speaking-visual,
  .speaking-copy,
  .press-heading,
  .press-list {
    grid-column: 1;
    padding-top: 35px;
  }
  h2,
  .statement-copy h2,
  .record-heading h2,
  .work-heading h2,
  .speaking-copy h2,
  .press-heading h2 {
    font-size: 3.35rem;
  }
  .statement-photo img {
    height: 500px;
  }
  .work-grid {
    grid-template-columns: 1fr;
  }
  .work-card {
    min-height: 350px;
    padding: 27px;
  }
  .work-card.image {
    min-height: 450px;
  }
  .convening-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }
  .convening-grid .large {
    grid-row: auto;
    min-height: 390px;
  }
  .convening-grid figure {
    min-height: 300px;
  }
  .speaking-visual img {
    height: 500px;
  }
  .press-row {
    grid-template-columns: 1fr 52px;
    gap: 10px;
  }
  .press-row span {
    grid-column: 1/-1;
  }
  .press-row b {
    grid-column: 2;
    grid-row: 2;
  }
  .disclosure {
    grid-template-columns: 1fr;
    padding: 28px 20px;
    gap: 8px;
  }
  .closing {
    min-height: 650px;
  }
  .closing-copy {
    padding: 70px 20px;
  }
  .closing-copy h2 {
    font-size: 4rem;
  }
  footer {
    grid-template-columns: 1fr;
    padding: 40px 20px;
  }
  footer small {
    grid-column: 1;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

@media (max-width: 1100px) {
  .as-seen-logos {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    row-gap: 20px;
  }
}

@media (max-width: 650px) {
  .as-seen-on {
    padding: 28px 6vw 30px;
  }
  .as-seen-logos {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px 22px;
  }
  .media-wordmark {
    min-height: 40px;
    font-size: .72rem;
  }
  .media-wordmark.nyt,
  .media-wordmark.forbes {
    font-size: .8rem;
  }
  .media-wordmark.cnn,
  .media-wordmark.axios {
    font-size: 1.25rem;
  }
}
.brand {
  display: flex;
  align-items: center;
}
.brand img {
  width: 310px;
}
footer img {
  width: 320px;
}
@media (max-width: 1020px) {
  .brand img {
    width: 235px;
  }
}
@media (max-width: 650px) {
  .brand img {
    width: 205px;
  }
  footer img {
    width: 280px;
    max-width: 100%;
  }
}
.cpac-feature {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  background: var(--navy);
  color: #fff;
  min-height: 830px;
}
.cpac-art {
  position: relative;
  min-height: 760px;
  overflow: hidden;
}
.cpac-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cpac-art:after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, transparent 70%, var(--navy)),
    linear-gradient(0deg, rgba(8, 27, 53, 0.55), transparent 40%);
}
.cpac-logo {
  position: absolute;
  z-index: 2;
  left: 35px;
  bottom: 35px;
  width: 210px;
  padding: 18px;
  background: #fff;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.28);
}
.cpac-copy {
  padding: 105px 5vw 85px;
  align-self: center;
}
.cpac-copy h2 {
  font-size: clamp(4.5rem, 7vw, 8rem);
}
.cpac-lede {
  font: 700 clamp(1.35rem, 2vw, 2rem)/1.25 var(--display);
  letter-spacing: -0.03em;
  color: #fff;
  margin: 35px 0;
}
.cpac-copy > p:not(.kicker):not(.cpac-lede) {
  color: #bac8d7;
  max-width: 650px;
}
.cpac-facts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid #3f5875;
  border-bottom: 1px solid #3f5875;
  margin: 30px 0;
}
.cpac-facts div {
  padding: 18px 12px;
  border-right: 1px solid #3f5875;
}
.cpac-facts div:first-child {
  padding-left: 0;
}
.cpac-facts div:last-child {
  border: 0;
}
.cpac-facts strong,
.cpac-facts span {
  display: block;
}
.cpac-facts strong {
  font: 800 1.05rem var(--display);
}
.cpac-facts span {
  font-size: 0.67rem;
  color: #91a4ba;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.cpac-links {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 28px;
}
.cpac-links > a:not(.button) {
  font-size: 0.68rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border-bottom: 2px solid var(--red);
  padding-bottom: 4px;
}
.cpac-copy small {
  display: block;
  color: #7188a2;
  font-size: 0.62rem;
  margin-top: 26px;
}
.video-library {
  background: #eef1f5;
}
.video-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 6vw;
  margin: 65px 0 55px;
}
.video-heading > p {
  max-width: 480px;
  color: var(--muted);
}
.video-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.video-card {
  background: #fff;
  border-bottom: 4px solid transparent;
  transition: 0.25s;
  box-shadow: 0 8px 24px rgba(8, 27, 53, 0.06);
}
.video-card:hover {
  transform: translateY(-5px);
  border-color: var(--red);
}
.video-thumb {
  display: block;
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
  background: var(--navy);
}
.video-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.video-thumb:after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(8, 27, 53, 0.5), transparent 65%);
}
.video-thumb b {
  position: absolute;
  z-index: 2;
  left: 20px;
  bottom: 17px;
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--red);
  color: #fff;
  font-size: 1rem;
}
.video-meta {
  display: block;
  padding: 22px;
}
.video-meta small,
.video-meta strong,
.video-meta em {
  display: block;
}
.video-meta small {
  font-size: 0.62rem;
  color: var(--red);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}
.video-meta strong {
  font: 800 1.1rem/1.25 var(--display);
  color: var(--navy);
  margin: 8px 0 18px;
}
.video-meta em {
  font-style: normal;
  font-size: 0.68rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.video-library-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 38px;
}
.button.outline {
  border: 2px solid var(--navy);
  color: var(--navy);
  background: transparent;
}
.button.outline:hover {
  background: var(--navy);
  color: #fff;
}
.social-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 9px !important;
}
.social-links a {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 7px 9px;
  border: 1px solid var(--line);
}
.social-links a:hover {
  background: var(--navy);
  color: #fff;
}
.social-links span {
  width: 20px;
  height: 20px;
  display: grid;
  place-items: center;
  background: var(--red);
  color: #fff;
  border-radius: 50%;
  font: 800 10px var(--body);
  text-transform: none;
  letter-spacing: 0;
}
.social-links span i {
  font-size: 11px;
  line-height: 1;
}
.subpage {
  background: var(--paper);
}
.sub-header {
  height: 88px;
  padding: 0 4vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #fff;
  border-bottom: 5px solid var(--red);
}
.sub-header .brand img {
  width: 310px;
}
.back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--navy);
}
.library-hero {
  padding: 100px 4vw;
  background: var(--navy);
  color: #fff;
}
.library-hero h1 {
  font-size: clamp(4rem, 8vw, 8rem);
  line-height: 0.88;
}
.library-hero > p:last-child {
  max-width: 650px;
  color: #bdcad8;
  font-size: 1.08rem;
  margin-top: 25px;
}
.playlist-feature {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 5vw;
  align-items: center;
  padding: 80px 4vw;
  background: #fff;
  border-bottom: 1px solid var(--line);
}
.playlist-copy h2,
.section-intro h2 {
  font-size: clamp(3rem, 5vw, 5.8rem);
  line-height: 0.92;
  color: var(--navy);
}
.playlist-copy p:not(.kicker) {
  color: var(--muted);
  max-width: 520px;
  margin: 24px 0 30px;
}
.playlist-player {
  aspect-ratio: 16/9;
  background: #000;
  box-shadow: 0 18px 45px rgba(8, 27, 53, 0.2);
}
.playlist-player iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}
.all-videos {
  padding: 80px 4vw;
}
.section-intro {
  margin-bottom: 45px;
}
.simple-footer {
  display: flex;
  justify-content: space-between;
}
.simple-footer img {
  width: 290px;
}
.simple-footer small {
  grid-column: auto;
}
.watch-shell {
  padding: 55px 4vw 90px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 390px;
  gap: 35px;
  background: #e9edf2;
}
.player-wrap {
  aspect-ratio: 16/9;
  background: #000;
  box-shadow: 0 15px 40px rgba(8, 27, 53, 0.18);
}
.player-wrap iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}
.watch-main > .kicker {
  margin-top: 32px;
}
.watch-main h1 {
  font-size: clamp(2.5rem, 4.6vw, 5rem);
  line-height: 0.95;
  color: var(--navy);
}
.watch-main > p:last-child {
  color: var(--muted);
  max-width: 760px;
}
.related {
  background: #fff;
  padding: 24px;
  align-self: start;
  max-height: calc(100vh - 140px);
  overflow: auto;
}
.related-head {
  display: flex;
  justify-content: space-between;
  padding-bottom: 18px;
  border-bottom: 2px solid var(--navy);
}
.related-head strong,
.related-head a {
  font-size: 0.68rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.09em;
}
.related-head a {
  color: var(--red);
}
.related-video {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 13px;
  padding: 15px 0;
  border-bottom: 1px solid var(--line);
}
.related-video img {
  aspect-ratio: 16/9;
  object-fit: cover;
}
.related-video small,
.related-video strong {
  display: block;
}
.related-video small {
  font-size: 0.57rem;
  color: var(--red);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.related-video strong {
  font: 700 0.78rem/1.25 var(--display);
  margin-top: 4px;
  color: var(--navy);
}
@media (max-width: 1020px) {
  .cpac-feature {
    grid-template-columns: 1fr;
  }
  .cpac-art {
    min-height: 620px;
  }
  .cpac-art:after {
    background: linear-gradient(0deg, var(--navy), transparent 28%);
  }
  .video-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .video-heading {
    display: block;
  }
  .video-heading > p {
    margin-top: 25px;
  }
  .playlist-feature {
    grid-template-columns: 1fr;
  }
  .watch-shell {
    grid-template-columns: 1fr;
  }
  .related {
    max-height: none;
  }
  .sub-header {
    height: 76px;
  }
  .sub-header .brand img {
    width: 235px;
  }
}
@media (max-width: 650px) {
  .cpac-art {
    min-height: 440px;
  }
  .cpac-logo {
    width: 150px;
    left: 20px;
    bottom: 20px;
    padding: 12px;
  }
  .cpac-copy {
    padding: 75px 20px;
  }
  .cpac-copy h2 {
    font-size: 3.6rem;
  }
  .cpac-facts {
    grid-template-columns: 1fr;
  }
  .cpac-facts div,
  .cpac-facts div:first-child {
    padding: 12px 0;
    border-right: 0;
    border-bottom: 1px solid #3f5875;
  }
  .cpac-facts div:last-child {
    border-bottom: 0;
  }
  .video-grid {
    grid-template-columns: 1fr;
  }
  .video-heading {
    margin: 45px 0 35px;
  }
  .sub-header {
    padding: 0 20px;
  }
  .sub-header .brand img {
    width: 205px;
  }
  .library-hero,
  .playlist-feature,
  .all-videos,
  .watch-shell {
    padding-left: 20px;
    padding-right: 20px;
  }
  .playlist-feature {
    padding-top: 55px;
    padding-bottom: 55px;
  }
  .library-hero {
    padding-top: 70px;
    padding-bottom: 70px;
  }
  .library-hero h1 {
    font-size: 3.5rem;
  }
  .watch-shell {
    padding-top: 25px;
  }
  .related-video {
    grid-template-columns: 105px 1fr;
  }
  .social-links {
    justify-content: flex-start !important;
  }
  .simple-footer {
    display: grid;
  }
}
.text-link {
  display: inline-block;
  margin-top: 22px;
  color: var(--red);
  font-weight: 800;
  border-bottom: 2px solid currentColor;
}
.bio-hero {
  padding: 105px 4vw 90px;
  background: var(--navy);
  color: #fff;
}
.bio-hero h1 {
  max-width: 1100px;
  font-size: clamp(3.8rem, 7.8vw, 8rem);
  line-height: 0.88;
}
.bio-hero .bio-deck {
  max-width: 820px;
  margin-top: 30px;
  font-size: clamp(1.1rem, 1.8vw, 1.5rem);
  color: #c0ccda;
}
.bio-layout {
  display: grid;
  grid-template-columns: 260px minmax(0, 820px);
  gap: 7vw;
  justify-content: center;
  padding: 90px 4vw;
  background: #fff;
}
.bio-aside {
  align-self: start;
  position: sticky;
  top: 30px;
  border-top: 5px solid var(--red);
  padding-top: 22px;
}
.bio-aside strong,
.bio-aside span {
  display: block;
}
.bio-aside strong {
  font: 800 1rem var(--display);
  color: var(--navy);
  text-transform: uppercase;
}
.bio-aside span {
  font-size: 0.72rem;
  color: var(--muted);
  margin-top: 8px;
}
.bio-body h2 {
  font-size: clamp(2rem, 3.5vw, 3.6rem);
  line-height: 1;
  color: var(--navy);
  margin: 60px 0 20px;
}
.bio-body h2:first-child {
  margin-top: 0;
}
.bio-body p {
  font-size: 1.04rem;
  line-height: 1.78;
  color: #33435a;
  margin: 0 0 22px;
}
.bio-body a {
  color: var(--red);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.bio-note {
  margin-top: 60px;
  padding: 25px;
  border-left: 5px solid var(--red);
  background: #eef1f5;
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.6;
}
.bio-sources {
  padding: 70px 4vw;
  background: #eef1f5;
}
.bio-sources > div {
  max-width: 1080px;
  margin: auto;
}
.bio-sources h2 {
  font-size: clamp(2.5rem, 4vw, 4.7rem);
  color: var(--navy);
}
.source-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 35px;
}
.source-grid a {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 20px;
  background: #fff;
  border-left: 4px solid var(--red);
  font-weight: 700;
  color: var(--navy);
}
.source-grid a span {
  font-size: 0.68rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
@media (max-width: 760px) {
  .bio-layout {
    grid-template-columns: 1fr;
    padding: 60px 20px;
  }
  .bio-aside {
    position: static;
  }
  .bio-hero,
  .bio-sources {
    padding-left: 20px;
    padding-right: 20px;
  }
  .source-grid {
    grid-template-columns: 1fr;
  }
}

/* Stacked Tony Delgado wordmark */
.site-header .brand img,
.sub-header .brand img {
  width: 132px;
  max-height: 68px;
  object-fit: contain;
}
footer img,
.simple-footer img {
  width: 180px;
  max-width: 100%;
  height: auto;
}
@media (max-width: 650px) {
  .site-header .brand img,
  .sub-header .brand img {
    width: 112px;
    max-height: 60px;
  }
  footer img,
  .simple-footer img {
    width: 150px;
  }
}
