/* Any County News — shared styles
   Dark navy, red breaking accents, yellow highlights, mobile-first */

:root {
  --navy: #0a1628;
  --navy-mid: #122038;
  --navy-card: #1a2d4a;
  --red: #c8102e;
  --red-bright: #e01837;
  --red-dark: #8b0a1e;
  --yellow: #f5c518;
  --yellow-soft: #ffe066;
  --white: #ffffff;
  --off-white: #f0f2f5;
  --muted: #9aa8bc;
  --border: rgba(255, 255, 255, 0.08);
  --shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
  --radius: 10px;
  --max: 1100px;
  --font: "Segoe UI", system-ui, -apple-system, BlinkMacSystemFont, Roboto, "Helvetica Neue", Arial, sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font);
  background: var(--navy);
  color: var(--off-white);
  line-height: 1.6;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

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

a {
  color: var(--yellow);
  text-decoration: underline;
  text-underline-offset: 2px;
}

a:hover,
a:focus-visible {
  color: var(--yellow-soft);
}

a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--yellow);
  outline-offset: 3px;
}

/* —— Brand bar —— */
.brand-bar {
  background: var(--red);
  color: var(--white);
  text-align: center;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.75rem;
  padding: 0.55rem 1rem;
  border-bottom: 3px solid var(--yellow);
}

.brand-bar span {
  display: inline-block;
}

/* —— Header / nav —— */
.site-header {
  background: var(--navy-mid);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 100;
}

.header-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0.75rem 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.logo {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: var(--white);
  line-height: 1.15;
}

.logo:hover,
.logo:focus-visible {
  color: var(--white);
  text-decoration: none;
}

.logo-mark {
  font-size: 1.35rem;
  font-weight: 900;
  letter-spacing: -0.02em;
  text-transform: uppercase;
}

.logo-mark em {
  font-style: normal;
  color: var(--red-bright);
}

.logo-tag {
  font-size: 0.7rem;
  color: var(--yellow);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: transparent;
  border: 2px solid var(--muted);
  border-radius: 6px;
  padding: 0.45rem 0.55rem;
  cursor: pointer;
  min-width: 44px;
  min-height: 44px;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--white);
}

.nav-toggle[aria-expanded="true"] {
  border-color: var(--yellow);
}

.site-nav {
  display: none;
  width: 100%;
  flex-basis: 100%;
}

.site-nav.open {
  display: block;
}

.site-nav ul {
  list-style: none;
  margin: 0;
  padding: 0.5rem 0 0.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.site-nav a {
  display: block;
  padding: 0.7rem 0.5rem;
  color: var(--off-white);
  text-decoration: none;
  font-weight: 700;
  font-size: 0.95rem;
  border-radius: 6px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.site-nav a:hover,
.site-nav a:focus-visible,
.site-nav a[aria-current="page"] {
  background: rgba(200, 16, 46, 0.25);
  color: var(--yellow);
  text-decoration: none;
}

.header-inner {
  flex-wrap: wrap;
}

@media (min-width: 768px) {
  .nav-toggle {
    display: none;
  }

  .site-nav {
    display: block;
    width: auto;
    flex-basis: auto;
  }

  .site-nav ul {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 0.15rem;
    padding: 0;
  }

  .site-nav a {
    padding: 0.5rem 0.65rem;
    font-size: 0.8rem;
  }
}

/* —— Layout —— */
main {
  flex: 1;
}

.wrap {
  max-width: var(--max);
  margin: 0 auto;
  padding: 1.5rem 1rem 2.5rem;
}

.section-title {
  font-size: clamp(1.4rem, 4vw, 1.85rem);
  font-weight: 900;
  color: var(--white);
  margin: 0 0 0.35rem;
  text-transform: uppercase;
  letter-spacing: -0.01em;
}

.section-sub {
  color: var(--muted);
  margin: 0 0 1.25rem;
  font-size: 0.95rem;
}

.example-banner {
  background: rgba(245, 197, 24, 0.12);
  border: 1px solid rgba(245, 197, 24, 0.45);
  color: var(--yellow-soft);
  padding: 0.75rem 1rem;
  border-radius: var(--radius);
  font-size: 0.88rem;
  font-weight: 600;
  margin-bottom: 1.25rem;
}

/* —— Hero —— */
.hero {
  background: linear-gradient(160deg, var(--navy-mid) 0%, var(--navy) 55%, #1a0a12 100%);
  border-bottom: 1px solid var(--border);
  padding: 2rem 1rem 2.5rem;
}

.hero-inner {
  max-width: var(--max);
  margin: 0 auto;
}

.breaking {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--red);
  color: var(--white);
  font-weight: 900;
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0.35rem 0.7rem;
  border-radius: 4px;
  margin-bottom: 1rem;
}

.breaking::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--yellow);
  animation: pulse 1.4s ease-in-out infinite;
}

@keyframes pulse {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.35;
  }
}

.hero h1 {
  font-size: clamp(1.85rem, 6vw, 2.75rem);
  font-weight: 900;
  color: var(--white);
  margin: 0 0 0.75rem;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.hero h1 .accent {
  color: var(--yellow);
}

.hero-lead {
  font-size: 1.05rem;
  color: var(--muted);
  max-width: 38rem;
  margin: 0 0 1.5rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

/* —— Buttons —— */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.85rem 1.25rem;
  font-weight: 800;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-radius: 8px;
  border: 2px solid transparent;
  text-decoration: none;
  cursor: pointer;
  min-height: 48px;
  font-family: inherit;
  transition: background 0.15s, color 0.15s, border-color 0.15s;
}

.btn:hover,
.btn:focus-visible {
  text-decoration: none;
}

.btn-primary {
  background: var(--red);
  color: var(--white);
  border-color: var(--red);
}

.btn-primary:hover,
.btn-primary:focus-visible {
  background: var(--red-bright);
  color: var(--white);
  border-color: var(--red-bright);
}

.btn-secondary {
  background: transparent;
  color: var(--yellow);
  border-color: var(--yellow);
}

.btn-secondary:hover,
.btn-secondary:focus-visible {
  background: rgba(245, 197, 24, 0.12);
  color: var(--yellow-soft);
}

.btn-ghost {
  background: var(--navy-card);
  color: var(--white);
  border-color: var(--border);
}

.btn-ghost:hover,
.btn-ghost:focus-visible {
  border-color: var(--yellow);
  color: var(--yellow);
}

/* —— Cards —— */
.card-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
}

@media (min-width: 560px) {
  .card-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 900px) {
  .card-grid.three {
    grid-template-columns: repeat(3, 1fr);
  }
}

.card {
  background: var(--navy-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
}

.card-badge {
  display: inline-block;
  background: var(--red);
  color: var(--white);
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.25rem 0.5rem;
  border-radius: 3px;
}

.card-badge.sample {
  background: transparent;
  border: 1px solid var(--yellow);
  color: var(--yellow);
}

.card-body {
  padding: 1.1rem 1.15rem 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  flex: 1;
}

.card h3 {
  margin: 0;
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1.3;
}

.card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
  flex: 1;
}

.card-meta {
  font-size: 0.75rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 600;
}

.card-thumb {
  height: 140px;
  background: linear-gradient(135deg, #1e3a5f 0%, #2a1520 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-bottom: 3px solid var(--red);
}

/* —— Content blocks —— */
.panel {
  background: var(--navy-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.25rem 1.35rem;
  margin-bottom: 1.25rem;
}

.panel h2 {
  margin: 0 0 0.6rem;
  font-size: 1.25rem;
  color: var(--white);
  font-weight: 800;
}

.panel p,
.panel li {
  color: var(--muted);
}

.panel ul,
.panel ol {
  margin: 0.5rem 0 0;
  padding-left: 1.25rem;
}

.panel li {
  margin-bottom: 0.4rem;
}

.panel strong {
  color: var(--off-white);
}

.highlight-box {
  background: rgba(200, 16, 46, 0.15);
  border-left: 4px solid var(--red);
  padding: 1rem 1.15rem;
  border-radius: 0 var(--radius) var(--radius) 0;
  margin: 1.25rem 0;
}

.highlight-box p {
  margin: 0;
  color: var(--off-white);
}

.highlight-box a {
  font-weight: 700;
}

.cta-band {
  background: linear-gradient(90deg, var(--red-dark), var(--red));
  border-radius: var(--radius);
  padding: 1.5rem 1.25rem;
  text-align: center;
  margin: 1.75rem 0 0.5rem;
}

.cta-band h2 {
  margin: 0 0 0.5rem;
  color: var(--white);
  font-size: clamp(1.2rem, 4vw, 1.5rem);
  font-weight: 900;
  text-transform: uppercase;
}

.cta-band p {
  margin: 0 0 1rem;
  color: rgba(255, 255, 255, 0.9);
}

.steps {
  counter-reset: step;
  list-style: none;
  padding: 0;
  margin: 0;
}

.steps li {
  counter-increment: step;
  position: relative;
  padding: 1rem 1rem 1rem 3.25rem;
  background: var(--navy-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 0.75rem;
}

.steps li::before {
  content: counter(step);
  position: absolute;
  left: 0.85rem;
  top: 1rem;
  width: 1.75rem;
  height: 1.75rem;
  background: var(--red);
  color: var(--white);
  font-weight: 900;
  font-size: 0.85rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.steps strong {
  display: block;
  color: var(--white);
  margin-bottom: 0.25rem;
}

.email-big {
  font-size: clamp(1rem, 3.5vw, 1.35rem);
  font-weight: 800;
  word-break: break-all;
}

.stub {
  text-align: center;
  padding: 2.5rem 1rem;
}

.stub h1 {
  margin: 0 0 0.75rem;
  font-size: clamp(1.6rem, 5vw, 2.2rem);
  font-weight: 900;
  color: var(--white);
}

.stub .soon {
  display: inline-block;
  background: var(--yellow);
  color: var(--navy);
  font-weight: 900;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.35rem 0.75rem;
  border-radius: 4px;
  margin-bottom: 1rem;
}

/* —— Footer —— */
.site-footer {
  background: var(--navy-mid);
  border-top: 3px solid var(--red);
  margin-top: auto;
  padding: 1.75rem 1rem 1.25rem;
}

.footer-inner {
  max-width: var(--max);
  margin: 0 auto;
}

.footer-brand {
  font-weight: 900;
  font-size: 1.1rem;
  color: var(--white);
  text-transform: uppercase;
  margin: 0 0 0.35rem;
}

.footer-brand span {
  color: var(--red-bright);
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1rem;
  margin: 1rem 0;
  padding: 0;
  list-style: none;
}

.footer-nav a {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.footer-nav a:hover,
.footer-nav a:focus-visible {
  color: var(--yellow);
}

.disclaimer {
  font-size: 0.78rem;
  color: var(--muted);
  line-height: 1.5;
  border-top: 1px solid var(--border);
  padding-top: 1rem;
  margin: 0;
}

.footer-contact {
  margin: 0 0 0.75rem;
  font-size: 0.9rem;
  color: var(--off-white);
}

/* —— Utilities —— */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.mt-0 {
  margin-top: 0;
}

.mb-1 {
  margin-bottom: 1rem;
}

/* —— Hero with Danny photo —— */
.hero-with-photo {
  padding: 1.5rem 1rem 2rem;
}

.hero-split {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  align-items: stretch;
}

.hero-copy {
  flex: 1 1 auto;
  min-width: 0;
}

.hero-photo {
  margin: 0;
  flex: 0 0 auto;
  max-width: 100%;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  background: var(--navy-card);
}

.hero-photo img {
  width: 100%;
  height: auto;
  max-height: 420px;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.hero-photo figcaption {
  padding: 0.85rem 1rem;
  background: var(--navy-mid);
  border-top: 3px solid var(--red);
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.hero-photo figcaption strong {
  color: var(--white);
  font-size: 0.95rem;
  font-weight: 800;
}

.hero-photo figcaption span {
  color: var(--muted);
  font-size: 0.85rem;
}

.hero-photo figcaption a {
  font-weight: 700;
}

@media (min-width: 768px) {
  .hero-split {
    flex-direction: row;
    align-items: center;
    gap: 2rem;
  }

  .hero-copy {
    flex: 1 1 55%;
  }

  .hero-photo {
    flex: 0 1 38%;
    max-width: 380px;
  }

  .hero-photo img {
    max-height: 480px;
    aspect-ratio: 3 / 4;
  }
}

/* —— Story cards with real graphics —— */
.card-link {
  display: flex;
  flex-direction: column;
  flex: 1;
  text-decoration: none;
  color: inherit;
  height: 100%;
}

.card-link:hover,
.card-link:focus-visible {
  text-decoration: none;
  color: inherit;
}

.card-link:hover h3,
.card-link:focus-visible h3 {
  color: var(--yellow);
}

.story-card .card-thumb {
  height: auto;
  aspect-ratio: 4 / 5;
  padding: 0;
  background: #0d1520;
  border-bottom: 3px solid var(--red);
  overflow: hidden;
}

.story-card .card-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
}

.story-card .card-body {
  flex: 1;
}

.story-card .card-body p {
  flex: 0;
}

/* —— About Danny —— */
.about-danny {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  align-items: center;
}

.about-danny-photo {
  flex: 0 0 auto;
  width: min(220px, 70%);
  border-radius: var(--radius);
  overflow: hidden;
  border: 3px solid var(--red);
  box-shadow: var(--shadow);
}

.about-danny-photo img {
  width: 100%;
  height: auto;
  aspect-ratio: 1;
  object-fit: cover;
  object-position: center top;
}

.about-danny-copy {
  flex: 1;
  min-width: 0;
}

.about-danny-copy h2 {
  margin: 0 0 0.6rem;
  font-size: 1.25rem;
  color: var(--white);
  font-weight: 800;
}

.about-danny-copy p {
  color: var(--muted);
}

.about-danny-copy strong {
  color: var(--off-white);
}

@media (min-width: 640px) {
  .about-danny {
    flex-direction: row;
    align-items: flex-start;
    gap: 1.5rem;
  }

  .about-danny-photo {
    width: 180px;
  }
}


/* —— Homepage Danny video hero (above the fold) —— */
.hero-video-first {
  padding: 1rem 1rem 1.75rem;
}

.hero-video-layout {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  max-width: 720px;
  margin: 0 auto;
}

.hero-video-wrap {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  background: #000;
  aspect-ratio: 9 / 16;
  max-height: min(78vh, 720px);
  margin: 0 auto;
  width: min(100%, 420px);
}

.hero-autoplay-video,
.hero-video-wrap video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  background: #000;
}

.featured-player {
  width: 100%;
  max-height: min(78vh, 720px);
  border-radius: var(--radius);
  background: #000;
  display: block;
  aspect-ratio: 9 / 16;
  object-fit: contain;
}

.hero-video-wrap .featured-player {
  aspect-ratio: auto;
  max-height: none;
  border-radius: 0;
  height: 100%;
  object-fit: cover;
}

.tap-for-sound {
  position: absolute;
  left: 50%;
  bottom: 1.1rem;
  transform: translateX(-50%);
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.7rem 1.15rem;
  border: none;
  border-radius: 999px;
  background: rgba(10, 22, 40, 0.92);
  color: var(--yellow);
  font-weight: 800;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
  cursor: pointer;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.45);
  border: 2px solid var(--yellow);
}

.tap-for-sound:hover,
.tap-for-sound:focus-visible {
  background: var(--yellow);
  color: var(--navy);
  outline: none;
}

.tap-for-sound[hidden] {
  display: none !important;
}

.hero-copy-under-video {
  text-align: center;
}

.hero-copy-under-video .hero-actions {
  justify-content: center;
}

.hero-copy-under-video h1 {
  font-size: clamp(1.45rem, 5vw, 2.1rem);
}

@media (min-width: 768px) {
  .hero-video-layout {
    max-width: 960px;
    flex-direction: row;
    align-items: center;
    gap: 2rem;
  }

  .hero-video-wrap {
    flex: 0 0 360px;
    width: 360px;
    max-height: 640px;
  }

  .hero-copy-under-video {
    flex: 1;
    text-align: left;
  }

  .hero-copy-under-video .hero-actions {
    justify-content: flex-start;
  }
}

/* —— Featured / recruiting video cards —— */
.featured-danny,
.home-recruiting {
  margin-bottom: 2rem;
}

.featured-video-card {
  background: var(--navy-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1rem;
  margin-bottom: 1.25rem;
  box-shadow: var(--shadow);
}

.featured-video-card.featured-primary {
  border-color: var(--red);
  border-width: 2px;
}

.featured-video-meta {
  margin-bottom: 0.75rem;
}

.featured-video-meta h3 {
  margin: 0.35rem 0 0.4rem;
  color: var(--white);
  font-size: 1.2rem;
  font-weight: 800;
}

.featured-video-meta p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

/* —— TikTok grid —— */
.tiktok-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  margin: 0 0 2rem;
}

.tiktok-card {
  background: var(--navy-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 0.75rem;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  align-items: stretch;
}

.tiktok-card .tiktok-embed {
  margin: 0 auto !important;
  max-width: 100% !important;
  min-width: 0 !important;
}

.tiktok-open {
  align-self: center;
  text-align: center;
}

@media (min-width: 640px) {
  .tiktok-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .tiktok-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* —— Homepage videos teaser —— */
.videos-teaser {
  margin: 2rem 0 1rem;
}

.videos-teaser-card {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  background: var(--navy-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.videos-teaser-thumb {
  display: block;
  flex: 0 0 auto;
}

.videos-teaser-thumb img {
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  display: block;
  max-height: 320px;
}

.videos-teaser-copy {
  padding: 0 1rem 1.15rem;
}

.videos-teaser-copy h3 {
  margin: 0 0 0.5rem;
  color: var(--white);
  font-weight: 800;
}

.videos-teaser-copy p {
  color: var(--muted);
  margin: 0 0 0.85rem;
}

@media (min-width: 700px) {
  .videos-teaser-card {
    flex-direction: row;
    align-items: stretch;
  }

  .videos-teaser-thumb {
    flex: 0 0 240px;
    max-width: 240px;
  }

  .videos-teaser-thumb img {
    height: 100%;
    max-height: none;
    aspect-ratio: auto;
  }

  .videos-teaser-copy {
    padding: 1.25rem 1.25rem 1.25rem 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
}

/* —— About Danny hero photo (portrait, not cropped square) —— */
.about-danny-photo {
  width: min(280px, 85%);
}

.about-danny-photo img {
  aspect-ratio: 3 / 4;
  object-fit: cover;
  object-position: center top;
}

.about-danny-photo figcaption {
  padding: 0.65rem 0.75rem;
  background: var(--navy-mid);
  border-top: 3px solid var(--red);
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.about-danny-photo figcaption strong {
  color: var(--white);
  font-size: 0.9rem;
}

.about-danny-photo figcaption span {
  color: var(--muted);
  font-size: 0.8rem;
}

@media (min-width: 640px) {
  .about-danny-photo {
    width: 220px;
  }
}

.videos-hero .hero-inner {
  max-width: 720px;
}

/* —— Top performers / view chips —— */
.card-badge.top-performer {
  background: linear-gradient(135deg, #b8860b, var(--yellow));
  color: #1a1200;
  border: none;
}

.card-badge-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.4rem;
}

.view-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  background: rgba(245, 197, 24, 0.15);
  color: var(--yellow-soft);
  border: 1px solid rgba(245, 197, 24, 0.45);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 0.22rem 0.55rem;
  border-radius: 999px;
  white-space: nowrap;
}

.view-chip::before {
  content: "";
  width: 0.4rem;
  height: 0.4rem;
  border-radius: 50%;
  background: var(--yellow);
  box-shadow: 0 0 6px var(--yellow);
}

.story-card .card-thumb {
  position: relative;
}

.thumb-view-chip {
  position: absolute;
  top: 0.55rem;
  right: 0.55rem;
  z-index: 2;
  background: rgba(10, 22, 40, 0.88);
  color: var(--yellow);
  border: 1px solid rgba(245, 197, 24, 0.55);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 0.28rem 0.6rem;
  border-radius: 999px;
  backdrop-filter: blur(4px);
}

.section-head-row {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.5rem 1rem;
  margin-bottom: 0.25rem;
}

.section-head-row .section-title {
  margin-bottom: 0;
}

.section-link {
  font-size: 0.85rem;
  font-weight: 700;
  white-space: nowrap;
}

.top-stories-note {
  color: var(--muted);
  font-size: 0.85rem;
  margin: 0 0 1rem;
}

.latest-top-cta {
  margin: 1.25rem 0 0;
  padding: 1rem 1.15rem;
  background: var(--navy-card);
  border: 1px solid var(--border);
  border-left: 4px solid var(--yellow);
  border-radius: var(--radius);
}

.latest-top-cta p {
  margin: 0;
  color: var(--muted);
}

.latest-top-cta a {
  font-weight: 700;
}


/* —— Homepage featured viral story (Danny-weight) —— */
.hero-featured-story {
  padding: 0.5rem 1rem 2rem;
  background: linear-gradient(180deg, #0a1628 0%, #121c2e 40%, transparent 100%);
  border-top: 1px solid rgba(255, 215, 0, 0.25);
}

.hero-featured-story .breaking {
  color: var(--yellow);
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 0.85rem;
  margin: 0 0 0.35rem;
}

.hero-featured-story .view-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin: 0.35rem 0 0.75rem;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  background: var(--red);
  color: #fff;
  font-weight: 800;
  font-size: 0.9rem;
}

.hero-tiktok-wrap {
  width: min(100%, 420px);
  margin: 0 auto;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  background: #000;
  min-height: min(78vh, 720px);
}

.hero-tiktok-wrap .tiktok-embed {
  margin: 0 auto !important;
  max-width: 100% !important;
}

.hero-featured-fallback {
  display: block;
  width: 100%;
  height: auto;
  max-height: min(78vh, 720px);
  object-fit: cover;
}

@media (min-width: 768px) {
  .hero-featured-story .hero-video-layout {
    max-width: 960px;
  }
  .hero-tiktok-wrap {
    flex: 0 0 360px;
    width: 360px;
  }
}
