/* Hero Banner */
.hero-banner {
  position: relative;
  height: 65vh;
  min-height: 450px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    to top,
    var(--netflix-black) 0%,
    transparent 50%,
    transparent 100%
  );
}

.hero-banner::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    to right,
    var(--netflix-black) 0%,
    transparent 50%
  );
}

.hero-content {
  position: absolute;
  top: 56px;
  bottom: 5rem;
  left: 4rem;
  max-width: 42%;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  overflow: hidden;
  padding-top: 1.5rem;
}

.hero-title {
  font-size: 3rem;
  font-weight: 700;
  margin: 0 0 0.5rem 0;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
  line-height: 1.1;
}

.hero-description {
  font-size: 1.1rem;
  line-height: 1.5;
  margin: 0 0 1rem 0;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

.year-archive-page-title {
  position: relative;
  z-index: 3;
  color: var(--netflix-white);
  margin: 0;
  font-size: 2.5rem;
  font-weight: 700;
  padding: 1.75rem 4rem 0;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.7);
  line-height: 1.1;
}

.hero-intro-wrap {
  max-width: min(100%, 46rem);
}

.year-archive-hero-content {
  max-width: 46%;
}

.movie-rows--year-archive {
  margin-top: 0;
  padding-top: 1.25rem;
}

.hero-banner.year-archive-hero {
  min-height: 470px;
}

.hero-banner.year-archive-hero .hero-content {
  gap: 0.6rem;
}

.hero-banner.year-archive-hero .hero-title {
  margin-top: 0.2rem;
  margin-bottom: 0.45rem;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  margin-bottom: 3rem;
}

.btn-play,
.btn-info {
  padding: 0.8rem 2rem;
  font-size: 1.2rem;
  font-weight: 600;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s ease;
  text-decoration: none;
}

.btn-play {
  background-color: var(--netflix-white);
  color: var(--netflix-black);
}

.btn-play:hover {
  background-color: rgba(255, 255, 255, 0.75);
}

.btn-info {
  background-color: rgba(109, 109, 110, 0.7);
  color: var(--netflix-white);
}

.btn-info:hover {
  background-color: rgba(109, 109, 110, 0.4);
}

