/* =====================================================
   FEATURED / ФИЛЬМ НЕДЕЛИ
   ===================================================== */

.featured-section {
  position: relative;
  isolation: isolate;

  width: 100%;
  max-width: 100%;
  min-width: 0;
  min-height: 350px;

  margin: 12px 0 24px;
  box-sizing: border-box;

  background: #0b0d12;
  overflow: hidden;

  border-radius: 16px;
}

/* =====================================================
   ФОНОВОЕ ИЗОБРАЖЕНИЕ
   ===================================================== */

.featured-image {
  position: absolute;
  inset: 0;

  width: 100%;
  height: 100%;

  z-index: 0;

  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
/* =====================================================
   ИЗОБРАЖЕНИЯ HERO
   ===================================================== */

.featured-image img {
  position: absolute;
  inset: 0;

  width: 100%;
  height: 100%;

  object-fit: cover;
  object-position: center;

  display: block;
}

.featured-banner-image {
  display: block !important;
}

.featured-poster-image {
  display: none !important;
}
/* =====================================================
   ГРАДИЕНТ ДЛЯ ЧИТАЕМОСТИ ТЕКСТА
   ===================================================== */

.featured-section::before {
  content: "";

  position: absolute;
  inset: 0;

  z-index: 1;
  pointer-events: none;

  background: linear-gradient(
    90deg,
    rgba(11, 13, 18, 1) 0%,
    rgba(11, 13, 18, 0.95) 35%,
    rgba(11, 13, 18, 0.7) 60%,
    rgba(11, 13, 18, 0.1) 100%
  );
}

/* =====================================================
   ТЕКСТОВЫЙ БЛОК
   ===================================================== */

.featured-content {
  position: relative;
  z-index: 2;

  width: 100%;
  min-width: 0;
  min-height: 350px;

  box-sizing: border-box;
  padding: 36px 40px;

  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;

  color: white;
}

/* =====================================================
   ЗАГОЛОВОК И МЕТКА
   ===================================================== */

.featured-label {
  margin-bottom: 12px;

  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;

  color: #a1a5ac;
  text-transform: uppercase;
}

.featured-content h1 {
  max-width: 750px;
  width: 100%;

  margin: 0 0 12px;

  font-size: 46px;
  font-weight: 800;
  line-height: 1.1;

  overflow-wrap: anywhere;
}

/* =====================================================
   ОПИСАНИЕ
   ===================================================== */

.featured-content p {
  width: 100%;
  max-width: 620px;

  margin: 0 0 20px;

  font-size: 14px;
  line-height: 1.55;
  color: #b3b6ba;

  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;

  overflow: hidden;
}

/* =====================================================
   МЕТАДАННЫЕ
   ===================================================== */

.featured-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;

  gap: 10px 16px;
  margin-bottom: 24px;

  font-size: 13px;
  color: #a1a5ac;
}

.featured-meta .rating {
  color: #ffc700;
  font-weight: 700;
}

/* =====================================================
   КНОПКИ
   ===================================================== */

.featured-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;

  gap: 14px;
  max-width: 100%;
}

/* =====================================================
   TABLET
   ===================================================== */

@media (max-width: 900px) {
  .featured-section {
    min-height: 380px;
  }

  .featured-content {
    min-height: 380px;
    padding: 30px;
  }

  .featured-section::before {
    background: linear-gradient(
      180deg,
      rgba(11, 13, 18, 0.05) 0%,
      rgba(11, 13, 18, 0.45) 35%,
      rgba(11, 13, 18, 0.95) 75%,
      #0b0d12 100%
    );
  }

  .featured-content h1 {
    font-size: 36px;
  }

  .featured-content p {
    max-width: 100%;
  }
}

/* =====================================================
   MOBILE
   ===================================================== */


@media (max-width: 600px) {

  .featured-section {
    min-height: 420px;
    margin: 12px 0 24px;

    border-radius: 12px;
  }

  .featured-content {
    min-height: 420px;
    padding: 24px 20px;
    justify-content: flex-end;
  }

  .featured-content h1 {
    font-size: 30px;
    line-height: 1.1;
  }

  .featured-content p {
    font-size: 13px;
    -webkit-line-clamp: 4;
  }

  .featured-meta {
    gap: 8px 12px;
    margin-bottom: 18px;
  }

  .featured-actions {
    gap: 10px;
  }


  /* На мобильном вместо banner используем poster */

  .featured-banner-image {
    display: none !important;
  }

  .featured-poster-image {
    display: block !important;
  }
}

/* =====================================================
   SMALL MOBILE
   ===================================================== */

@media (max-width: 380px) {
  .featured-content {
    padding: 20px 16px;
  }

  .featured-content h1 {
    font-size: 26px;
  }

  .featured-actions {
    gap: 8px;
  }
}
