:root {
  color-scheme: dark;
  --bg: #021c1b;
  --bg-deep: #020908;
  --panel: rgba(2, 16, 16, 0.94);
  --panel-soft: rgba(0, 44, 42, 0.72);
  --line: rgba(44, 211, 198, 0.36);
  --line-soft: rgba(255, 255, 255, 0.11);
  --text: #f6fbf8;
  --muted: #b7cbc5;
  --orange: #fb3a12;
  --orange-dark: #b82009;
  --gold: #ffc400;
  --teal: #0fc5bd;
  --teal-dark: #00645f;
  --radius: 8px;
  --shadow: 0 18px 55px rgba(0, 0, 0, 0.34);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--text);
  background:
    radial-gradient(circle at 18% 8%, rgba(15, 197, 189, 0.18), transparent 28rem),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px) 0 0 / 48px 48px,
    linear-gradient(135deg, #042f2d 0%, #031816 46%, #010302 100%);
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
}

body.nav-open {
  overflow: hidden;
}

a,
button,
input {
  font: inherit;
}

a {
  color: inherit;
}

img {
  max-width: 100%;
  height: auto;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: minmax(170px, 230px) minmax(0, auto) minmax(170px, 220px) auto;
  justify-content: center;
  gap: clamp(16px, 2vw, 30px);
  align-items: center;
  min-height: 78px;
  padding: 10px clamp(16px, 3vw, 34px);
  background: rgba(0, 0, 0, 0.96);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.brand {
  display: inline-flex;
  align-items: center;
  width: min(230px, 27vw);
  min-width: 170px;
}

.brand img {
  display: block;
  width: 100%;
  height: auto;
}

.primary-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(11px, 1.55vw, 22px);
}

.primary-nav a {
  position: relative;
  padding: 12px 0;
  font-size: 14px;
  font-weight: 850;
  text-decoration: none;
  white-space: nowrap;
}

.primary-nav a.active::after,
.primary-nav a:hover::after {
  position: absolute;
  right: 0;
  bottom: 3px;
  left: 0;
  height: 3px;
  content: "";
  background: var(--gold);
}

.search-form {
  display: grid;
  grid-template-columns: 1fr 42px;
  min-height: 46px;
  overflow: hidden;
  background: #031112;
  border: 1px solid rgba(112, 178, 178, 0.7);
  border-radius: var(--radius);
}

.search-form input {
  min-width: 0;
  padding: 0 14px;
  color: var(--text);
  background: transparent;
  border: 0;
  outline: 0;
}

.search-form button {
  color: var(--text);
  background: transparent;
  border: 0;
  cursor: pointer;
}

.tip-button,
.read-button,
.wide-cta,
.signup-strip button,
.signup-strip a,
.creator-card > a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  color: #fff;
  font-weight: 950;
  text-align: center;
  text-decoration: none;
  background: linear-gradient(180deg, #ff4b1e, var(--orange));
  border: 0;
  border-radius: 6px;
  box-shadow: 0 10px 20px rgba(251, 58, 18, 0.18);
}

.signup-strip button:disabled {
  cursor: not-allowed;
  opacity: 0.72;
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  padding: 10px;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 6px;
}

.menu-toggle span {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: var(--text);
}

#content {
  width: min(1450px, calc(100% - 36px));
  margin: 0 auto;
}

.ticker {
  display: flex;
  align-items: center;
  gap: 16px;
  min-height: 58px;
  color: #fff;
  text-transform: uppercase;
}

.ticker strong {
  font-size: clamp(22px, 3vw, 34px);
  font-weight: 950;
}

.ticker span {
  padding: 8px 14px;
  background: var(--orange);
  border-radius: 4px;
  font-size: clamp(12px, 1.4vw, 16px);
  font-weight: 950;
}

.front-grid,
.homepage-grid {
  display: grid;
  grid-template-columns: minmax(0, 2.1fr) minmax(320px, 0.86fr);
  gap: 18px;
  align-items: start;
}

.main-feed {
  display: grid;
  min-width: 0;
  gap: 18px;
}

.hero-panel,
.dark-panel,
.content-band,
.creator-card,
.signup-strip article {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.hero-panel {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(330px, 0.88fr);
  gap: 24px;
  min-height: clamp(320px, 30vw, 380px);
  overflow: hidden;
  padding: clamp(24px, 4vw, 44px);
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.74), rgba(0, 0, 0, 0.35)),
    radial-gradient(circle at 30% 40%, rgba(15, 197, 189, 0.24), transparent 24rem),
    #020908;
}

.hero-panel::before {
  position: absolute;
  inset: 0;
  pointer-events: none;
  content: "";
  background-image:
    linear-gradient(45deg, rgba(255, 255, 255, 0.025) 25%, transparent 25%),
    linear-gradient(-45deg, rgba(255, 255, 255, 0.025) 25%, transparent 25%);
  background-size: 18px 18px;
  opacity: 0.8;
}

.hero-copy,
.hero-visual,
.read-button {
  position: relative;
  z-index: 1;
}

.hot-label,
.story-card span,
.news-card span,
.creator-card > span,
.resource-grid span {
  display: inline-flex;
  width: fit-content;
  padding: 6px 9px;
  color: #fff;
  background: var(--orange);
  border-radius: 5px;
  font-size: 13px;
  font-weight: 950;
  line-height: 1;
  text-transform: uppercase;
}

.hero-copy h1 {
  max-width: 760px;
  margin: 22px 0 18px;
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: clamp(42px, 4.7vw, 68px);
  font-weight: 950;
  line-height: 0.94;
  text-transform: uppercase;
}

.hero-copy mark {
  color: var(--gold);
  background: transparent;
}

.hero-copy p {
  max-width: 620px;
  margin: 0;
  color: #f4f4ee;
  font-size: clamp(17px, 1.5vw, 21px);
  font-weight: 700;
  line-height: 1.36;
}

.reaction-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.reaction-row span {
  padding: 8px 12px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid var(--line-soft);
  border-radius: 999px;
  font-weight: 850;
}

.hero-visual {
  min-height: 280px;
}

.hoodie {
  position: absolute;
  right: 44px;
  bottom: 10px;
  display: grid;
  width: min(190px, 62%);
  aspect-ratio: 0.72;
  place-items: center;
  color: var(--teal);
  font-size: clamp(64px, 8vw, 108px);
  font-weight: 950;
  background:
    radial-gradient(ellipse at 50% 28%, #071011 0 31%, transparent 32%),
    linear-gradient(95deg, #111 0 20%, #252525 44%, #080808 76%);
  border: 3px solid rgba(255, 255, 255, 0.2);
  border-radius: 48% 48% 18% 18%;
  filter: drop-shadow(0 28px 32px rgba(0, 0, 0, 0.6));
}

.receipt,
.message,
.stamp {
  position: absolute;
  transform: rotate(6deg);
}

.receipt {
  top: 20px;
  right: 8px;
  display: grid;
  gap: 5px;
  width: min(168px, 54%);
  padding: 12px;
  color: #14110e;
  background: #f1e5d5;
  box-shadow: 0 12px 20px rgba(0, 0, 0, 0.35);
}

.message {
  top: 142px;
  right: 28px;
  padding: 16px;
  color: #171717;
  background: #fff6ec;
  border-radius: 6px;
  font-size: clamp(16px, 1.8vw, 21px);
  font-weight: 950;
  line-height: 1.08;
}

.stamp {
  right: 20px;
  bottom: 58px;
  padding: 8px 16px;
  color: var(--orange);
  border: 6px solid var(--orange);
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  max-width: min-content;
  font-size: clamp(28px, 3.2vw, 44px);
  line-height: 1;
  text-transform: uppercase;
}

.read-button {
  position: absolute;
  right: 34px;
  bottom: 34px;
  min-width: min(240px, calc(100% - 68px));
}

.side-stack {
  display: grid;
  gap: 18px;
  align-self: start;
}

.dark-panel {
  padding: 22px;
}

.panel-head,
.section-title.inline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.panel-head h2,
.dark-panel h2,
.section-title h2,
.creator-card h2,
.signup-strip h2 {
  margin: 0;
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: clamp(24px, 2.4vw, 34px);
  font-weight: 950;
  text-transform: uppercase;
}

.panel-head a,
.section-title a,
.text-link {
  color: #fff;
  font-weight: 850;
  text-decoration: none;
}

.brewing-list {
  display: grid;
  gap: 0;
  margin: 14px 0 0;
  padding: 0;
  list-style: none;
}

.brewing-list li {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 16px;
  padding: 17px 0;
  border-top: 1px solid var(--line-soft);
}

.brewing-list li > strong {
  color: var(--gold);
  font-size: 34px;
  font-weight: 950;
}

.brewing-list h3 {
  margin: 0;
  font-size: 17px;
  line-height: 1.24;
}

.brewing-list p,
.story-body p,
.news-card p,
.creator-feed span,
.section-title p,
.resource-grid p,
.signup-strip p,
.site-footer p {
  color: var(--muted);
}

.brewing-list p {
  margin: 7px 0 0;
  font-size: 13px;
}

.brewing-list p span {
  display: inline-block;
  margin-left: 8px;
  padding: 3px 6px;
  color: #fff;
  background: var(--orange);
  border-radius: 3px;
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.talk-list {
  display: grid;
  gap: 0;
  margin: 12px 0 18px;
}

.talk-list a {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 10px;
  padding: 13px 0;
  text-decoration: none;
  border-top: 1px solid var(--line-soft);
}

.talk-list span {
  color: var(--gold);
  font-size: 24px;
}

.talk-list strong,
.talk-list em {
  grid-column: 2;
}

.talk-list em {
  color: var(--muted);
  font-size: 12px;
  font-style: normal;
}

.wide-cta {
  width: 100%;
  background: linear-gradient(180deg, #17c8c0, #0a9b94);
}

.content-band,
.creator-layout,
.signup-strip {
  margin-top: 18px;
}

.main-feed .content-band,
.main-feed .creator-layout,
.side-stack .signup-strip {
  margin-top: 0;
}

.content-band {
  padding: 18px;
}

.section-title {
  margin-bottom: 14px;
}

.section-title p {
  margin: 5px 0 0;
}

.card-grid,
.news-grid,
.resource-grid {
  display: grid;
  gap: 14px;
}

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

.main-feed .drama-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.story-card,
.news-card,
.resource-grid article {
  overflow: hidden;
  background: rgba(0, 16, 16, 0.82);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.story-card a,
.news-card a,
.resource-grid a {
  text-decoration: none;
}

.story-image {
  position: relative;
  min-height: 155px;
  background:
    radial-gradient(circle at 65% 45%, rgba(255, 196, 0, 0.36), transparent 28%),
    linear-gradient(135deg, #0f2626, #451004);
}

.story-image::after {
  position: absolute;
  right: 14px;
  bottom: 8px;
  color: rgba(255, 255, 255, 0.18);
  content: "RT";
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: 78px;
  line-height: 1;
}

.story-image span {
  position: absolute;
  top: 10px;
  left: 10px;
}

.story-body,
.news-card,
.resource-grid article {
  padding: 14px;
}

.story-body h3,
.news-card h3,
.resource-grid h3 {
  margin: 0;
  font-size: 17px;
  line-height: 1.2;
  overflow-wrap: anywhere;
}

.story-body p,
.news-card p,
.resource-grid p {
  margin: 9px 0 0;
  font-size: 14px;
}

.news-grid {
  grid-template-columns: repeat(6, minmax(0, 1fr));
}

.main-feed .news-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.news-thumb {
  display: grid;
  min-height: 130px;
  margin: -14px -14px 12px;
  place-items: center;
  color: #fff;
  font-size: 56px;
  font-weight: 950;
}

.news-card:nth-child(odd) .news-thumb {
  background:
    radial-gradient(circle at 72% 30%, rgba(255, 196, 0, 0.48), transparent 26%),
    linear-gradient(135deg, #0e5250, #071111);
}

.news-card:nth-child(even) .news-thumb {
  background:
    radial-gradient(circle at 30% 26%, rgba(251, 58, 18, 0.5), transparent 28%),
    linear-gradient(135deg, #222, #061918);
}

.tile-1 { background: linear-gradient(135deg, #0f51b5, #f4c400, #e31b23); }
.tile-2 { background: linear-gradient(135deg, #f4f4f4, #b5c4ca); color: #0a1620; }
.tile-3 { background: linear-gradient(135deg, #82233f, #e75679); }
.tile-4 { background: linear-gradient(135deg, #5b32c4, #9b7bf6); }
.tile-5 { background: linear-gradient(135deg, #ce5d23, #ed8848); }
.tile-6 { background: linear-gradient(135deg, #111, #ff5a1f); }

.creator-layout {
  display: grid;
  grid-template-columns: 1fr 1.42fr 1fr 1fr;
  gap: 14px;
}

.main-feed .creator-layout {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.creator-card {
  padding: 18px;
}

.creator-card p {
  color: #e1efeb;
  line-height: 1.45;
}

.creator-profile {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 16px;
}

.avatar {
  display: grid;
  width: 74px;
  aspect-ratio: 1;
  place-items: center;
  color: #111;
  background: var(--gold);
  border: 4px solid rgba(255, 255, 255, 0.16);
  border-radius: 50%;
  font-size: 32px;
  font-weight: 950;
}

.video-feature {
  min-height: 270px;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.78), rgba(0, 0, 0, 0.2)),
    radial-gradient(circle at 78% 32%, rgba(255, 196, 0, 0.78), transparent 18%),
    linear-gradient(135deg, #005c58, #060807);
}

.video-feature h2 {
  max-width: 360px;
  margin-top: 46px;
  font-size: clamp(42px, 5vw, 72px);
  line-height: 0.96;
}

.creator-feed {
  display: grid;
  margin-top: 12px;
}

.creator-feed a {
  display: grid;
  gap: 4px;
  padding: 12px 0;
  text-decoration: none;
  border-top: 1px solid var(--line-soft);
}

.resource-grid {
  grid-template-columns: repeat(6, minmax(0, 1fr));
}

.main-feed .resource-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.resource-grid article {
  min-height: 165px;
}

.resource-grid span {
  margin-bottom: 18px;
  background: transparent;
  border: 1px solid var(--line);
}

.signup-strip {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.sidebar-signup {
  grid-template-columns: 1fr;
}

.signup-strip article {
  padding: 22px;
}

.signup-strip form {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
}

.sidebar-signup form {
  grid-template-columns: 1fr;
}

.signup-strip input {
  min-width: 0;
  min-height: 44px;
  padding: 0 12px;
  color: #111;
  border: 0;
  border-radius: 5px;
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(260px, 1fr) minmax(260px, auto) auto;
  gap: 22px;
  align-items: center;
  width: min(1450px, calc(100% - 36px));
  margin: 32px auto 0;
  padding: 22px;
  background:
    radial-gradient(circle at 10% 20%, rgba(15, 197, 189, 0.12), transparent 18rem),
    rgba(0, 0, 0, 0.92);
  border: 1px solid var(--line-soft);
  border-bottom: 0;
  border-radius: var(--radius) var(--radius) 0 0;
}

.site-footer img {
  width: 210px;
  max-width: 70vw;
}

.site-footer p {
  max-width: none;
  margin: 8px 0 0;
  color: #fff;
  font-weight: 900;
  line-height: 1.15;
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 16px;
  max-width: 420px;
}

.site-footer a {
  color: #edf7f4;
  font-weight: 850;
  text-decoration: none;
}

.site-footer small {
  color: var(--muted);
  text-align: right;
  white-space: nowrap;
}

.article-page {
  width: min(1060px, 100%);
  margin: 18px auto 0;
}

.article-header {
  padding: clamp(16px, 2.6vw, 28px) 0 14px;
}

.article-category {
  display: inline-flex;
  width: fit-content;
  padding: 7px 10px;
  color: #fff;
  background: var(--orange);
  border-radius: 5px;
  font-size: 13px;
  font-weight: 950;
  line-height: 1;
  text-decoration: none;
  text-transform: uppercase;
}

.article-header h1 {
  max-width: 940px;
  margin: 14px 0 10px;
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: clamp(40px, 5.2vw, 64px);
  font-weight: 950;
  line-height: 0.96;
}

.article-deck {
  max-width: 820px;
  margin: 0;
  color: #f4f4ee;
  font-size: clamp(17px, 1.55vw, 21px);
  font-weight: 800;
  line-height: 1.3;
}

.article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 14px;
}

.article-meta span {
  padding: 7px 10px;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--line-soft);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 850;
}

.article-hero {
  display: grid;
  min-height: 0;
  margin: 0 0 18px;
  overflow: hidden;
  place-items: center;
  aspect-ratio: 16 / 9;
  background: rgba(0, 16, 16, 0.82);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.article-hero img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.article-hero.generated {
  position: relative;
  background:
    radial-gradient(circle at 70% 34%, rgba(255, 196, 0, 0.34), transparent 24%),
    linear-gradient(135deg, #083c39, #421205);
}

.article-hero.generated span {
  position: absolute;
  top: 16px;
  left: 16px;
  padding: 7px 10px;
  color: #fff;
  background: var(--orange);
  border-radius: 5px;
  font-size: 13px;
  font-weight: 950;
  text-transform: uppercase;
}

.article-hero.generated strong {
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(96px, 20vw, 210px);
  font-weight: 950;
  line-height: 1;
}

.article-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 290px;
  gap: 22px;
  align-items: start;
}

.article-summary,
.article-body,
.profile-latest-videos,
.article-sources,
.article-disclaimer,
.related-stories {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.article-summary {
  margin: 0 0 14px;
  padding: 18px;
  color: #fff;
  font-size: 20px;
  font-weight: 850;
  line-height: 1.38;
}

.article-body,
.article-sources,
.article-disclaimer {
  padding: clamp(18px, 3vw, 30px);
}

.article-body {
  color: #edf7f4;
  font-size: 18px;
  line-height: 1.7;
}

.article-body p,
.article-sources p,
.article-sources ul {
  margin: 0 0 18px;
}

.article-body p:last-child,
.article-sources p:last-child,
.article-sources ul:last-child {
  margin-bottom: 0;
}

.article-body a,
.article-sources a,
.profile-latest-videos a {
  color: var(--gold);
  font-weight: 850;
}

.article-disclaimer {
  margin-top: 14px;
  color: var(--muted);
  line-height: 1.5;
}

.article-disclaimer strong {
  color: #fff;
}

.article-sources {
  margin-top: 14px;
}

.article-sources h2,
.related-stories h2 {
  margin: 0 0 14px;
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: 28px;
  line-height: 1;
  text-transform: uppercase;
}

.related-stories {
  position: sticky;
  top: 108px;
  padding: 18px;
}

.related-stories a {
  display: grid;
  gap: 8px;
  padding: 14px 0;
  text-decoration: none;
  border-top: 1px solid var(--line-soft);
}

.related-stories a span {
  color: var(--gold);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.related-stories a strong {
  line-height: 1.25;
}

.related-stories p {
  color: var(--muted);
  line-height: 1.45;
}

.tip-page {
  width: min(920px, 100%);
  margin: 28px auto 0;
}

.tip-intro,
.tip-form,
.form-message {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.tip-intro {
  padding: clamp(22px, 4vw, 38px);
}

.tip-intro > span {
  display: inline-flex;
  padding: 7px 10px;
  color: #fff;
  background: var(--orange);
  border-radius: 5px;
  font-size: 13px;
  font-weight: 950;
  text-transform: uppercase;
}

.tip-intro h1 {
  margin: 18px 0 12px;
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: clamp(48px, 8vw, 88px);
  line-height: 0.98;
  text-transform: uppercase;
}

.tip-intro p,
.form-message p {
  color: var(--muted);
  line-height: 1.55;
}

.form-message {
  margin-top: 14px;
  padding: 18px;
}

.form-message.success {
  border-color: rgba(15, 197, 189, 0.74);
}

.form-message.error {
  border-color: rgba(251, 58, 18, 0.8);
}

.form-message ul {
  margin: 10px 0 0;
  padding-left: 20px;
  color: var(--muted);
}

.tip-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 14px;
  padding: clamp(18px, 3vw, 28px);
}

.tip-form label {
  display: grid;
  gap: 8px;
}

.tip-form label > span {
  font-weight: 900;
}

.tip-form em,
.tip-form strong {
  color: var(--muted);
  font-size: 12px;
  font-style: normal;
  text-transform: uppercase;
}

.tip-form input,
.tip-form textarea {
  width: 100%;
  min-width: 0;
  padding: 12px;
  color: var(--text);
  background: rgba(0, 0, 0, 0.24);
  border: 1px solid var(--line-soft);
  border-radius: 6px;
}

.tip-form textarea {
  resize: vertical;
}

.tip-form .wide,
.tip-form button {
  grid-column: 1 / -1;
}

.tip-form .check {
  grid-template-columns: 22px 1fr;
  align-items: start;
  color: var(--muted);
  line-height: 1.45;
}

.tip-form .check input {
  width: 18px;
  margin-top: 4px;
}

.tip-form button {
  min-height: 48px;
  color: #fff;
  font-weight: 950;
  background: linear-gradient(180deg, #ff4b1e, var(--orange));
  border: 0;
  border-radius: 6px;
  cursor: pointer;
}

.edit-link {
  position: fixed;
  right: 16px;
  bottom: 16px;
  z-index: 30;
  padding: 8px 10px;
  color: #fff;
  text-decoration: none;
  background: #111;
  border: 1px solid var(--line);
  border-radius: 6px;
}

@media (max-width: 1180px) {
  .site-header {
    grid-template-columns: auto auto;
    justify-content: space-between;
  }

  .menu-toggle {
    display: block;
    justify-self: end;
  }

  .primary-nav,
  .search-form,
  .tip-button {
    display: none;
  }

  body.nav-open .primary-nav,
  body.nav-open .search-form,
  body.nav-open .tip-button {
    display: flex;
    grid-column: 1 / -1;
  }

  body.nav-open .primary-nav {
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
  }

  body.nav-open .primary-nav a {
    padding: 9px 0;
  }

  body.nav-open .search-form {
    display: grid;
  }

  .front-grid,
  .homepage-grid,
  .hero-panel,
  .article-layout,
  .signup-strip {
    grid-template-columns: 1fr;
  }

  .hero-panel {
    min-height: auto;
  }

  .hero-visual {
    min-height: 360px;
  }

  .drama-grid,
  .news-grid,
  .creator-layout,
  .resource-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .main-feed .news-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .related-stories {
    position: static;
  }
}

@media (max-width: 680px) {
  .site-header,
  #content,
  .article-page,
  .tip-page,
  .hero-panel,
  .content-band,
  .dark-panel {
    max-width: 100%;
  }

  .site-header {
    grid-template-columns: minmax(0, 1fr) 42px;
    min-height: 72px;
    padding: 12px 14px;
  }

  .brand {
    min-width: 150px;
    width: 170px;
  }

  #content {
    width: 100%;
    padding: 0 10px;
  }

  .ticker {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
    padding: 12px 0;
  }

  .hero-panel {
    padding: 18px;
    max-width: 100%;
  }

  .hero-copy h1 {
    max-width: calc(100vw - 56px);
    font-size: clamp(36px, 10.8vw, 46px);
    overflow-wrap: anywhere;
    word-break: normal;
  }

  .article-header h1 {
    max-width: calc(100vw - 20px);
    font-size: clamp(36px, 10.8vw, 46px);
    overflow-wrap: anywhere;
    word-break: normal;
  }

  .hero-copy p,
  .article-deck,
  .article-summary,
  .article-body,
  .article-disclaimer,
  .article-sources {
    max-width: calc(100vw - 56px);
    overflow-wrap: anywhere;
  }

  .reaction-row,
  .article-meta {
    max-width: 100%;
  }

  .reaction-row span,
  .article-meta span {
    max-width: 100%;
    overflow-wrap: anywhere;
  }

  .hero-visual {
    min-height: 180px;
    max-width: 100%;
    overflow: hidden;
  }

  .hoodie {
    right: 0;
    width: min(132px, 42vw);
    font-size: 44px;
  }

  .receipt {
    top: 6px;
    right: 2px;
    width: min(124px, 38vw);
    padding: 10px;
    font-size: 10px;
  }

  .message {
    top: 96px;
    right: 12px;
    max-width: min(118px, 36vw);
    padding: 10px;
    font-size: 13px;
  }

  .stamp {
    right: 8px;
    bottom: 30px;
    max-width: min-content;
    padding: 6px 10px;
    font-size: 22px;
    border-width: 3px;
  }

  .read-button {
    position: relative;
    right: auto;
    bottom: auto;
    width: 100%;
    margin-top: 12px;
  }

  .panel-head,
  .section-title.inline {
    align-items: flex-start;
    flex-direction: column;
  }

  .drama-grid,
  .news-grid,
  .creator-layout,
  .resource-grid,
  .tip-form,
  .signup-strip {
    grid-template-columns: 1fr;
  }

  .main-feed .drama-grid,
  .main-feed .news-grid,
  .main-feed .creator-layout,
  .main-feed .resource-grid {
    grid-template-columns: 1fr;
  }

  .site-footer {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .site-footer small {
    text-align: left;
    white-space: normal;
  }
}

.creator-profile-page {
  width: min(1180px, 100%);
  margin: 26px auto 0;
}

.creator-profile-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 330px;
  gap: 24px;
  align-items: start;
}

.creator-profile-main {
  min-width: 0;
}

.creator-profile-header {
  padding-top: clamp(20px, 3vw, 34px);
}

.creator-profile-header h1 {
  max-width: 100%;
  margin-top: 0;
}

.creator-profile-header .article-deck {
  max-width: 920px;
}

.creator-profile-sidebar {
  display: grid;
  gap: 16px;
  position: sticky;
  top: 108px;
}

.profile-side-card {
  overflow: hidden;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.avatar-card {
  display: grid;
  aspect-ratio: 1 / 1;
  place-items: center;
  padding: 18px;
}

.avatar-card a {
  display: block;
  width: 100%;
  height: 100%;
}

.avatar-card img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 6px;
}

.avatar-fallback {
  display: grid;
  width: 100%;
  height: 100%;
  place-items: center;
  color: #fff;
  background: linear-gradient(135deg, #083c39, #f26924);
  border-radius: 8px;
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: clamp(96px, 14vw, 160px);
  line-height: 1;
}

.profile-stats-card {
  padding: 18px;
}

.profile-stats-card h2,
.profile-store-links h3 {
  margin: 0 0 14px;
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: 28px;
  line-height: 1;
  text-transform: uppercase;
}

.profile-stat-list {
  display: grid;
  gap: 10px;
  margin: 0;
}

.profile-stat-list div {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 14px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--line-soft);
}

.profile-stat-list div:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.profile-stat-list dt {
  color: var(--muted);
  font-size: 13px;
  font-weight: 850;
  text-transform: uppercase;
}

.profile-stat-list dd {
  margin: 0;
  color: #fff;
  font-size: 20px;
  font-weight: 950;
}

.profile-store-links {
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid var(--line-soft);
}

.profile-store-links ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.profile-store-links a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 42px;
  padding: 10px 12px;
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--line-soft);
  border-radius: 6px;
  font-weight: 900;
  text-decoration: none;
}

.profile-store-links a::after {
  content: "→";
  color: var(--gold);
}

.profile-sidebar-signup {
  grid-template-columns: 1fr;
}

.profile-sidebar-signup article {
  min-height: 0;
}

.profile-latest-videos {
  margin: 0 0 14px;
  padding: 18px;
}

.profile-latest-videos h2,
.profile-topic-card h2 {
  margin: 0 0 14px;
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1;
  text-transform: uppercase;
}

.profile-latest-videos > div {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.profile-latest-videos a {
  display: grid;
  align-content: start;
  gap: 9px;
  color: #fff;
  text-decoration: none;
}

.profile-latest-videos img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid var(--line-soft);
  border-radius: 6px;
}

.profile-latest-videos strong {
  color: #fff;
  font-size: 17px;
  line-height: 1.14;
}

.profile-latest-videos span {
  color: var(--gold);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.profile-topic-card {
  margin-top: 14px;
}

.profile-topic-card ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding-left: 1.15em;
}

.profile-topic-card li {
  padding-left: 0.15em;
}

.fresh-tea-page {
  display: grid;
  gap: 16px;
}

.fresh-tea-page .section-title {
  margin-bottom: 0;
}

.fresh-tea-page .section-title > p {
  max-width: 520px;
  text-align: right;
}

.fresh-tea-page-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.fresh-tea-video-card {
  overflow: hidden;
  background: rgba(0, 16, 16, 0.82);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.fresh-tea-video-card a {
  display: grid;
  align-content: start;
  min-height: 100%;
  gap: 9px;
  padding: 12px;
  color: inherit;
  text-decoration: none;
}

.fresh-tea-video-card img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid var(--line-soft);
  border-radius: 6px;
}

.fresh-tea-video-card span {
  width: fit-content;
  color: var(--gold);
  font-size: 11px;
  font-weight: 950;
  line-height: 1;
  text-transform: uppercase;
}

.fresh-tea-video-card h3 {
  margin: 0;
  color: #fff;
  font-size: clamp(17px, 1.35vw, 21px);
  line-height: 1.12;
}

.fresh-tea-video-card p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  font-weight: 850;
  line-height: 1.25;
  text-transform: uppercase;
}

@media (max-width: 1180px) {
  .fresh-tea-page-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .creator-profile-layout {
    grid-template-columns: 1fr;
  }

  .creator-profile-sidebar {
    position: static;
    grid-template-columns: minmax(0, 260px) minmax(0, 1fr);
  }

  .profile-sidebar-signup {
    grid-column: 1 / -1;
  }
}

@media (max-width: 860px) {
  .fresh-tea-page-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 680px) {
  .fresh-tea-page .section-title {
    display: grid;
  }

  .fresh-tea-page .section-title > p {
    max-width: none;
    text-align: left;
  }

  .fresh-tea-page-grid {
    grid-template-columns: 1fr;
  }

  .profile-latest-videos > div {
    grid-template-columns: 1fr;
  }

  .creator-profile-page {
    max-width: 100%;
  }

  .creator-profile-sidebar {
    grid-template-columns: 1fr;
  }

  .avatar-card {
    aspect-ratio: 4 / 3;
  }
}

@media (min-width: 781px) and (max-width: 1180px) {
  .creator-profile-layout {
    grid-template-columns: minmax(0, 1fr) minmax(260px, 300px);
    gap: 18px;
  }

  .creator-profile-sidebar {
    position: sticky;
    top: 92px;
    grid-template-columns: 1fr;
  }

  .profile-sidebar-signup {
    grid-column: auto;
  }
}

.directory-toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  justify-content: space-between;
  margin: -4px 0 16px;
  padding: 12px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--line-soft);
  border-radius: 8px;
}

.directory-toolbar p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
}

.directory-toolbar strong {
  color: var(--gold);
}

.directory-sort-controls {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.directory-sort-controls label {
  display: grid;
  gap: 5px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.directory-sort-controls select {
  min-width: 150px;
  height: 38px;
  padding: 0 34px 0 10px;
  color: var(--text);
  background: rgba(0, 16, 16, 0.9);
  border: 1px solid var(--line);
  border-radius: 6px;
  font: inherit;
  font-size: 14px;
  font-weight: 850;
}

.creator-directory-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.creator-directory-card {
  padding: 12px;
}

.creator-directory-card a {
  display: flex;
  min-height: 100%;
  flex-direction: column;
}

.creator-directory-card h3 {
  min-height: 0;
  color: var(--text);
  font-size: 22px;
  line-height: 1.08;
}

.directory-avatar-thumb {
  min-height: 0;
  aspect-ratio: 1 / 1;
  margin: -12px -12px 14px;
  overflow: hidden;
  padding: 10px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02)),
    rgba(0, 16, 16, 0.82);
  border-bottom: 1px solid var(--line-soft);
}

.directory-fallback-thumb {
  min-height: 0;
  aspect-ratio: 1 / 1;
  margin: -12px -12px 14px;
  color: #fff;
  border-bottom: 1px solid var(--line-soft);
  font-size: clamp(64px, 8vw, 112px);
  line-height: 1;
}

.directory-avatar-thumb img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.directory-card-stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  margin: 12px 0 0;
}

.directory-card-stats div {
  min-width: 0;
  padding: 8px;
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid var(--line-soft);
  border-radius: 6px;
}

.directory-card-stats dt {
  margin: 0 0 3px;
  color: var(--muted);
  font-size: 10px;
  font-weight: 950;
  line-height: 1;
  text-transform: uppercase;
}

.directory-card-stats dd {
  margin: 0;
  color: var(--gold);
  font-size: 16px;
  font-weight: 950;
  line-height: 1.05;
}

.podcast-directory-card .directory-card-stats dd {
  font-size: 15px;
}

.creator-directory-card .directory-card-summary {
  flex: 1;
  color: var(--muted);
  line-height: 1.45;
}

.directory-load-more {
  display: flex;
  justify-content: center;
  width: fit-content;
  min-height: 44px;
  margin: 18px auto 0;
  padding: 0 18px;
  color: #051312;
  background: var(--gold);
  border: 0;
  border-radius: 6px;
  font: inherit;
  font-weight: 950;
  text-transform: uppercase;
  cursor: pointer;
}

.directory-load-more[hidden] {
  display: none;
}

@media (max-width: 1180px) {
  .creator-directory-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .creator-directory-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 560px) {
  .directory-toolbar {
    align-items: stretch;
  }

  .directory-sort-controls,
  .directory-sort-controls label,
  .directory-sort-controls select {
    width: 100%;
  }

  .creator-directory-grid {
    grid-template-columns: 1fr;
  }
}

.launch-home {
  display: grid;
  max-width: 1540px;
  margin: 0 auto;
  padding: 14px 18px 18px;
}

.launch-hero {
  display: grid;
  gap: 14px;
  justify-items: center;
  width: 100%;
  max-width: 100%;
  padding: clamp(16px, 2vw, 22px);
  overflow: hidden;
  text-align: center;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.64), rgba(0, 0, 0, 0.18)),
    radial-gradient(circle at 88% 12%, rgba(255, 196, 0, 0.19), transparent 15rem),
    radial-gradient(circle at 18% 70%, rgba(15, 197, 189, 0.15), transparent 17rem),
    #020908;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.home-section-head p,
.fresh-tea-list p {
  margin: 0;
  color: var(--gold);
  font-size: 12px;
  font-weight: 950;
  line-height: 1;
  text-transform: uppercase;
}

.launch-hero h1 {
  max-width: 100%;
  margin: 0;
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: clamp(38px, 4vw, 62px);
  font-weight: 950;
  line-height: 1;
  text-transform: uppercase;
}

.launch-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}

.brand-lockup {
  white-space: nowrap;
}

.brand-reseller {
  color: #fff;
}

.brand-tea {
  color: var(--orange);
}

.launch-hero-actions a,
.home-section-head a,
.launch-note-panel a {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 12px;
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--line);
  border-radius: 6px;
  font-weight: 900;
  text-decoration: none;
}

.launch-home-grid {
  display: grid;
  grid-template-columns: minmax(0, 2.1fr) minmax(340px, 0.9fr);
  gap: 22px;
  align-items: start;
}

.launch-main,
.launch-sidebar {
  display: grid;
  min-width: 0;
  gap: 24px;
}

.home-section {
  display: grid;
  gap: 14px;
}

.home-section-head {
  display: flex;
  gap: 16px;
  align-items: end;
  justify-content: space-between;
}

.home-section-head.compact {
  align-items: start;
}

.home-section-head h2,
.launch-note-panel h2 {
  margin: 5px 0 0;
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: clamp(34px, 3.2vw, 52px);
  font-weight: 950;
  line-height: 0.98;
  text-transform: uppercase;
}

.tea-time-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(260px, 0.8fr);
  gap: 14px;
}

.tea-card,
.home-profile-card,
.fresh-tea-panel,
.launch-note-panel {
  overflow: hidden;
  background: rgba(0, 16, 16, 0.82);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.tea-card a,
.home-profile-card a,
.fresh-tea-list a {
  color: inherit;
  text-decoration: none;
}

.tea-card a {
  display: grid;
  min-height: 100%;
  align-content: start;
  gap: 12px;
  padding: 18px;
}

.tea-card.featured {
  grid-row: span 2;
  background:
    radial-gradient(circle at 88% 18%, rgba(255, 196, 0, 0.25), transparent 16rem),
    rgba(0, 16, 16, 0.88);
}

.tea-card-copy {
  display: grid;
  align-content: start;
  gap: 10px;
}

.tea-card-copy strong {
  width: fit-content;
  margin-top: 4px;
  padding: 8px 11px;
  color: #051312;
  background: var(--gold);
  border-radius: 6px;
  font-size: 13px;
  font-weight: 950;
  line-height: 1;
  text-transform: uppercase;
}

.tea-card-media {
  margin: 0;
  overflow: hidden;
  background: rgba(0, 0, 0, 0.42);
  border: 1px solid var(--line-soft);
  border-radius: 6px;
}

.tea-card-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.tea-card.featured a {
  padding: 18px;
}

.tea-card.featured .tea-card-media {
  grid-area: media;
  width: 100%;
  margin: 0;
  aspect-ratio: 16 / 9;
  border-width: 1px;
  border-radius: 6px;
}

.tea-card.featured .tea-card-copy {
  display: grid;
  height: 100%;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 42%);
  grid-template-areas:
    "date date"
    "title title"
    "excerpt media"
    "button media";
  grid-template-rows: auto auto minmax(0, 1fr) auto;
  gap: 12px 18px;
  align-items: start;
  padding: 0;
}

.tea-card:not(.featured) .tea-card-media {
  aspect-ratio: 16 / 9;
  margin-bottom: 10px;
}

.tea-card span {
  color: var(--gold);
  font-size: 13px;
  font-weight: 950;
  text-transform: uppercase;
}

.tea-card h3,
.home-profile-card h3,
.fresh-tea-list h3 {
  margin: 0;
  color: #fff;
  line-height: 1.08;
}

.tea-card h3 {
  font-size: clamp(24px, 2.05vw, 34px);
}

.tea-card.featured h3 {
  grid-area: title;
  max-width: 100%;
  margin-bottom: 0;
  font-size: clamp(28px, 2.2vw, 38px);
}

.tea-card.featured span {
  grid-area: date;
}

.tea-card.featured p {
  grid-area: excerpt;
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 10;
}

.tea-card.featured .tea-card-copy strong {
  grid-area: button;
  align-self: end;
}

.tea-card:not(.featured) h3 {
  font-size: clamp(20px, 2vw, 27px);
}

.tea-card p,
.home-profile-card p,
.fresh-tea-list p,
.launch-note-panel p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.45;
}

.home-profile-grid {
  display: grid;
  gap: 14px;
}

.creator-preview-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.podcast-preview-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.home-profile-card a {
  display: grid;
  min-height: 100%;
  grid-template-rows: auto auto 1fr auto;
  gap: 12px;
  padding: 12px;
}

.home-profile-card img,
.home-profile-fallback {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: contain;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02)),
    rgba(0, 16, 16, 0.9);
  border: 1px solid var(--line-soft);
  border-radius: 7px;
}

.home-profile-fallback {
  display: grid;
  place-items: center;
  color: #fff;
  font-size: 72px;
  font-weight: 950;
}

.home-profile-card h3 {
  font-size: clamp(19px, 1.6vw, 25px);
}

.home-profile-card dl {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  margin: 0;
}

.home-profile-card dl div {
  min-width: 0;
  padding: 8px;
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid var(--line-soft);
  border-radius: 6px;
}

.home-profile-card dt,
.home-profile-card dd {
  margin: 0;
}

.home-profile-card dt {
  color: var(--muted);
  font-size: 10px;
  font-weight: 950;
  text-transform: uppercase;
}

.home-profile-card dd {
  color: var(--gold);
  font-size: 16px;
  font-weight: 950;
}

.fresh-tea-panel,
.launch-note-panel {
  padding: 18px;
}

.fresh-tea-list {
  display: grid;
  gap: 14px;
  margin-top: 14px;
}

.fresh-tea-list article {
  border-top: 1px solid var(--line-soft);
}

.fresh-tea-list article:first-child {
  border-top: 0;
}

.fresh-tea-list a {
  display: grid;
  gap: 9px;
  padding: 14px 0 0;
}

.fresh-tea-list article:first-child a {
  padding-top: 0;
}

.fresh-tea-list img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid var(--line-soft);
  border-radius: 6px;
}

.fresh-tea-list h3 {
  font-size: 18px;
}

.fresh-tea-list p {
  font-size: 12px;
}

.fresh-empty {
  margin: 14px 0 0;
}

.launch-note-panel {
  display: grid;
  gap: 14px;
}

.launch-note-panel h2 {
  font-size: clamp(26px, 2.3vw, 36px);
}

.launch-note-panel a {
  width: fit-content;
  background: linear-gradient(180deg, var(--orange), #d84612);
  border-color: rgba(255, 255, 255, 0.18);
}

@media (max-width: 1180px) {
  .launch-home-grid,
  .launch-hero {
    grid-template-columns: 1fr;
  }

  .launch-hero-actions {
    justify-content: flex-start;
  }

  .launch-sidebar {
    grid-template-columns: minmax(0, 1fr) minmax(280px, 0.72fr);
  }
}

@media (max-width: 860px) {
  .tea-time-grid,
  .launch-sidebar {
    grid-template-columns: 1fr;
  }

  .creator-preview-grid,
  .podcast-preview-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .tea-card.featured {
    grid-row: auto;
  }

  .tea-card.featured a {
    display: grid;
  }

  .tea-card.featured .tea-card-copy {
    grid-template-columns: 1fr;
    grid-template-areas:
      "date"
      "title"
      "media"
      "excerpt"
      "button";
  }

  .tea-card.featured .tea-card-media {
    width: 100%;
    max-width: none;
    margin: 0;
  }
}

@media (max-width: 560px) {
  .launch-home {
    padding: 12px;
  }

  .home-section-head,
  .launch-hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .launch-hero-actions a,
  .home-section-head a {
    justify-content: center;
    width: 100%;
  }

  .fresh-tea-list a {
    grid-template-columns: 92px minmax(0, 1fr);
  }

  .fresh-tea-list img {
    width: 92px;
  }

  .creator-preview-grid,
  .podcast-preview-grid {
    grid-template-columns: 1fr;
  }
}
