/* ============================================================
   STREET FIGHTER WORLD WARRIOR — Shared Stylesheet
   streetfighterww.com  |  © World Warrior Limited
   ============================================================ */

/* --- Google Fonts import ----------------------------------- */
@import url('https://fonts.googleapis.com/css2?family=Rajdhani:wght@400;500;600;700&family=Open+Sans:wght@300;400;600&family=Oswald:wght@400;500;700&display=swap');

/* --- CSS Custom Properties --------------------------------- */
:root {
  /* Base palette */
  --bg:           #0a0a0a;
  --bg-alt:       #111111;
  --bg-card:      #181818;
  --bg-card-hover:#1f1f1f;
  --text:         #e8e8e8;
  --text-muted:   #888888;
  --text-light:   #ffffff;
  --border:       #2a2a2a;
  --border-light: #3a3a3a;

  /* HOME / SFAF — crimson/ember */
  --accent:       #C41E3A;
  --accent-2:     #E8640A;
  --accent-glow:  rgba(196, 30, 58, 0.35);
  --accent-subtle:rgba(196, 30, 58, 0.12);

  /* Typography */
  --font-heading: 'Rajdhani', 'Oswald', sans-serif;
  --font-body:    'Open Sans', Roboto, Arial, sans-serif;

  /* Layout */
  --max-width: 1200px;
  --gutter:    clamp(16px, 4vw, 40px);
  --radius:    4px;
  --radius-lg: 8px;

  /* Transitions */
  --tx: 0.22s ease;
}

/* SFL theme overrides — cyan */
.theme-sfl {
  --accent:       #00C8FF;
  --accent-2:     #FF8C00;
  --accent-glow:  rgba(0, 200, 255, 0.35);
  --accent-subtle:rgba(0, 200, 255, 0.12);
}

/* SFR theme overrides — vivid green */
.theme-sfr {
  --accent:       #3CB043;
  --accent-2:     #8BC34A;
  --accent-glow:  rgba(60, 176, 67, 0.35);
  --accent-subtle:rgba(60, 176, 67, 0.12);
}

/* --- Reset & Base ------------------------------------------ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  background-color: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; height: auto; }
a   { color: var(--accent); text-decoration: none; transition: color var(--tx); }
a:hover { color: var(--accent-2); }

/* --- Layout helpers ---------------------------------------- */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.section {
  padding-block: clamp(28px, 4.5vw, 60px);
}

.section + .section {
  border-top: 1px solid var(--border);
}

.section--alt {
  background: var(--bg-alt);
}

/* --- Typography -------------------------------------------- */
h1, h2, h3, h4, h5 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: 0.03em;
  color: var(--text-light);
  /* text-transform intentionally omitted — headings render in their written case.
     Uppercase is applied only to small UI labels (nav, eyebrows, badges, filter btns). */
}

h1 { font-size: clamp(2rem,   5vw, 3.5rem); }
h2 { font-size: clamp(1.5rem, 3vw, 2.4rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.8rem); }
h4 { font-size: clamp(1rem,   2vw,  1.3rem); }

.section-title {
  margin-bottom: 0.3em;
  position: relative;
  display: inline-block;
}

.section-title::after {
  content: '';
  display: block;
  height: 3px;
  width: 60px;
  background: var(--accent);
  margin-top: 8px;
}

.section-subtitle {
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--text-muted);
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0;
  margin-bottom: 1.5rem;
}

p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

.lead {
  font-size: 1.15rem;
  line-height: 1.75;
  color: var(--text);
  max-width: 740px;
}

/* --- Navigation -------------------------------------------- */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: #ffffff;
  border-bottom: 2px solid #e8e8e8;
}

.nav-inner {
  display: flex;
  align-items: center;
  gap: 1rem;
  height: 62px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  text-decoration: none;
}

.nav-logo img {
  height: 38px;
  width: auto;
}

.nav-logo-text {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #111111;
  line-height: 1.1;
}

.nav-logo-text span {
  display: block;
  font-size: 0.65rem;
  font-weight: 400;
  letter-spacing: 0.18em;
  color: #777777;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 0;
  margin-left: auto;
}

.nav-links a {
  display: block;
  padding: 0 14px;
  height: 62px;
  line-height: 62px;
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #555555;
  border-bottom: 3px solid transparent;
  transition: color var(--tx), border-color var(--tx);
}

.nav-links a:hover,
.nav-links a.active {
  color: #C41E3A;
  border-bottom-color: #C41E3A;
}

/* Hamburger for mobile */
.nav-toggle {
  display: none;
  margin-left: auto;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  flex-direction: column;
  gap: 5px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: #333333;
  transition: var(--tx);
}

/* --- Compact subsite page header --------------------------- */
.page-header {
  background: var(--bg);
  padding: 20px 0 16px;
  border-bottom: 3px solid var(--accent);
}

.page-header .container {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.page-header .eyebrow {
  font-family: var(--font-heading);
  font-size: 0.72rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0;
}

.page-header h1 {
  font-size: clamp(1.4rem, 3.5vw, 2.2rem);
  margin-bottom: 0;
  letter-spacing: 0.05em;
}

/* --- Hero (homepage only) ---------------------------------- */
.hero {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--bg);
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  opacity: 0.45;
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(10,10,10,0.3)  0%,
    rgba(10,10,10,0.5)  50%,
    rgba(10,10,10,0.92) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 1;
  width: 100%;
}

.hero-video-wrap {
  position: relative;
  width: 100%;
  max-width: 960px;
  margin-inline: auto;
}

.hero-video-wrap video {
  width: 100%;
  height: auto;
  display: block;
  border-radius: var(--radius-lg);
  box-shadow: 0 0 60px var(--accent-glow), 0 20px 60px rgba(0,0,0,0.8);
}

.hero-title-block {
  text-align: center;
  padding: clamp(20px, 4vw, 48px) var(--gutter);
}

.hero-title-block .eyebrow {
  font-family: var(--font-heading);
  font-size: 0.8rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.6rem;
}

.hero-title-block h1 {
  margin-bottom: 0.5rem;
}

.hero-title-block .tagline {
  font-size: clamp(0.95rem, 2vw, 1.2rem);
  color: var(--text-muted);
  font-style: italic;
  max-width: 640px;
  margin-inline: auto;
}

/* --- Series cards (homepage) ------------------------------- */
.series-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.series-card {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform var(--tx), box-shadow var(--tx), border-color var(--tx);
}

.series-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 40px rgba(0,0,0,0.6);
}

.series-card--sfl:hover  { border-color: #00C8FF; box-shadow: 0 8px 40px rgba(0,200,255,0.25); }
.series-card--sfaf:hover { border-color: #C41E3A; box-shadow: 0 8px 40px rgba(196,30,58,0.25); }
.series-card--sfr:hover  { border-color: #3CB043; box-shadow: 0 8px 40px rgba(60,176,67,0.25); }

.series-card-image {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
  background: #000;
}

.series-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

/* Logo variant — preserve full logo without cropping */
.series-card-image img.img-contain {
  object-fit: contain;
}

.series-card:hover .series-card-image img {
  transform: scale(1.04);
}

.series-card-body {
  padding: 20px 22px 22px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.series-card-body h3 {
  font-size: 1.4rem;
  margin-bottom: 8px;
}

.series-card-body p {
  font-size: 0.9rem;
  color: var(--text-muted);
  flex: 1;
}

.series-card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 14px;
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: gap var(--tx);
}

.series-card--sfl  .series-card-link { color: #00C8FF; }
.series-card--sfaf .series-card-link { color: #C41E3A; }
.series-card--sfr  .series-card-link { color: #3CB043; }

.series-card:hover .series-card-link { gap: 10px; }

/* --- Video sections ---------------------------------------- */
.video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 24px;
}

.video-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: box-shadow var(--tx);
}

.video-item:hover {
  box-shadow: 0 4px 30px rgba(0,0,0,0.5);
}

.video-item video {
  width: 100%;
  display: block;
  aspect-ratio: 16/9;
  object-fit: cover;
  background: #000;
}

.video-item-info {
  padding: 14px 16px 18px;
}

.video-item-info h4 {
  font-size: 1rem;
  margin-bottom: 4px;
}

.video-item-info p {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin: 0;
}

/* Single featured video */
.video-featured {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 0 40px var(--accent-glow);
}

.video-featured video {
  width: 100%;
  height: auto;
  display: block;
}

.video-featured-info {
  padding: 14px 22px 18px;
}

.video-featured-info h3 {
  margin-bottom: 6px;
}

/* --- Photo gallery ----------------------------------------- */
.gallery-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
}

.gallery-filter-btn {
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 6px 14px;
  border: 1px solid var(--border-light);
  border-radius: 20px;
  background: transparent;
  color: var(--text-muted);
  cursor: pointer;
  transition: all var(--tx);
}

.gallery-filter-btn:hover,
.gallery-filter-btn.active {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}

.photo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 10px;
}

.photo-item {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: var(--radius);
  background: #000;
  cursor: pointer;
}

.photo-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.photo-item:hover img {
  transform: scale(1.06);
}

.photo-item-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(180, 15, 40, 0.90) 0%,
    rgba(180, 15, 40, 0.50) 40%,
    transparent 72%
  );
  opacity: 0;
  transition: opacity var(--tx);
  display: flex;
  align-items: flex-end;
  padding: 10px;
}

.photo-item:hover .photo-item-overlay {
  opacity: 1;
}

.photo-item-caption {
  font-size: 0.75rem;
  color: #fff;
  line-height: 1.35;
}

.photo-item-caption .caption-people {
  display: block;
  font-size: 0.68rem;
  color: rgba(255,255,255,0.75);
  margin-top: 2px;
}

.photo-item-caption .credit {
  font-size: 0.65rem;
  color: rgba(255,255,255,0.55);
  margin-top: 2px;
}

.photo-item.hidden {
  display: none;
}

/* --- Carousel ---------------------------------------------- */
.carousel-section {
  background: var(--bg-alt);
  padding-block: clamp(32px, 4vw, 52px);
  overflow: hidden;
}

.carousel-wrap {
  position: relative;
}

/* Scroll-snap track — replaces JS translateX approach */
.carousel-track {
  display: flex;
  gap: 16px;
  overflow-x: scroll;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.carousel-track::-webkit-scrollbar {
  display: none;
}

.carousel-slide {
  flex-shrink: 0;
  width: clamp(260px, 30vw, 380px);
  scroll-snap-align: start;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: #000;
  cursor: pointer;
  position: relative;
}

/* Contain: shows full image with black bars for portrait shots */
.carousel-slide img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: contain;
  background: #000;
  display: block;
  transition: opacity 0.3s ease;
}

.carousel-slide:hover img {
  opacity: 0.88;
}

.carousel-slide-caption {
  padding: 10px 12px 12px;
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.4;
  background: var(--bg-card);
}

.carousel-slide-caption strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.9rem;
  color: var(--text);
  margin-bottom: 2px;
}

.carousel-slide-caption .caption-people {
  display: block;
  font-size: 0.75rem;
  color: var(--text-muted);
}

.carousel-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 20px;
}

.carousel-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  color: var(--text);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--tx), border-color var(--tx);
  font-size: 1.1rem;
}

.carousel-btn:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}

.carousel-dots {
  display: flex;
  gap: 6px;
}

.carousel-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--border-light);
  cursor: pointer;
  border: none;
  transition: background var(--tx), transform var(--tx);
}

.carousel-dot.active {
  background: var(--accent);
  transform: scale(1.3);
}

/* --- Cast / crew grid -------------------------------------- */
.crew-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 20px;
}

/* 5-column layout for Key Creatives rows */
.crew-grid--creatives {
  grid-template-columns: repeat(5, 1fr);
}

.crew-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 18px 16px;
  transition: border-color var(--tx), box-shadow var(--tx);
}

.crew-card:hover {
  border-color: var(--accent);
  box-shadow: 0 4px 20px var(--accent-subtle);
}

.crew-card-name {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-light);
  margin-bottom: 4px;
  text-transform: uppercase;
}

.crew-card-role {
  font-size: 0.78rem;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 8px;
  line-height: 1.4;
}

.crew-card-productions {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-bottom: 10px;
}

.crew-card-imdb {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: #F5C518;
  border: 1px solid #F5C518;
  border-radius: 3px;
  padding: 2px 7px;
  transition: background var(--tx), color var(--tx);
}

.crew-card-imdb:hover {
  background: #F5C518;
  color: #000;
}

/* --- Reviews ----------------------------------------------- */
.review-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
}

.review-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-left: 4px solid var(--accent);
  border-radius: var(--radius-lg);
  padding: 24px 22px;
}

.review-card-title {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-light);
  margin-bottom: 10px;
  text-transform: uppercase;
}

.review-card blockquote {
  font-size: 0.9rem;
  font-style: italic;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 12px;
}

.review-card-attribution {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--accent-2);
  letter-spacing: 0.05em;
}

/* --- Subsite synopsis block -------------------------------- */
.synopsis-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(24px, 4vw, 60px);
  align-items: start;
}

.synopsis-block .poster-col img {
  border-radius: var(--radius-lg);
  box-shadow: 0 8px 40px rgba(0,0,0,0.6);
  width: 100%;
}

.synopsis-quote {
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  font-style: italic;
  color: var(--text-light);
  line-height: 1.6;
  border-left: 4px solid var(--accent);
  padding-left: 20px;
  margin-bottom: 1.5rem;
}

/* --- Lightbox override (GLightbox) ------------------------- */
.glightbox-clean .goverlay {
  background: rgba(0,0,0,0.94);
}

/* --- Footer ------------------------------------------------ */
.site-footer {
  background: #000;
  border-top: 1px solid var(--border);
  padding-block: 24px;
  font-size: 0.82rem;
  color: var(--text-muted);
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 16px;
  list-style: none;
}

.footer-nav a {
  color: var(--text-muted);
  font-size: 0.8rem;
  transition: color var(--tx);
}

.footer-nav a:hover {
  color: var(--text-light);
}

.footer-credit {
  font-size: 0.72rem;
  color: #555;
  margin-top: 8px;
}

/* --- Utility badges / tags --------------------------------- */
.badge {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 3px 9px;
  border-radius: 3px;
  background: var(--accent-subtle);
  color: var(--accent);
  border: 1px solid var(--accent);
}

/* Updated badge colours to match new palette assignments */
.badge--sfl  { background: rgba(0,200,255,0.10);  color: #00C8FF;  border-color: #00C8FF; }
.badge--sfaf { background: rgba(196,30,58,0.12);  color: #C41E3A;  border-color: #C41E3A; }
.badge--sfr  { background: rgba(60,176,67,0.10);  color: #3CB043;  border-color: #3CB043; }

.badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 12px;
}

/* --- Misc helpers ------------------------------------------ */
.text-accent  { color: var(--accent); }
.text-muted   { color: var(--text-muted); }
.text-center  { text-align: center; }
.mt-sm        { margin-top: 12px; }
.mt-md        { margin-top: 24px; }
.mt-lg        { margin-top: 40px; }
.mb-sm        { margin-bottom: 12px; }
.mb-md        { margin-bottom: 24px; }
.mb-lg        { margin-bottom: 40px; }

.divider {
  border: none;
  border-top: 1px solid var(--border);
  margin-block: 2rem;
}

.gallery-loading {
  text-align: center;
  padding: 40px;
  color: var(--text-muted);
  font-style: italic;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */

@media (max-width: 1100px) {
  .crew-grid--creatives {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (max-width: 900px) {
  .synopsis-block {
    grid-template-columns: 1fr;
  }
  .synopsis-block .poster-col {
    max-width: 360px;
    margin-inline: auto;
  }
  .crew-grid--creatives {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 720px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 62px;
    left: 0;
    right: 0;
    background: #ffffff;
    flex-direction: column;
    border-bottom: 2px solid #e8e8e8;
    padding-bottom: 8px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.1);
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links a {
    height: auto;
    line-height: 1;
    padding: 14px var(--gutter);
    border-bottom: none;
    border-left: 3px solid transparent;
    color: #444444;
  }

  .nav-links a:hover,
  .nav-links a.active {
    border-bottom: none;
    border-left-color: #C41E3A;
    color: #C41E3A;
  }

  .nav-toggle {
    display: flex;
  }

  .hero {
    min-height: 60vh;
  }

  .video-grid {
    grid-template-columns: 1fr;
  }

  .photo-grid {
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  }

  .series-grid {
    grid-template-columns: 1fr;
  }

  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .crew-grid--creatives {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .crew-grid {
    grid-template-columns: 1fr 1fr;
  }
  .crew-grid--creatives {
    grid-template-columns: repeat(2, 1fr);
  }
  .photo-grid {
    grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
  }
}

/* ── GLightbox overrides ─────────────────────────────────────────────────── */
/* Dark caption bar instead of the default white */
.gslide-description {
  background: rgba(0, 0, 0, 0.82) !important;
}
/* Caption title — white, mixed case, site font */
.gslide-title {
  color: #ffffff !important;
  font-family: var(--font-heading) !important;
  font-size: 0.88rem !important;
  font-weight: 600 !important;
  text-transform: none !important;
  letter-spacing: 0.02em !important;
  margin: 0 0 4px !important;
}
/* Credit / description line — muted white */
.gslide-desc {
  color: rgba(255, 255, 255, 0.6) !important;
  font-size: 0.78rem !important;
  font-style: italic;
  text-transform: none !important;
}
/* Ensure the inner content box doesn't add its own white background */
.gdesc-inner {
  background: transparent !important;
}
