.twostars-tours-highlights {
  position: relative;
  padding: var(--spacing-section) 5%;
  overflow: hidden;
  background:
    radial-gradient(circle at top left, rgba(212, 165, 116, 0.16) 0%, rgba(212, 165, 116, 0) 32%),
    linear-gradient(180deg, #f8f1e7 0%, #f4ecdf 52%, #fbf8f2 100%);
}

.twostars-tours-highlights__inner {
  width: min(100%, 1360px);
  margin: 0 auto;
}

.twostars-tours-highlights__header {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(320px, 0.75fr);
  gap: 2rem 4rem;
  align-items: end;
  width: 100%;
  max-width: none;
  margin-bottom: 3.5rem;
}

.twostars-tours-highlights__label {
  grid-column: 1 / -1;
  margin: 0 0 1rem;
  color: var(--color-sunset-orange);
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

.twostars-tours-highlights__title {
  margin: 0;
  color: var(--color-deep-navy);
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 3.4vw, 2.8rem);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.01em;
  position: relative;
}

.twostars-tours-highlights__title::after {
  content: "";
  display: block;
  width: 88px;
  height: 2px;
  margin-top: 1.1rem;
  background: linear-gradient(90deg, rgba(212, 165, 116, 1) 0%, rgba(127, 168, 168, 0.55) 100%);
}

.twostars-tours-highlights__intro {
  max-width: 520px;
  margin: 0;
  color: rgba(13, 27, 42, 0.76);
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.85;
  justify-self: end;
}

.twostars-tours-highlights__grid {
  counter-reset: twostarsTourHighlight;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.7rem;
}

.twostars-tours-highlights__card {
  counter-increment: twostarsTourHighlight;
  position: relative;
  min-height: 260px;
  padding: 2.3rem 2rem 2rem;
  border: 1px solid rgba(27, 58, 107, 0.08);
  border-radius: 24px;
  overflow: hidden;
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.96) 0%, rgba(249, 244, 235, 0.92) 100%);
  box-shadow: 0 24px 80px rgba(16, 28, 46, 0.06);
  transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease;
}

.twostars-tours-highlights__card::before {
  content: counter(twostarsTourHighlight, decimal-leading-zero);
  position: absolute;
  top: 1.35rem;
  right: 1.5rem;
  color: rgba(27, 58, 107, 0.14);
  font-family: var(--font-display);
  font-size: 3.2rem;
  font-weight: 600;
  line-height: 1;
  pointer-events: none;
}

.twostars-tours-highlights__card::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(120deg, rgba(255, 255, 255, 0) 20%, rgba(255, 255, 255, 0.45) 48%, rgba(255, 255, 255, 0) 76%);
  transform: translateX(-135%);
  transition: transform 0.8s ease;
  pointer-events: none;
}

.twostars-tours-highlights__card:hover,
.twostars-tours-highlights__card:focus-within {
  transform: translateY(-10px);
  border-color: rgba(212, 165, 116, 0.3);
  box-shadow: 0 32px 90px rgba(16, 28, 46, 0.1);
}

.twostars-tours-highlights__card:hover::after,
.twostars-tours-highlights__card:focus-within::after {
  transform: translateX(135%);
}

.twostars-tours-highlights__card h3 {
  margin: 0;
  color: var(--color-deep-navy);
  font-family: var(--font-display);
  font-size: 1.85rem;
  font-weight: 600;
  line-height: 1.08;
  max-width: 13ch;
  position: relative;
  z-index: 1;
}

.twostars-tours-highlights__card h3::before {
  content: "";
  display: block;
  width: 56px;
  height: 2px;
  margin-bottom: 1rem;
  background: linear-gradient(90deg, rgba(212, 165, 116, 1) 0%, rgba(27, 58, 107, 0.4) 100%);
}

.twostars-tours-highlights__card p {
  position: relative;
  z-index: 1;
  max-width: 32rem;
  margin: 1rem 0 0;
  color: rgba(13, 27, 42, 0.72);
  font-family: var(--font-body);
  font-size: 0.97rem;
  line-height: 1.78;
}

@media (max-width: 1100px) {
  .twostars-tours-highlights__header {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }

  .twostars-tours-highlights__intro {
    justify-self: start;
  }

  .twostars-tours-highlights__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .twostars-tours-highlights {
    padding: 5rem 1.5rem;
  }

  .twostars-tours-highlights__title {
    max-width: none;
  }

  .twostars-tours-highlights__grid {
    grid-template-columns: 1fr;
  }

  .twostars-tours-highlights__card {
    min-height: 0;
    padding: 2rem 1.4rem 1.6rem;
  }

  .twostars-tours-highlights__card::before {
    font-size: 2.5rem;
    right: 1.2rem;
  }
}
