/* =========================================================
   CURATED-PAGES.CSS
   Activities & Journeys Page Styles
========================================================= */

/* =========================================================
   01 — HERO OVERRIDES
========================================================= */
.curated-hero .hero-overlay {
  background: linear-gradient(
    to top,
    rgba(0, 18, 27, 0.72) 0%,
    rgba(0, 42, 58, 0.34) 42%,
    rgba(0, 42, 58, 0.08) 70%,
    transparent 100%
  );
}

/* =========================================================
   02 — SHARED PAGE ELEMENTS
========================================================= */
.curated-eyebrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  color: var(--brand-2);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.curated-intro,
.curated-cta {
  max-width: 1100px;
  margin: 0 auto;
  padding: clamp(46px, 7vw, 82px) 20px 36px;
  text-align: center;
}

.curated-intro h2,
.curated-section h2,
.curated-cta h2 {
  margin: 0 0 16px;
  color: var(--ink);
  font-size: clamp(2.2rem, 4vw, 4rem);
  line-height: 1.08;
  text-wrap: balance;
}

.curated-intro p,
.curated-section p,
.curated-cta p {
  max-width: 860px;
  margin: 0 auto 18px;
  color: #4f5f68;
  font-size: clamp(1.08rem, 1.45vw, 1.2rem);
  line-height: 1.65;
  text-wrap: pretty;
}

/* =========================================================
   03 — EDITORIAL CARDS
========================================================= */
.curated-card-grid {
  max-width: 1240px;
  margin: 0 auto;
  padding: 14px 20px clamp(56px, 7vw, 90px);
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}

.curated-card {
  min-height: clamp(390px, 34vw, 500px);
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  background: #062633;
  border: 1px solid rgba(0, 59, 74, 0.08);
  box-shadow: 0 16px 36px rgba(0, 28, 40, 0.14);
}

.curated-card a {
  position: absolute;
  inset: 0;
  display: block;
  color: #ffffff;
  text-decoration: none;
}

.curated-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.7s ease;
}

.curated-card:hover img {
  transform: scale(1.035);
}

.curated-card-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to top, rgba(0, 18, 27, 0.64) 0%, rgba(0, 18, 27, 0.50) 28%, rgba(0, 26, 38, 0.16) 64%, rgba(0, 26, 38, 0.02) 100%),
    linear-gradient(135deg, rgba(0, 59, 74, 0.08) 0%, rgba(200, 162, 74, 0.05) 100%);
  transition: background 0.35s ease;
}

.curated-card:hover .curated-card-overlay {
  background:
    linear-gradient(to top, rgba(0, 18, 27, 0.68) 0%, rgba(0, 18, 27, 0.52) 30%, rgba(0, 26, 38, 0.18) 66%, rgba(0, 26, 38, 0.03) 100%),
    linear-gradient(135deg, rgba(0, 59, 74, 0.09) 0%, rgba(200, 162, 74, 0.06) 100%);
}

.page-activities .curated-card-overlay {
  background:
    linear-gradient(to top, rgba(0, 18, 27, 0.62) 0%, rgba(0, 18, 27, 0.48) 28%, rgba(0, 73, 92, 0.14) 66%, rgba(0, 26, 38, 0.02) 100%),
    linear-gradient(135deg, rgba(0, 119, 148, 0.08) 0%, rgba(200, 162, 74, 0.05) 100%);
}

.page-journeys .curated-card-overlay {
  background:
    linear-gradient(to top, rgba(0, 18, 27, 0.62) 0%, rgba(0, 18, 27, 0.47) 28%, rgba(42, 36, 25, 0.13) 66%, rgba(0, 26, 38, 0.02) 100%),
    linear-gradient(135deg, rgba(200, 162, 74, 0.08) 0%, rgba(0, 59, 74, 0.05) 100%);
}

.page-activities .curated-card:hover .curated-card-overlay,
.page-journeys .curated-card:hover .curated-card-overlay {
  background:
    linear-gradient(to top, rgba(0, 18, 27, 0.66) 0%, rgba(0, 18, 27, 0.50) 30%, rgba(0, 26, 38, 0.16) 68%, rgba(0, 26, 38, 0.03) 100%),
    linear-gradient(135deg, rgba(0, 59, 74, 0.08) 0%, rgba(200, 162, 74, 0.06) 100%);
}

.curated-card-copy {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  padding: clamp(22px, 3vw, 30px);
}

.curated-card-copy span {
  display: inline-flex;
  margin-bottom: 12px;
  color: rgba(232, 199, 110, 0.95);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.curated-card-copy h3 {
  margin: 0 0 12px;
  color: #ffffff;
  font-size: clamp(1.35rem, 2vw, 2rem);
  line-height: 1.14;
  text-wrap: balance;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.40);
}

.curated-card-copy p {
  margin: 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(0.98rem, 1.08vw, 1.05rem);
  line-height: 1.62;
  text-wrap: pretty;
}

/* =========================================================
   04 — PARTNER SECTIONS
========================================================= */
.curated-section {
  background: #f7fbfc;
  padding: clamp(54px, 7vw, 88px) 20px;
}

.curated-section-inner {
  max-width: 960px;
  margin: 0 auto;
  text-align: center;
}

.curated-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: 26px;
}

.curated-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 9px 16px;
  border-radius: 999px;
  color: var(--brand-2);
  font-weight: 800;
  text-decoration: none;
  border: 1px solid rgba(0, 119, 148, 0.28);
  background: #ffffff;
  box-shadow: 0 10px 22px rgba(0, 59, 74, 0.08);
  transition: color 0.25s ease, border-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

.curated-links a:hover {
  color: var(--brand-dark);
  border-color: rgba(0, 59, 74, 0.42);
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(0, 59, 74, 0.12);
}

/* =========================================================
   05 — CTA
========================================================= */
.curated-cta {
  padding-top: clamp(48px, 7vw, 82px);
  padding-bottom: clamp(58px, 8vw, 98px);
}

.curated-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 22px;
  border-radius: 999px;
  background: var(--brand-1);
  color: #ffffff;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 10px 22px rgba(0, 119, 148, 0.22);
  transition: background 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

.curated-button:hover {
  background: var(--brand-2);
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(0, 119, 148, 0.28);
}

/* =========================================================
   06 — RESPONSIVE
========================================================= */
@media (max-width: 1100px) {
  .curated-card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .curated-card-grid {
    grid-template-columns: 1fr;
    padding-left: 14px;
    padding-right: 14px;
  }

  .curated-card {
    min-height: 390px;
    border-radius: 16px;
  }

  .curated-card-copy {
    padding: 22px;
  }
}




