/* watersports.css — Watersports experience page */

.ws-balloon-wrap {
  max-width: 1520px;
  margin: 0 auto;
  padding: 0 20px 64px;
}

.ws-group-section {
  padding: 0 20px 64px;
}
.ws-group-section .group-banner {
  max-width: 1520px;
  margin: 0 auto;
}

.ws-exp-section .watersport-card {
  flex: 0 0 clamp(280px, calc((100cqi - 2 * clamp(16px, 2vw, 28px)) / 3), 380px);
  scroll-snap-align: start;
}
.ws-exp-section .watersports-carousel {
  max-width: 1520px;
  margin: 0 auto;
  padding: 0 clamp(12px, 2vw, 24px);
}
.ws-exp-section .watersports-carousel .carousel-btn {
  background: #fff;
  border: none;
  color: #00666d;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}
@media (max-width: 767px) {
  .ws-exp-section .watersport-card { flex: 0 0 82vw; }
}

.ws-card {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
  text-align: center;
  box-shadow: 0 8px 28px rgba(0, 60, 65, 0.1);
}
.ws-card-media {
  aspect-ratio: 4 / 3;
  overflow: hidden;
}
.ws-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.ws-card-body {
  padding: 22px 24px 28px;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.ws-card-body h3 {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: #00666d;
  margin: 0 0 12px;
}
.ws-card-body p {
  font-size: 14px;
  line-height: 1.65;
  color: #3e494a;
  margin: 0 0 20px;
  flex: 1;
}
.ws-card-btn {
  display: inline-flex;
  background: #00666d;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 13px 28px;
  border-radius: 8px;
  text-decoration: none;
  transition: background 280ms cubic-bezier(0.22,1,0.36,1);
}
.ws-card-btn:hover { background: #004f55; color: #fff; }
