/* ============================================================
   SLIDE: Title, Full-bleed hero with gradient overlay
   ============================================================ */
.slide--hero {
  padding: 0;
  position: relative;
  overflow: hidden;
  justify-content: flex-start;
  align-items: stretch;
}

/* Full-bleed background image */
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 70% center;
}

/* Smooth gradient: solid white on left, fades to transparent on right */
.hero-bg__gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    #FFFFFF 0%,
    #FFFFFF 30%,
    rgba(255,255,255,0.85) 45%,
    rgba(255,255,255,0.4) 60%,
    rgba(255,255,255,0) 75%
  );
}

/* Content sits on top of the gradient */
.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 100vh;
  padding: 80px 64px calc(80px + var(--footer-h)) 80px;
  max-width: 550px;
}

.title-slide__logo {
  width: 200px;
  margin-bottom: 40px;
}

.title-slide__heading {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 800;
  font-style: italic;
  text-transform: uppercase;
  line-height: 0.95;
  color: #0D1117;
  margin-bottom: 20px;
}

.title-slide__divider {
  width: 48px; height: 3px;
  background: var(--blue);
  border: none;
  margin: 0 0 20px 0;
}

.title-slide__subtitle {
  font-family: var(--font-body);
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  color: #57606A;
  max-width: 400px;
  line-height: 1.7;
  margin-bottom: 48px;
}

/* Attribution bar */
.title-slide__attribution {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: auto;
  padding-top: 32px;
  border-top: 1px solid rgba(0,0,0,0.08);
}

.title-slide__presented {
  font-family: var(--font-display);
  font-size: 0.65rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: #8B949E;
}

.title-slide__agency-logo {
  height: 20px;
  width: auto;
}

.title-slide__date {
  margin-left: auto;
  font-family: var(--font-display);
  font-size: 0.65rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: #8B949E;
}
/* Responsive: Slide 1 */
@media (max-width: 768px) {
  .hero-content { padding: 48px 24px calc(48px + var(--footer-h)); max-width: 100%; }
  .hero-bg__gradient { background: linear-gradient(90deg, #FFFFFF 0%, #FFFFFF 20%, rgba(255,255,255,0.7) 50%, rgba(255,255,255,0.3) 80%, transparent 100%); }
  .title-slide__heading { font-size: 2.4rem; }
  .title-slide__attribution { flex-wrap: wrap; gap: 8px; }
  .title-slide__date { margin-left: 0; }
}
@media (max-width: 480px) {
  .title-slide__logo { width: 140px; }
  .title-slide__heading { font-size: 2.2rem; }
}
