/* ── TMDB-style home hero (dimensions matched to themoviedb.org) ─ */
.home-tmdb-hero {
  position: relative;
  width: 100%;
  min-height: 300px;
  height: 360px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: #0b1622;
  margin-bottom: 0;
}
.home-tmdb-hero__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
  z-index: 0;
}
.home-tmdb-hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(to top, rgba(16, 11, 2, 0.92) 0%, rgba(16, 11, 2, 0.55) 55%, rgba(16, 11, 2, 0.2) 100%),
    linear-gradient(to left, rgba(220, 85, 57, 0.35) 0%, transparent 60%);
}
.home-tmdb-hero__inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1300px;
  margin: 0 auto;
  padding: 30px 40px;
}
.home-tmdb-hero__title {
  margin: 0;
  font-size: 48px;
  font-weight: 700;
  color: #fff;
  line-height: 48px;
  letter-spacing: 0;
  text-shadow: none;
}
.home-tmdb-hero__lead {
  margin: 0 0 50px;
  max-width: none;
  font-size: 32px;
  font-weight: 400;
  line-height: 32px;
  color: #fff;
  text-shadow: none;
}
.home-tmdb-hero__search {
  display: flex;
  align-items: center;
  direction: rtl;
  width: 100%;
  height: 46px;
  margin: 0;
  padding: 0;
  background: #fff;
  border-radius: 30px;
  overflow: hidden;
  box-sizing: border-box;
}
.home-tmdb-hero__search input {
  flex: 1 1 auto;
  min-width: 0;
  width: auto;
  height: 46px;
  border: 0;
  outline: none;
  padding: 10px 20px;
  font-size: 17.6px;
  line-height: 26px;
  font-family: inherit;
  color: #111827;
  background: transparent;
  border-radius: 0;
  box-shadow: none;
  direction: rtl;
  text-align: right;
}
.home-tmdb-hero__search input::placeholder {
  color: #9ca3af;
}
.home-tmdb-hero__search button {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  height: 44px;
  min-width: 98px;
  margin: 1px;
  border: 0;
  padding: 10px 26px;
  font-size: 16px;
  font-weight: 600;
  line-height: 24px;
  font-family: inherit;
  color: #111827;
  background: var(--brand-accent);
  border-radius: 30px;
  cursor: pointer;
  transition: background-color 0.2s, filter 0.2s;
}
.home-tmdb-hero__search button .fa-search {
  display: none;
}
.home-tmdb-hero__search button:hover {
  filter: brightness(1.06);
  background: var(--brand-accent);
}
.home-tmdb-hero__search button:active {
  filter: brightness(0.95);
  background: var(--brand-accent-dark);
}
.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;
}
@media (max-width: 767px) {
  .home-tmdb-hero {
    height: auto;
    min-height: 300px;
    align-items: flex-end;
  }
  .home-tmdb-hero__inner {
    padding: 24px 20px;
    box-sizing: border-box;
  }
  .home-tmdb-hero__title {
    font-size: 32px;
    line-height: 1.15;
  }
  .home-tmdb-hero__lead {
    font-size: 18px;
    line-height: 1.45;
    margin-bottom: 28px;
  }
  .home-tmdb-hero__search {
    height: 46px;
  }
  .home-tmdb-hero__search input {
    font-size: 16px;
    line-height: 26px;
    padding: 10px 16px;
  }
  .home-tmdb-hero__search button {
    min-width: 88px;
    margin: 1px;
    padding: 10px 20px;
  }
}
@media (max-width: 400px) {
  .home-tmdb-hero__title {
    font-size: 28px;
  }
  .home-tmdb-hero__lead {
    font-size: 16px;
    line-height: 1.4;
    margin-bottom: 24px;
  }
}
