/* =========================================================
   CHAPITOUR - INTEREST PLACES SECTION
========================================================= */

*,
*::before,
*::after {
  box-sizing: border-box;
}

.interest-section {
  width: 100%;
  padding: 1.5rem 1rem 1.8rem;
  background:
    radial-gradient(circle at center, rgba(118, 70, 143, .28), transparent 38%),
    #050008;
  color: #fafafa;
  overflow: hidden;
}

.interest-header {
  width: min(1220px, 100%);
  margin: 0 auto 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.interest-header h2 {
  margin: 0;
  display: flex;
  align-items: center;
  gap: .45rem;
  font-size: clamp(1rem, 1.6vw, 1.25rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: rgba(255, 255, 255, .92);
}

.interest-header h2 span {
  color: #ff62ea;
  text-shadow:
    0 0 10px rgba(255, 98, 234, .8),
    0 0 22px rgba(255, 98, 234, .4);
}

.interest-more {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  color: #ff62ea;
  font-size: .82rem;
  font-weight: 800;
  text-decoration: none;
  white-space: nowrap;
  transition: opacity .25s ease, transform .25s ease;
}

.interest-more:hover {
  opacity: .82;
  transform: translateX(3px);
}

.interest-scroll {
  position: relative;
  width: min(1220px, 100%);
  margin: 0 auto;
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(190px, 1fr);
  gap: .9rem;
  overflow-x: auto;
  overflow-y: hidden;
  padding-bottom: .25rem;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.interest-scroll::-webkit-scrollbar {
  display: none;
}

.interest-card {
  min-width: 190px;
  width: 300px;
  border-radius: 10px;
  overflow: hidden;
  background: rgba(255, 255, 255, .035);
  border: 1px solid rgba(255, 98, 234, .22);
  box-shadow:
    0 16px 34px rgba(0, 0, 0, .28),
    inset 0 0 0 1px rgba(255, 255, 255, .03);
  scroll-snap-align: start;
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}

.interest-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 98, 234, .55);
  box-shadow:
    0 20px 45px rgba(0, 0, 0, .38),
    0 0 22px rgba(255, 98, 234, .16);
}

.interest-card img {
  display: block;
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.interest-card__content {
  padding: .65rem .75rem .7rem;
}

.interest-card h3 {
  margin: 0 0 .2rem;
  color: #fafafa;
  font-size: .92rem;
  line-height: 1.15;
  font-weight: 800;
}

.interest-card p {
  margin: 0;
  color: rgba(255, 255, 255, .62);
  font-size: .76rem;
  line-height: 1.35;
}

.interest-card__rating {
  margin-top: .35rem;
  display: flex;
  align-items: center;
  gap: .25rem;
}

.interest-card__rating span {
  color: #ffd44d;
  font-size: .75rem;
}

.interest-card__rating p {
  color: rgba(255, 255, 255, .76);
  font-size: .72rem;
}

.interest-next {
  position: sticky;
  right: .2rem;
  align-self: center;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: rgba(255, 255, 255, .9);
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
  background: rgba(255, 255, 255, .12);
  backdrop-filter: blur(12px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, .35);
}

/* Tablet */
@media (max-width: 900px) {
  .interest-scroll {
    grid-auto-columns: 210px;
  }

  .interest-card img {
    height: 90px;
  }
}

/* Mobile */
@media (max-width: 600px) {
  .interest-section {
    padding: 1.4rem 1rem 1.6rem;
  }

  .interest-header {
    align-items: flex-start;
  }

  .interest-more {
    font-size: .75rem;
  }

  .interest-scroll {
    grid-auto-columns: 78%;
    gap: .8rem;
  }

  .interest-card {
    border-radius: 12px;
  }

  .interest-card img {
    height: 120px;
  }

  .interest-card h3 {
    font-size: 1rem;
  }

  .interest-card p {
    font-size: .82rem;
  }

  .interest-next {
    display: none;
  }
}
