/* =====================================================
   BLUE TURTLE ESCAPES — HUB PAGE STYLES
   Shared by all topic hub pages (costa-rica-hub.html,
   cruises-hub.html, twin-centre-hub.html, hub.html, etc.)
   ===================================================== */

body {
  margin: 0;
  padding: 0;
  font-family: 'Hanken Grotesk', sans-serif;
  background: #fff;
}

/* ----- Hero ----- */
.hub-hero {
  background: #143F77;
  padding: 100px 40px 80px;
  text-align: center;
}
.hub-hero-category {
  font-size: 10px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  margin: 0 0 20px;
}
.hub-hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(42px, 5vw, 72px);
  font-weight: 400;
  color: #fff;
  margin: 0 0 24px;
  line-height: 1.1;
}
.hub-hero-sub {
  font-size: 16px;
  font-weight: 300;
  color: rgba(255,255,255,0.8);
  max-width: 640px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ----- Body wrapper ----- */
.hub-body {
  max-width: 900px;
  margin: 0 auto;
  padding: 72px 40px;
}

/* ----- Breadcrumb ----- */
.hub-breadcrumb {
  font-size: 11px;
  letter-spacing: 0.08em;
  color: #888;
  margin-bottom: 40px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.hub-breadcrumb a {
  color: #888;
  text-decoration: none;
}
.hub-breadcrumb a:hover {
  color: #143F77;
}

/* ----- Intro paragraph ----- */
.hub-intro {
  font-size: 17px;
  font-weight: 300;
  line-height: 1.85;
  color: #2a2a2a;
  margin-bottom: 64px;
  border-left: 3px solid #143F77;
  padding-left: 28px;
}

/* ----- Card grid ----- */
.hub-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 32px;
}
.hub-card {
  display: block;
  text-decoration: none;
  border: 1px solid #e8e3dc;
  border-radius: 4px;
  padding: 32px 28px;
  transition: box-shadow 0.2s, border-color 0.2s;
  color: inherit;
}
.hub-card:hover {
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  border-color: #143F77;
}
.hub-card-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 400;
  color: #143F77;
  margin: 0 0 12px;
  line-height: 1.3;
}
.hub-card-excerpt {
  font-size: 14px;
  font-weight: 300;
  line-height: 1.7;
  color: #555;
  margin: 0 0 20px;
}
.hub-card-link {
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #077FCB;
}

/* ----- CTA block ----- */
.hub-cta {
  text-align: center;
  margin-top: 80px;
  padding: 56px 40px;
  background: #f5f3f0;
  border-radius: 4px;
}
.hub-cta h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(30px, 3.5vw, 46px);
  font-weight: 400;
  font-style: italic;
  color: #1a1a1a;
  margin: 0 0 16px;
}
.hub-cta p {
  font-size: 16px;
  font-weight: 300;
  color: #888;
  margin: 0 0 32px;
}
.hub-cta a {
  display: inline-block;
  background: #143F77;
  color: #fff;
  text-decoration: none;
  padding: 14px 40px;
  border-radius: 50px;
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  transition: background 0.2s;
}
.hub-cta a:hover {
  background: #077FCB;
}

/* ----- Loading / error states ----- */
.hub-loading {
  text-align: center;
  padding: 120px 40px;
  font-size: 16px;
  color: #888;
  font-weight: 300;
}
.hub-not-found {
  text-align: center;
  padding: 120px 40px;
}
.hub-not-found h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 42px;
  font-weight: 400;
  color: #143F77;
  margin: 0 0 16px;
}
.hub-not-found p {
  font-size: 16px;
  font-weight: 300;
  color: #888;
}
