/* ================================================================
   TMDB — public surfaces: trending strip, celebrity profile page,
   "Powered by TMDB" footer badge.
   ================================================================ */

/* ---- Homepage trending strip ---- */
.tmdb-trending {
  background: #1a1a1a;
  padding: 56px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.tmdb-trending__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
}
.tmdb-trending__heading { margin-bottom: 32px; }
.tmdb-trending__eyebrow {
  display: block;
  font-family: 'Archivo Narrow', sans-serif;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #D4AF37;
  margin-bottom: 8px;
}
.tmdb-trending__title {
  font-family: 'Playfair Display', serif;
  font-size: 32px;
  font-weight: 500;
  color: #fff;
  margin: 0;
  letter-spacing: -0.02em;
}
.tmdb-trending__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
  gap: 20px;
}
.tmdb-trending__card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: inherit;
  transition: transform 0.2s ease;
}
.tmdb-trending__card:hover { transform: translateY(-2px); }
.tmdb-trending__card img,
.tmdb-trending__placeholder {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 50%;
  background: #2a2a2a;
  border: 2px solid rgba(212, 175, 55, 0.2);
}
.tmdb-trending__name {
  font-family: 'Archivo Narrow', sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: #fff;
  text-align: center;
  letter-spacing: 0.01em;
}

/* ---- Celebrity profile page ---- */
.celeb-page {
  max-width: 1080px;
  margin: 0 auto;
  padding: 56px 32px 80px;
  color: #fff;
}
.celeb-hero {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 48px;
  align-items: start;
  margin-bottom: 64px;
}
.celeb-hero__img {
  width: 280px;
  height: 280px;
  border-radius: 50%;
  object-fit: cover;
  background: #2a2a2a;
  border: 3px solid rgba(212, 175, 55, 0.3);
}
.celeb-hero__eyebrow {
  font-family: 'Archivo Narrow', sans-serif;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #D4AF37;
  margin-bottom: 12px;
}
.celeb-hero__name {
  font-family: 'Playfair Display', serif;
  font-size: 56px;
  font-weight: 700;
  margin: 0 0 12px;
  letter-spacing: -0.02em;
  line-height: 1.05;
}
.celeb-hero__role {
  font-family: 'Archivo Narrow', sans-serif;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin: 0 0 24px;
}
.celeb-hero__facts {
  font-family: 'Archivo Narrow', sans-serif;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.55);
  letter-spacing: 0.04em;
  margin: 0 0 18px;
}
.celeb-hero__bio {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 16px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.85);
  max-width: 640px;
}
.celeb-hero__src {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.4);
  letter-spacing: 0.06em;
  margin-top: 16px;
}
.celeb-hero__src a { color: #D4AF37; text-decoration: none; }

.celeb-articles { margin-bottom: 64px; }
.celeb-articles__heading,
.celeb-films__heading {
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  font-weight: 500;
  margin: 0 0 24px;
}

.celeb-films__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 20px;
}
.celeb-film img {
  width: 100%;
  aspect-ratio: 2 / 3;
  object-fit: cover;
  border-radius: 6px;
  background: #2a2a2a;
}
.celeb-film__title {
  font-family: 'Archivo Narrow', sans-serif;
  font-size: 14px;
  font-weight: 500;
  margin-top: 8px;
}
.celeb-film__meta {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: 0.04em;
}

@media (max-width: 700px) {
  .celeb-hero { grid-template-columns: 1fr; text-align: center; }
  .celeb-hero__img { width: 200px; height: 200px; margin: 0 auto; }
  .celeb-hero__name { font-size: 40px; }
}

/* ---- "Powered by TMDB" footer attribution ---- */
.tmdb-attribution {
  text-align: center;
  font-size: 10px;
  letter-spacing: 0.06em;
  color: rgba(255, 255, 255, 0.35);
  padding: 16px 24px 8px;
  font-family: 'Archivo Narrow', sans-serif;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  margin-top: 24px;
}
.tmdb-attribution a {
  color: #D4AF37;
  text-decoration: none;
}
.tmdb-attribution a:hover { text-decoration: underline; }

/* ---- Phase 15b: "Across the web" RSS strip ---- */
.across-web {
  background: #0d0d0d;
  padding: 56px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
}
.across-web__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
}
.across-web__heading { margin-bottom: 28px; }
.across-web__eyebrow {
  display: block;
  font-family: 'Archivo Narrow', sans-serif;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #D4AF37;
  margin-bottom: 8px;
}
.across-web__title {
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  font-weight: 500;
  color: #fff;
  margin: 0;
}
.across-web__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 16px;
}
.across-web__card {
  display: flex;
  flex-direction: column;
  background: #1a1a1a;
  border-radius: 8px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: transform 0.2s, border-color 0.2s;
  border: 1px solid rgba(255, 255, 255, 0.04);
}
.across-web__card:hover {
  transform: translateY(-2px);
  border-color: rgba(212, 175, 55, 0.3);
}
.across-web__card img,
.across-web__noimg {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  background: #2a2a2a;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.2);
  font-size: 32px;
}
.across-web__body { padding: 12px 14px; }
.across-web__source {
  font-family: 'Archivo Narrow', sans-serif;
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #D4AF37;
  margin-bottom: 6px;
}
.across-web__h {
  font-family: 'Playfair Display', serif;
  font-size: 15px;
  font-weight: 500;
  color: #fff;
  line-height: 1.35;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
