/* ============================================
   HIGHLIGHTS SECTION
   ============================================ */

.highlights {
  padding: 10rem 10rem;
}

.highlights__inner {
  width: 100%;
  max-width: 148rem;
  margin: 0 auto;
}

/* ============================================
   TITLE
   ============================================ */

.highlights__title {
  font-size: 7.2rem;
  font-weight: 700;
  letter-spacing: -0.05em;
  line-height: 0.9;
  margin-bottom: 5rem;
  color: var(--color-white);
}

.highlights__title-accent {
  background: linear-gradient(90deg, #FF2D78 0%, #FF6B2D 42%, #8B5CF6 100%);
  -webkit-background-clip: text;
          background-clip: text;
  color: transparent;
}

/* ============================================
   GRID
   ============================================ */

.highlights__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

/* ============================================
   CARD + HOVER
   ============================================ */

.highlight-card {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding-bottom: 2rem;
  min-height: 51.3rem;
  background: rgba(15, 18, 32, 0.85);
  border: 0.3rem solid rgba(255, 255, 255, 0.1);
  border-radius: 2.3rem;
  overflow: hidden;
  transition: transform 0.3s ease, border-color 0.3s ease;
}

@media (hover: hover) and (pointer: fine) {
  .highlight-card:hover {
    transform: translateY(-0.8rem);
    border-color: rgba(255, 255, 255, 0.25);
  }

  .highlight-card:hover .highlight-card__image img {
    transform: scale(1.04);
  }
}

.highlight-card__image {
  width: 100%;
  height: 32rem;
  flex-shrink: 0;
  overflow: hidden;
}

.highlight-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.highlight-card__content {
  flex: 1;
  padding: 0 2.6rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.highlight-card__title {
  font-size: 2.6rem;
  font-weight: 700;
  color: var(--color-white);
  letter-spacing: -0.03em;
  line-height: 1.15;
}

.highlight-card__text {
  font-size: 1.7rem;
  font-weight: 300;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.6);
}

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 1280px) {
  .highlights {
    padding: 10rem 6rem;
  }

  .highlights__title {
    font-size: 6rem;
  }
}

@media (max-width: 900px) {
  .highlights {
    padding: 8rem 4rem;
  }

  .highlights__title {
    font-size: 5rem;
    line-height: 1;
  }

  .highlights__grid {
    grid-template-columns: 1fr;
  }

  .highlight-card {
    min-height: 0;
  }
}

@media (max-width: 560px) {
  .highlights {
    padding: 6rem 2.4rem;
  }

  .highlights__title {
    font-size: 4rem;
  }

  .highlight-card__image {
    height: 22rem;
  }

  .highlight-card__title {
    font-size: 2.2rem;
  }

  .highlight-card__text {
    font-size: 1.6rem;
  }
}