/* ============================================================
   CruiseEnthusiast Daily — Main Stylesheet
   ============================================================ */

:root {
  --navy-dark:   #071526;
  --navy:        #0e2a47;
  --navy-mid:    #1a3a5c;
  --navy-light:  #2c5f8a;
  --ocean:       #1a73c8;
  --sky:         #4aa8e8;
  --sky-light:   #e8f4fd;
  --gold:        #d4870a;
  --gold-light:  #fef3dc;
  --coral:       #e05050;
  --coral-light: #fdeaea;
  --green:       #1e8a4a;
  --green-light: #e8f7ee;
  --purple:      #6b3fa0;
  --text:        #1e2d3d;
  --text-mid:    #4a6079;
  --text-light:  #7a92a8;
  --bg:          #eef2f7;
  --bg-light:    #f7f9fc;
  --white:       #ffffff;
  --border:      #cdd8e4;
  --border-light:#e4eaf1;
  --shadow-sm:   0 1px 4px rgba(14,42,71,0.08);
  --shadow:      0 3px 12px rgba(14,42,71,0.10);
  --shadow-lg:   0 8px 32px rgba(14,42,71,0.14);
  --shadow-xl:   0 16px 48px rgba(14,42,71,0.18);
  --radius-sm:   4px;
  --radius:      8px;
  --radius-lg:   14px;
  --radius-xl:   22px;
  --transition:  0.2s ease;
}

/* ── Reset ─────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; -webkit-text-size-adjust: 100%; }
body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
}
img { max-width: 100%; height: auto; display: block; }
ul, ol { padding-left: 1.4rem; }

/* ── Typography ─────────────────────────────────────────── */
h1, h2, h3, h4, h5 {
  font-family: Georgia, 'Times New Roman', 'DejaVu Serif', serif;
  color: var(--navy);
  line-height: 1.25;
  margin-bottom: 0.5rem;
}
h1 { font-size: clamp(1.7rem, 4vw, 2.4rem); }
h2 { font-size: clamp(1.3rem, 3vw, 1.85rem); }
h3 { font-size: 1.2rem; }
h4 { font-size: 1.05rem; }
p  { margin-bottom: 0.9rem; }
p:last-child { margin-bottom: 0; }
a { color: var(--ocean); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--navy); text-decoration: underline; }
strong { color: var(--navy); }

/* ── Utility ─────────────────────────────────────────────── */
.container { max-width: 1220px; margin: 0 auto; padding: 0 20px; }
.text-center { text-align: center; }
.text-right  { text-align: right; }
.mb-0 { margin-bottom: 0 !important; }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.flex { display: flex; }
.flex-wrap { flex-wrap: wrap; }
.gap-1 { gap: 0.5rem; }
.gap-2 { gap: 1rem; }
.items-center { align-items: center; }
.justify-between { justify-content: space-between; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }
.hidden { display: none; }

/* ── Badge / Tag ─────────────────────────────────────────── */
.badge {
  display: inline-block;
  padding: 2px 9px;
  border-radius: 20px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  white-space: nowrap;
}
.badge-navy    { background: var(--navy);    color: #fff; }
.badge-ocean   { background: var(--ocean);   color: #fff; }
.badge-gold    { background: var(--gold);    color: #fff; }
.badge-coral   { background: var(--coral);   color: #fff; }
.badge-green   { background: var(--green);   color: #fff; }
.badge-purple  { background: var(--purple);  color: #fff; }
.badge-sky     { background: var(--sky-light); color: var(--ocean); }
.badge-outline { border: 1px solid var(--border); color: var(--text-mid); background: transparent; }

/* ── HEADER ─────────────────────────────────────────────── */
.site-header {
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 60%, var(--navy-mid) 100%);
  box-shadow: 0 2px 20px rgba(0,0,0,0.25);
  position: sticky;
  top: 0;
  z-index: 1000;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
  max-width: 1220px;
  margin: 0 auto;
  height: 64px;
}
.site-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--white);
  font-family: Georgia, serif;
  font-size: 1.25rem;
  font-weight: 700;
  text-decoration: none;
  letter-spacing: -0.01em;
}
.site-logo:hover { color: var(--sky); text-decoration: none; }
.logo-icon {
  font-size: 1.6rem;
  line-height: 1;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.3));
}
.logo-text { display: flex; flex-direction: column; line-height: 1.1; }
.logo-sub  { font-size: 0.65rem; font-family: sans-serif; letter-spacing: 0.1em; opacity: 0.75; text-transform: uppercase; font-weight: 400; }

.nav-main { display: flex; align-items: center; gap: 4px; }
.nav-main a {
  color: rgba(255,255,255,0.82);
  font-size: 0.88rem;
  font-weight: 500;
  padding: 6px 12px;
  border-radius: var(--radius);
  transition: all var(--transition);
  letter-spacing: 0.01em;
}
.nav-main a:hover, .nav-main a.active {
  background: rgba(255,255,255,0.12);
  color: var(--white);
  text-decoration: none;
}
.nav-subscribe {
  background: var(--gold) !important;
  color: var(--white) !important;
  border-radius: 20px !important;
  padding: 6px 16px !important;
  font-weight: 600 !important;
}
.nav-subscribe:hover { background: #c07800 !important; }

.hamburger {
  display: none;
  background: none;
  border: none;
  color: white;
  font-size: 1.5rem;
  cursor: pointer;
  padding: 4px 8px;
}

/* ── HERO / DATE BANNER ─────────────────────────────────── */
.date-banner {
  background: var(--navy-mid);
  color: rgba(255,255,255,0.7);
  font-size: 0.8rem;
  text-align: center;
  padding: 6px 20px;
  letter-spacing: 0.05em;
}
.date-banner strong { color: var(--gold-light); }

/* ── HERO SECTION ─────────────────────────────────────────── */
.hero {
  background: linear-gradient(160deg, var(--navy-dark) 0%, var(--navy) 50%, #1c4e7a 100%);
  padding: 52px 20px 48px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Ccircle cx='30' cy='30' r='2'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.hero-content { position: relative; z-index: 1; max-width: 750px; margin: 0 auto; }
.hero-edition { font-size: 0.78rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--sky); margin-bottom: 12px; font-weight: 600; }
.hero h1 { color: var(--white); font-size: clamp(1.8rem, 5vw, 2.8rem); margin-bottom: 14px; text-shadow: 0 2px 12px rgba(0,0,0,0.3); }
.hero-sub { color: rgba(255,255,255,0.78); font-size: 1.05rem; max-width: 600px; margin: 0 auto 20px; }
.hero-date { font-size: 0.85rem; color: rgba(255,255,255,0.55); margin-top: 16px; }
.hero-tags { display: flex; flex-wrap: wrap; gap: 8px; justify-content: center; margin-top: 16px; }
.hero-tags .badge { font-size: 0.7rem; }

/* ── BREAKING / ALERT BAR ─────────────────────────────────── */
.breaking-bar {
  background: linear-gradient(90deg, var(--coral) 0%, #c0392b 100%);
  color: white;
  padding: 10px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.88rem;
  font-weight: 500;
}
.breaking-label {
  background: rgba(255,255,255,0.2);
  border: 1px solid rgba(255,255,255,0.3);
  padding: 2px 10px;
  border-radius: 20px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
}
.breaking-text a { color: rgba(255,255,255,0.95); text-decoration: underline; }

/* ── LAYOUT ─────────────────────────────────────────────── */
.page-layout {
  max-width: 1220px;
  margin: 0 auto;
  padding: 28px 20px;
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 28px;
  align-items: start;
}
.page-layout.full-width {
  grid-template-columns: 1fr;
}
.content-main { min-width: 0; }

/* ── SECTION HEADER ─────────────────────────────────────── */
.section-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--border-light);
}
.section-header h2 { margin: 0; font-size: 1.15rem; letter-spacing: -0.01em; }
.section-icon { font-size: 1.3rem; }
.section-num {
  background: var(--navy);
  color: white;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
  flex-shrink: 0;
}

/* ── CARD ─────────────────────────────────────────────────── */
.card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 22px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border-light);
  margin-bottom: 24px;
  transition: box-shadow var(--transition);
}
.card:hover { box-shadow: var(--shadow-lg); }
.card-sm { padding: 16px; border-radius: var(--radius); margin-bottom: 14px; }
.card-flat { box-shadow: none; border: 1px solid var(--border); }

/* ── TOP STORY CARD ─────────────────────────────────────── */
.top-story-card {
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy-mid) 100%);
  border-radius: var(--radius-lg);
  padding: 28px;
  margin-bottom: 24px;
  color: white;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}
.top-story-card::after {
  content: '⚓';
  position: absolute;
  right: -10px;
  top: -10px;
  font-size: 120px;
  opacity: 0.04;
  line-height: 1;
}
.top-story-eyebrow {
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
  font-weight: 700;
}
.top-story-card h2 { color: white; font-size: clamp(1.25rem, 3vw, 1.7rem); margin-bottom: 12px; }
.top-story-card p  { color: rgba(255,255,255,0.84); font-size: 0.96rem; }
.top-story-impact {
  background: rgba(255,255,255,0.12);
  border-left: 3px solid var(--gold);
  padding: 12px 16px;
  border-radius: 0 var(--radius) var(--radius) 0;
  margin-top: 16px;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.92);
}
/* Ensure AI-generated HTML tags inside the impact box stay white */
.top-story-impact p,
.top-story-impact span,
.top-story-impact strong,
.top-story-impact em,
.top-story-impact li { color: rgba(255,255,255,0.92) !important; }
.top-story-impact-label { font-size: 0.68rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--gold); font-weight: 700; margin-bottom: 4px; }
.top-story-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 16px; }
.top-story-tags .badge { background: rgba(255,255,255,0.15); color: rgba(255,255,255,0.9); border: 1px solid rgba(255,255,255,0.2); }

/* ── SECONDARY STORIES ────────────────────────────────────── */
.secondary-story {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-left: 4px solid var(--navy-mid);
  border-radius: var(--radius);
  padding: 18px 20px;
  margin-bottom: 14px;
  transition: all var(--transition);
}
.secondary-story:hover { box-shadow: var(--shadow); border-left-color: var(--ocean); transform: translateX(2px); }
.secondary-story-eyebrow {
  font-size: 0.68rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.1em; color: var(--ocean); margin-bottom: 6px;
}
.secondary-story h4 { color: var(--navy); font-size: 1rem; margin-bottom: 8px; line-height: 1.35; }
.secondary-story p  { color: var(--text-mid); font-size: 0.88rem; line-height: 1.6; margin-bottom: 0; }
.secondary-story-tags { display: flex; gap: 5px; flex-wrap: wrap; margin-top: 10px; }

/* ── UPDATE CARDS ─────────────────────────────────────────── */
.update-card {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  padding: 16px 18px;
  margin-bottom: 12px;
  transition: all var(--transition);
  border-left: 4px solid var(--ocean);
}
.update-card:hover { border-color: var(--navy); box-shadow: var(--shadow); transform: translateX(2px); }
.update-meta { display: flex; align-items: center; gap: 8px; margin-bottom: 7px; }
.update-line { font-size: 0.75rem; font-weight: 700; color: var(--navy); text-transform: uppercase; letter-spacing: 0.05em; }
.update-card h4 { color: var(--navy); font-size: 0.98rem; margin-bottom: 6px; }
.update-card p  { color: var(--text-mid); font-size: 0.88rem; line-height: 1.55; }

/* ── DEALS TABLE ─────────────────────────────────────────── */
.deals-table-wrap { overflow-x: auto; border-radius: var(--radius-lg); box-shadow: var(--shadow); }
.deals-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
  font-size: 0.875rem;
}
.deals-table thead tr {
  background: linear-gradient(90deg, var(--navy) 0%, var(--navy-mid) 100%);
  color: white;
}
.deals-table th {
  padding: 12px 14px;
  text-align: left;
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  white-space: nowrap;
}
.deals-table td {
  padding: 12px 14px;
  border-bottom: 1px solid var(--border-light);
  vertical-align: middle;
}
.deals-table tbody tr:last-child td { border-bottom: none; }
.deals-table tbody tr:hover { background: var(--sky-light); }
.deal-ship { font-weight: 600; color: var(--navy); display: block; }
.deal-line { font-size: 0.78rem; color: var(--text-light); }
.deal-orig  { text-decoration: line-through; color: var(--text-light); font-size: 0.82rem; }
.deal-price { font-weight: 700; color: var(--green); font-size: 1.05rem; }
.deal-discount { font-weight: 700; color: var(--coral); }
.deal-urgency-high   { color: var(--coral); font-weight: 600; }
.deal-urgency-medium { color: var(--gold);  font-weight: 600; }
.deal-urgency-low    { color: var(--green); font-weight: 600; }
.perks-chip {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: var(--green-light);
  color: var(--green);
  border-radius: 20px;
  padding: 2px 8px;
  font-size: 0.73rem;
  font-weight: 600;
  white-space: nowrap;
}

/* ── PORT / DESTINATION CARDS ─────────────────────────────── */
.port-card {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin-bottom: 12px;
}
.port-item {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  padding: 14px 16px;
  display: flex;
  gap: 14px;
  align-items: flex-start;
  transition: all var(--transition);
}
.port-item:hover { box-shadow: var(--shadow); }
.port-icon-wrap {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}
.port-type-update     .port-icon-wrap { background: var(--sky-light);   color: var(--ocean); }
.port-type-advisory   .port-icon-wrap { background: var(--gold-light);  color: var(--gold); }
.port-type-development .port-icon-wrap { background: var(--green-light); color: var(--green); }
.port-type-alert      .port-icon-wrap { background: var(--coral-light); color: var(--coral); }
.port-name-row { display: flex; align-items: center; gap: 8px; margin-bottom: 5px; }
.port-name { font-weight: 700; color: var(--navy); font-size: 1rem; }
.port-region { font-size: 0.75rem; color: var(--text-light); }
.port-news { font-size: 0.87rem; color: var(--text-mid); margin-bottom: 8px; }
.port-ships { font-size: 0.78rem; color: var(--text-light); }
.port-ships strong { color: var(--text-mid); }

/* ── MAP CONTAINER ─────────────────────────────────────────── */
.map-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
  margin-bottom: 24px;
}
#cruise-map, #dest-map { width: 100%; height: 440px; }

/* ── SHIP REVIEW ─────────────────────────────────────────── */
.review-card {
  background: linear-gradient(135deg, #f8f9ff 0%, var(--white) 100%);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 22px;
  margin-bottom: 24px;
}
.review-header { display: flex; justify-content: space-between; align-items: flex-start; gap: 12px; margin-bottom: 14px; flex-wrap: wrap; }
.review-ship  { font-size: 1.1rem; font-weight: 700; color: var(--navy); }
.review-line  { font-size: 0.82rem; color: var(--text-mid); }
.stars { color: var(--gold); font-size: 1.1rem; letter-spacing: 1px; }
.rating-num  { font-size: 1.3rem; font-weight: 700; color: var(--navy); }
.rating-label { font-size: 0.75rem; color: var(--text-light); }
.review-title { font-style: italic; color: var(--navy-mid); margin-bottom: 10px; font-size: 1.02rem; }
.review-body  { font-size: 0.9rem; color: var(--text-mid); margin-bottom: 14px; }
.pros-cons { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.pros-cons h5 { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 7px; font-family: sans-serif; }
.pros h5 { color: var(--green); }
.cons h5 { color: var(--coral); }
.pros ul li::marker { color: var(--green); }
.cons ul li::marker { color: var(--coral); }
.pros-cons li { font-size: 0.84rem; color: var(--text-mid); margin-bottom: 4px; }

/* ── INSIGHTS ─────────────────────────────────────────────── */
.insight-card {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  padding: 16px 18px;
  margin-bottom: 12px;
  border-left: 4px solid var(--purple);
}
.insight-card h4 { color: var(--navy); font-size: 0.96rem; margin-bottom: 7px; }
.insight-card p  { color: var(--text-mid); font-size: 0.87rem; line-height: 1.55; }

/* ── LOOKING AHEAD ─────────────────────────────────────────── */
.timeline { list-style: none; padding: 0; margin: 0; position: relative; }
.timeline::before {
  content: '';
  position: absolute;
  left: 18px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--border);
}
.timeline-item {
  position: relative;
  padding: 0 0 16px 50px;
}
.timeline-dot {
  position: absolute;
  left: 8px;
  top: 4px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.65rem;
  background: var(--white);
  border: 2px solid var(--border);
  z-index: 1;
}
.timeline-dot.type-deal        { border-color: var(--coral);  background: var(--coral-light); }
.timeline-dot.type-announcement{ border-color: var(--sky);    background: var(--sky-light); }
.timeline-dot.type-ship        { border-color: var(--ocean);  background: var(--sky-light); }
.timeline-dot.type-booking     { border-color: var(--green);  background: var(--green-light); }
.timeline-date  { font-size: 0.76rem; font-weight: 700; color: var(--navy); letter-spacing: 0.02em; margin-bottom: 2px; }
.timeline-event { font-size: 0.87rem; color: var(--text-mid); }

/* ── COMMUNITY ─────────────────────────────────────────────── */
.community-card { background: var(--sky-light); border: 1px solid rgba(74,168,232,0.25); border-radius: var(--radius-lg); padding: 20px; margin-bottom: 24px; }
.community-topic { font-size: 1rem; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.community-body  { font-size: 0.88rem; color: var(--text-mid); }
.poll-wrap { margin-top: 14px; }
.poll-q { font-size: 0.85rem; font-weight: 600; color: var(--navy); margin-bottom: 10px; }
.poll-options { display: flex; flex-direction: column; gap: 6px; }
.poll-option {
  background: white;
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 7px 14px;
  font-size: 0.83rem;
  color: var(--text-mid);
  cursor: pointer;
  transition: all var(--transition);
  display: flex;
  align-items: center;
  gap: 8px;
}
.poll-option:hover { border-color: var(--ocean); color: var(--ocean); background: var(--white); }
.poll-option input { accent-color: var(--ocean); }

/* ── QUICK TIP ─────────────────────────────────────────────── */
.tip-card {
  background: linear-gradient(135deg, var(--gold-light), #fdf6e3);
  border: 1px solid #f0d080;
  border-radius: var(--radius-lg);
  padding: 18px 20px;
  margin-bottom: 24px;
}
.tip-eyebrow { font-size: 0.7rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--gold); margin-bottom: 7px; }
.tip-card p  { color: var(--text); font-size: 0.91rem; }

/* ── TOMORROW PREVIEW ─────────────────────────────────────── */
.preview-card {
  background: linear-gradient(90deg, var(--navy-dark), var(--navy-mid));
  border-radius: var(--radius-lg);
  padding: 18px 22px;
  color: white;
  margin-bottom: 24px;
}
.preview-eyebrow { font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--sky); font-weight: 700; margin-bottom: 7px; }
.preview-card p  { color: rgba(255,255,255,0.82); font-size: 0.9rem; }

/* ── SIDEBAR ─────────────────────────────────────────────── */
.sidebar { min-width: 0; }
.sidebar-widget {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 20px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border-light);
  margin-bottom: 22px;
}
.widget-title {
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--navy);
  margin-bottom: 14px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--border-light);
  display: flex;
  align-items: center;
  gap: 6px;
}
.subscribe-widget {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  color: white;
}
.subscribe-widget .widget-title { color: rgba(255,255,255,0.7); border-color: rgba(255,255,255,0.15); }
.subscribe-widget h3 { color: white; font-size: 1.1rem; margin-bottom: 8px; }
.subscribe-widget p  { color: rgba(255,255,255,0.75); font-size: 0.85rem; margin-bottom: 14px; }
.subscribe-form { display: flex; flex-direction: column; gap: 8px; }
.subscribe-form input {
  padding: 10px 14px;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: var(--radius);
  background: rgba(255,255,255,0.1);
  color: white;
  font-size: 0.88rem;
  outline: none;
  width: 100%;
}
.subscribe-form input::placeholder { color: rgba(255,255,255,0.45); }
.subscribe-form input:focus { border-color: var(--gold); background: rgba(255,255,255,0.15); }
.btn {
  display: inline-block;
  padding: 10px 20px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.88rem;
  cursor: pointer;
  border: none;
  transition: all var(--transition);
  text-align: center;
  line-height: 1;
}
.btn-gold  { background: var(--gold); color: white; }
.btn-gold:hover  { background: #b8720a; color: white; text-decoration: none; }
.btn-ocean { background: var(--ocean); color: white; }
.btn-ocean:hover { background: var(--navy-light); color: white; text-decoration: none; }
.btn-full  { width: 100%; display: block; }

.stat-row { display: flex; justify-content: space-between; padding: 8px 0; border-bottom: 1px solid var(--border-light); }
.stat-row:last-child { border-bottom: none; }
.stat-label { font-size: 0.82rem; color: var(--text-mid); }
.stat-value { font-size: 0.88rem; font-weight: 700; color: var(--navy); }

.quick-links { list-style: none; padding: 0; }
.quick-links li { padding: 7px 0; border-bottom: 1px solid var(--border-light); }
.quick-links li:last-child { border-bottom: none; }
.quick-links a { font-size: 0.87rem; color: var(--ocean); display: flex; align-items: center; gap: 6px; }
.quick-links a:hover { color: var(--navy); text-decoration: none; }

/* ── FLEET TABLE ─────────────────────────────────────────── */
.fleet-table-wrap { overflow-x: auto; border-radius: var(--radius-lg); box-shadow: var(--shadow); }
.fleet-table { width: 100%; border-collapse: collapse; background: var(--white); font-size: 0.86rem; }
.fleet-table thead tr { background: linear-gradient(90deg, var(--navy-dark), var(--navy-mid)); color: white; }
.fleet-table th { padding: 12px 14px; text-align: left; font-size: 0.74rem; font-weight: 600; letter-spacing: 0.05em; text-transform: uppercase; white-space: nowrap; }
.fleet-table td { padding: 11px 14px; border-bottom: 1px solid var(--border-light); vertical-align: middle; }
.fleet-table tbody tr:hover { background: var(--sky-light); }
.fleet-table tbody tr:last-child td { border-bottom: none; }
.ship-name-cell strong { color: var(--navy); font-size: 0.92rem; display: block; }
.ship-name-cell span { font-size: 0.77rem; color: var(--text-light); }
.capacity-bar { height: 4px; background: var(--border-light); border-radius: 4px; margin-top: 4px; overflow: hidden; }
.capacity-fill { height: 100%; background: linear-gradient(90deg, var(--sky), var(--ocean)); border-radius: 4px; }
.status-chip {
  display: inline-block; padding: 2px 9px; border-radius: 20px;
  font-size: 0.72rem; font-weight: 600;
}
.status-active     { background: var(--green-light); color: var(--green); }
.status-refurb     { background: var(--gold-light);  color: var(--gold); }
.status-newbuild   { background: var(--sky-light);   color: var(--ocean); }
.status-retired    { background: #f0f0f0;            color: var(--text-light); }

/* ── DESTINATIONS PAGE MAP ─────────────────────────────────── */
.port-info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 14px;
  margin-top: 20px;
}
.dest-port-card {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  padding: 16px;
  transition: all var(--transition);
}
.dest-port-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-2px); }
.dest-port-name { font-weight: 700; color: var(--navy); font-size: 1rem; margin-bottom: 3px; }
.dest-port-region { font-size: 0.78rem; color: var(--text-light); margin-bottom: 8px; }
.dest-port-season { font-size: 0.8rem; }
.season-label { font-weight: 600; color: var(--navy); }

/* ── FOOTER ─────────────────────────────────────────────── */
.site-footer {
  background: var(--navy-dark);
  color: rgba(255,255,255,0.65);
  padding: 50px 20px 24px;
  margin-top: 48px;
}
.footer-grid {
  max-width: 1220px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 36px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-brand h3 { color: white; margin-bottom: 10px; font-size: 1.1rem; }
.footer-brand p  { font-size: 0.84rem; line-height: 1.6; max-width: 300px; }
.footer-col h4   { color: rgba(255,255,255,0.85); font-size: 0.82rem; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 14px; font-family: sans-serif; }
.footer-links { list-style: none; padding: 0; }
.footer-links li { margin-bottom: 8px; }
.footer-links a  { color: rgba(255,255,255,0.55); font-size: 0.85rem; transition: color var(--transition); }
.footer-links a:hover { color: white; text-decoration: none; }
.footer-bottom {
  max-width: 1220px;
  margin: 20px auto 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.78rem;
  flex-wrap: wrap;
  gap: 8px;
}
.footer-bottom a { color: rgba(255,255,255,0.45); }
.footer-bottom a:hover { color: white; text-decoration: none; }
.footer-disclaimer { font-size: 0.74rem; color: rgba(255,255,255,0.3); margin-top: 16px; max-width: 1220px; margin-left: auto; margin-right: auto; padding-top: 12px; border-top: 1px solid rgba(255,255,255,0.06); }

/* ── LOADING STATE ─────────────────────────────────────────── */
.loading-placeholder {
  background: linear-gradient(90deg, var(--border-light) 25%, #e8edf3 50%, var(--border-light) 75%);
  background-size: 200% 100%;
  animation: shimmer 1.4s infinite;
  border-radius: var(--radius);
  height: 20px;
  margin-bottom: 8px;
}
@keyframes shimmer { 0%{background-position:200% 0} 100%{background-position:-200% 0} }

/* ── PAGE HEADER (inner pages) ─────────────────────────────── */
.page-hero {
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy-mid) 100%);
  padding: 40px 20px 36px;
  text-align: center;
}
.page-hero h1 { color: white; font-size: clamp(1.6rem, 4vw, 2.2rem); margin-bottom: 8px; }
.page-hero p  { color: rgba(255,255,255,0.72); font-size: 1rem; max-width: 560px; margin: 0 auto; }

/* ── FILTERS ─────────────────────────────────────────────── */
.filter-bar {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 20px;
  align-items: center;
}
.filter-btn {
  padding: 6px 16px;
  border: 1px solid var(--border);
  border-radius: 20px;
  background: var(--white);
  color: var(--text-mid);
  font-size: 0.82rem;
  font-weight: 500;
  cursor: pointer;
  transition: all var(--transition);
}
.filter-btn:hover, .filter-btn.active {
  background: var(--navy);
  color: white;
  border-color: var(--navy);
}
.search-input {
  padding: 8px 14px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: 0.88rem;
  outline: none;
  min-width: 200px;
  transition: border-color var(--transition);
}
.search-input:focus { border-color: var(--ocean); }

/* ── RESPONSIVE ─────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 900px) {
  .page-layout { grid-template-columns: 1fr; }
  .sidebar { display: contents; }
  .sidebar .subscribe-widget { order: -1; }
}
@media (max-width: 700px) {
  .nav-main { display: none; }
  .hamburger { display: block; }
  .nav-main.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 64px;
    left: 0; right: 0;
    background: var(--navy-dark);
    padding: 16px 20px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.4);
    z-index: 999;
    gap: 4px;
  }
  .nav-main.open a { padding: 10px 16px; font-size: 1rem; }
  .pros-cons { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 24px; }
}
@media (max-width: 500px) {
  .header-inner { padding: 0 14px; }
  .top-story-card { padding: 20px; }
  h1 { font-size: 1.55rem; }
  .deal-actions { flex-direction: column; }
}

/* ═══════════════════════════════════════════════════════════
   SHIP DETAIL PAGE  (ship.html)
   ═══════════════════════════════════════════════════════════ */

/* ── Hero ──────────────────────────────────────────────────── */
.ship-hero {
  position: relative;
  min-height: 420px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: var(--navy-dark);
}
.ship-hero-img-wrap { position: absolute; inset: 0; z-index: 0; }
.ship-hero-img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
  opacity: 0.55;
}
.ship-hero-gradient {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom,rgba(7,21,38,.2) 0%,rgba(7,21,38,.5) 40%,rgba(7,21,38,.92) 100%);
}
.ship-hero-content {
  position: relative; z-index: 1;
  max-width: 1220px; width: 100%; margin: 0 auto;
  padding: 48px 20px 36px;
}
.ship-breadcrumb {
  font-size: .8rem; color: rgba(255,255,255,.55);
  margin-bottom: 10px; display: flex; align-items: center; gap: 6px;
}
.ship-breadcrumb a { color: rgba(255,255,255,.65); text-decoration: none; }
.ship-breadcrumb a:hover { color: white; }
.ship-breadcrumb-sep { opacity: .4; }
.ship-hero-title {
  color: white; font-size: clamp(1.9rem,5vw,3rem);
  margin-bottom: 8px; text-shadow: 0 2px 16px rgba(0,0,0,.5); line-height: 1.15;
}
.ship-hero-sub { color: rgba(255,255,255,.65); font-size: 1rem; margin-bottom: 20px; }
.ship-hero-stats { display: flex; flex-wrap: wrap; gap: 8px 20px; margin-bottom: 16px; }
.ship-hero-stat { display: flex; flex-direction: column; }
.shstat-val {
  font-size: 1.35rem; font-weight: 700; color: white;
  line-height: 1; font-family: Georgia, serif;
}
.shstat-lbl {
  font-size: .68rem; color: rgba(255,255,255,.5);
  text-transform: uppercase; letter-spacing: .07em; margin-top: 2px;
}
.ship-hero-status { margin-top: 4px; }

/* ── Tab bar ───────────────────────────────────────────────── */
.ship-tab-bar {
  background: var(--white); border-bottom: 2px solid var(--border-light);
  position: sticky; top: 64px; z-index: 100;
  box-shadow: var(--shadow-sm); transition: box-shadow .2s;
}
.ship-tab-bar--stuck { box-shadow: var(--shadow); }
.ship-tab-inner {
  max-width: 1220px; margin: 0 auto; padding: 0 20px;
  display: flex; overflow-x: auto; scrollbar-width: none;
}
.ship-tab-inner::-webkit-scrollbar { display: none; }
.ship-tab {
  padding: 14px 20px; font-size: .88rem; font-weight: 600;
  color: var(--text-mid); background: none; border: none;
  border-bottom: 3px solid transparent; cursor: pointer;
  white-space: nowrap; transition: all var(--transition);
}
.ship-tab:hover { color: var(--navy); }
.ship-tab.active { color: var(--ocean); border-bottom-color: var(--ocean); }

/* ── Page layout ───────────────────────────────────────────── */
.ship-page-layout { max-width: 1220px; margin: 0 auto; padding: 28px 20px 60px; }
.ship-tab-panel { display: none; }
.ship-tab-panel.active { display: block; }
.ship-section-head {
  display: flex; align-items: center; gap: 10px;
  margin-bottom: 18px; padding-bottom: 10px;
  border-bottom: 2px solid var(--border-light);
}
.ship-section-head h2 { margin: 0; font-size: 1.15rem; }
.ship-section-icon { font-size: 1.3rem; }

/* ── Overview ──────────────────────────────────────────────── */
.ship-two-col {
  display: grid; grid-template-columns: 1fr 340px;
  gap: 32px; align-items: start;
}
.ship-description-text { font-size: 1rem; line-height: 1.8; color: var(--text); margin-bottom: 20px; }
.ship-highlights {
  background: var(--sky-light); border: 1px solid rgba(74,168,232,.2);
  border-radius: var(--radius-lg); padding: 18px 20px;
}
.ship-highlights-title {
  font-size: .78rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: .08em; color: var(--ocean); margin-bottom: 10px;
}
.ship-highlights-list { margin: 0; padding-left: 1.2rem; }
.ship-highlights-list li { font-size: .91rem; color: var(--text); margin-bottom: 6px; line-height: 1.5; }
.ship-highlights-list li::marker { color: var(--ocean); }
.ship-specs-col {
  background: var(--white); border: 1px solid var(--border-light);
  border-radius: var(--radius-lg); padding: 20px; box-shadow: var(--shadow);
}
.ship-specs-table { margin-bottom: 20px; }
.spec-row {
  display: flex; justify-content: space-between; align-items: baseline;
  padding: 9px 0; border-bottom: 1px solid var(--border-light); gap: 12px;
}
.spec-row:last-child { border-bottom: none; }
.spec-label {
  font-size: .8rem; color: var(--text-light); font-weight: 600;
  text-transform: uppercase; letter-spacing: .04em; flex-shrink: 0;
}
.spec-value { font-size: .88rem; color: var(--navy); font-weight: 600; text-align: right; }
.ship-back-btn { width: 100%; display: block; text-align: center; padding: 10px 16px; font-size: .88rem; }

/* ── Gallery ───────────────────────────────────────────────── */
.ship-gallery {
  display: grid; grid-template-columns: 2fr 1fr;
  grid-template-rows: auto auto; gap: 14px;
}
.ship-gallery-item {
  position: relative; border-radius: var(--radius-lg);
  overflow: hidden; background: var(--navy-dark); min-height: 220px;
}
.ship-gallery-main { grid-row: span 2; min-height: 420px; }
.ship-gallery-item img { width: 100%; height: 100%; object-fit: cover; display: block; }
.ship-gallery-caption {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top,rgba(7,21,38,.85),transparent);
  padding: 24px 14px 12px;
  display: flex; justify-content: space-between; align-items: flex-end; gap: 8px;
}
.ship-gallery-caption span { font-size: .78rem; color: rgba(255,255,255,.85); line-height: 1.4; }
.ship-gallery-credit { font-size: .68rem !important; color: rgba(255,255,255,.45) !important; white-space: nowrap; }

/* ── Deck plan ─────────────────────────────────────────────── */
.ship-deck-intro { font-size: .9rem; color: var(--text-mid); margin-bottom: 20px; }
.ship-deck-plan { display: flex; flex-direction: column; gap: 10px; }
.deck-level {
  background: var(--white); border: 1px solid var(--border-light);
  border-radius: var(--radius); overflow: hidden; cursor: pointer;
  transition: box-shadow var(--transition), border-color var(--transition);
}
.deck-level:hover { box-shadow: var(--shadow); border-color: var(--border); }
.deck-level.open { border-color: var(--ocean); box-shadow: var(--shadow); }
.deck-level-header { display: flex; align-items: center; gap: 14px; padding: 14px 18px; }
.deck-level-left { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.deck-level-num {
  font-size: .72rem; font-weight: 700; color: white; background: var(--navy);
  border-radius: 4px; padding: 3px 8px; letter-spacing: .04em; white-space: nowrap;
}
.deck-level.open .deck-level-num { background: var(--ocean); }
.deck-level-icon { font-size: 1.2rem; }
.deck-level-name { font-weight: 700; color: var(--navy); font-size: .95rem; white-space: nowrap; }
.deck-level-preview {
  flex: 1; font-size: .8rem; color: var(--text-light);
  overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
}
.deck-level.open .deck-level-preview { display: none; }
.deck-level-chevron {
  font-size: 1.3rem; color: var(--text-light);
  transition: transform var(--transition); flex-shrink: 0; margin-left: auto;
}
.deck-level.open .deck-level-chevron { transform: rotate(90deg); color: var(--ocean); }
.deck-level-features { display: none; flex-wrap: wrap; gap: 8px; padding: 0 18px 16px; }
.deck-level.open .deck-level-features { display: flex; }
.deck-feature-tag {
  background: var(--sky-light); color: var(--ocean);
  border: 1px solid rgba(74,168,232,.25); border-radius: 20px;
  padding: 4px 12px; font-size: .78rem; font-weight: 500;
}

/* ── Ports map ─────────────────────────────────────────────── */
.ship-map-wrap {
  border-radius: var(--radius-lg); overflow: hidden;
  border: 1px solid var(--border); box-shadow: var(--shadow-lg); margin-bottom: 24px;
}
#ship-map { width: 100%; height: 400px; }
.ship-port-grid { display: grid; grid-template-columns: repeat(auto-fill,minmax(280px,1fr)); gap: 14px; }
.ship-port-card {
  background: var(--white); border: 1px solid var(--border-light);
  border-radius: var(--radius); padding: 14px 16px;
  display: flex; gap: 14px; align-items: flex-start;
  transition: box-shadow var(--transition);
}
.ship-port-card:hover { box-shadow: var(--shadow); }
.ship-port-type-dot { width: 10px; height: 10px; border-radius: 50%; flex-shrink: 0; margin-top: 5px; }
.ship-port-body { flex: 1; min-width: 0; }
.ship-port-name-row { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; margin-bottom: 3px; }
.ship-port-name { color: var(--navy); font-size: .95rem; }
.ship-port-country { font-size: .74rem; color: var(--text-light); margin-bottom: 6px; }
.ship-port-desc { font-size: .84rem; color: var(--text-mid); line-height: 1.5; margin-bottom: 6px; }
.ship-port-highlight { font-size: .78rem; color: var(--green); font-weight: 600; }

/* ── Itinerary ─────────────────────────────────────────────── */
.ship-itin-header {
  background: linear-gradient(135deg,var(--navy-dark),var(--navy-mid));
  border-radius: var(--radius-lg); padding: 22px 24px; margin-bottom: 24px; color: white;
}
.ship-itin-name { font-size: 1.2rem; font-weight: 700; font-family: Georgia,serif; margin-bottom: 8px; }
.ship-itin-meta { display: flex; gap: 18px; font-size: .85rem; color: rgba(255,255,255,.65); }
.ship-itin-route {
  display: flex; flex-direction: column;
  background: var(--white); border: 1px solid var(--border-light);
  border-radius: var(--radius-lg); overflow: hidden; margin-bottom: 20px; box-shadow: var(--shadow);
}
.ship-itin-stop {
  display: grid; grid-template-columns: 60px 18px 1fr;
  align-items: center; gap: 14px; padding: 12px 20px;
  border-bottom: 1px solid var(--border-light); transition: background var(--transition);
}
.ship-itin-stop:last-child { border-bottom: none; }
.ship-itin-stop:hover { background: var(--sky-light); }
.ship-itin-stop.at-sea { opacity: .6; }
.ship-itin-day { font-size: .72rem; font-weight: 700; color: var(--text-light); text-transform: uppercase; letter-spacing: .05em; }
.ship-itin-dot { width: 12px; height: 12px; border-radius: 50%; flex-shrink: 0; }
.dot-port { background: var(--ocean); border: 2px solid white; box-shadow: 0 0 0 2px var(--ocean); }
.dot-sea  { background: var(--border); border: 2px solid var(--border-light); }
.ship-itin-port { font-size: .92rem; font-weight: 600; color: var(--navy); }
.ship-itin-stop.at-sea .ship-itin-port { color: var(--text-light); font-weight: 400; }
.ship-itin-highlights {
  background: var(--gold-light); border: 1px solid #f0d080;
  border-radius: var(--radius-lg); padding: 18px 20px; margin-bottom: 16px;
}
.ship-itin-highlights-title {
  font-size: .78rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: .08em; color: var(--gold); margin-bottom: 10px;
}
.ship-itin-highlights ul { margin: 0; padding-left: 1.2rem; }
.ship-itin-highlights li { font-size: .88rem; color: var(--text); margin-bottom: 5px; }
.ship-itin-note {
  font-size: .8rem; color: var(--text-light); background: var(--bg-light);
  border: 1px solid var(--border-light); border-radius: var(--radius); padding: 12px 16px;
}

/* ── Not found ─────────────────────────────────────────────── */
.ship-not-found { display: flex; align-items: center; justify-content: center; min-height: 60vh; padding: 40px 20px; }
.ship-not-found-inner { text-align: center; max-width: 400px; }
.ship-not-found-inner h2 { color: var(--navy); margin-bottom: 10px; }

/* ── Fleet table — clickable rows ─────────────────────────── */
.fleet-table tbody tr[data-ship-slug] { cursor: pointer; }
.fleet-table tbody tr[data-ship-slug]:hover .ship-name-cell strong { color: var(--ocean); }
.ship-link-hint { font-size: .68rem; color: var(--ocean); margin-top: 2px; display: none; }
.fleet-table tbody tr[data-ship-slug]:hover .ship-link-hint { display: block; }

/* ── Ship page responsive ──────────────────────────────────── */
@media (max-width: 900px) {
  .ship-two-col { grid-template-columns: 1fr; }
  .ship-gallery { grid-template-columns: 1fr; grid-template-rows: auto; }
  .ship-gallery-main { min-height: 280px; grid-row: span 1; }
  .ship-gallery-item { min-height: 200px; }
  #ship-map { height: 300px; }
  .ship-hero { min-height: 340px; }
}
@media (max-width: 600px) {
  .ship-tab { padding: 11px 14px; font-size: .8rem; }
  .ship-itin-stop { grid-template-columns: 50px 14px 1fr; gap: 10px; padding: 10px 14px; }
  .deck-level-preview { display: none; }
  .ship-port-grid { grid-template-columns: 1fr; }
}

/* ── PRINT ─────────────────────────────────────────────────── */
@media print {
  .site-header, .sidebar, .breaking-bar, .site-footer { display: none; }
  .page-layout { grid-template-columns: 1fr; }
  body { font-size: 12pt; }
  .card, .top-story-card { box-shadow: none; border: 1px solid #ccc; }
}

/* ── LEAFLET CUSTOM MARKERS ─────────────────────────────── */
.cruise-marker {
  background: var(--navy);
  border: 2px solid white;
  border-radius: 50%;
  width: 16px;
  height: 16px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.3);
}
.cruise-marker.type-alert  { background: var(--coral); }
.cruise-marker.type-update { background: var(--ocean); }
.cruise-marker.type-development { background: var(--green); }
.cruise-marker.type-advisory { background: var(--gold); }
.map-popup { max-width: 240px; }
.map-popup strong { color: var(--navy); font-size: 0.95rem; }
.map-popup p { font-size: 0.82rem; color: var(--text-mid); margin-top: 5px; }
.map-popup .ships-list { font-size: 0.76rem; color: var(--text-light); margin-top: 6px; }

/* ── BLOG ──────────────────────────────────────────────────── */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 24px;
  margin-bottom: 32px;
}
.blog-card {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: box-shadow var(--transition), transform var(--transition);
  display: flex;
  flex-direction: column;
}
.blog-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-3px); text-decoration: none; }
.blog-card-header {
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy-mid) 100%);
  padding: 28px 24px 20px;
  position: relative;
  overflow: hidden;
}
.blog-card-header::after {
  content: attr(data-emoji);
  position: absolute;
  right: -8px;
  bottom: -10px;
  font-size: 72px;
  opacity: 0.12;
  line-height: 1;
}
.blog-card-emoji {
  font-size: 2rem;
  margin-bottom: 10px;
  display: block;
}
.blog-card-title {
  color: var(--white);
  font-size: 1.05rem;
  font-family: Georgia, serif;
  line-height: 1.35;
  margin: 0;
}
.blog-card-body {
  padding: 18px 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.blog-card-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}
.blog-card-date {
  font-size: 0.75rem;
  color: var(--text-light);
}
.blog-card-readtime {
  font-size: 0.75rem;
  color: var(--text-light);
}
.blog-card-teaser {
  font-size: 0.87rem;
  color: var(--text-mid);
  line-height: 1.6;
  flex: 1;
}
.blog-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 10px;
  border-top: 1px solid var(--border-light);
  margin-top: auto;
}
.blog-card-tags {
  display: flex;
  gap: 5px;
  flex-wrap: wrap;
}
.blog-read-link {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--ocean);
  white-space: nowrap;
}
.blog-read-link:hover { color: var(--navy); text-decoration: none; }

/* Blog single post */
.blog-post-header {
  background: linear-gradient(160deg, var(--navy-dark) 0%, var(--navy) 50%, #1c4e7a 100%);
  padding: 52px 20px 44px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.blog-post-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Ccircle cx='30' cy='30' r='2'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.blog-post-header-inner {
  position: relative;
  z-index: 1;
  max-width: 760px;
  margin: 0 auto;
}
.blog-post-emoji { font-size: 3rem; margin-bottom: 14px; display: block; }
.blog-post-category { font-size: 0.72rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--sky); margin-bottom: 12px; font-weight: 700; }
.blog-post-title {
  color: var(--white);
  font-size: clamp(1.5rem, 4vw, 2.2rem);
  line-height: 1.25;
  margin-bottom: 16px;
  text-shadow: 0 2px 12px rgba(0,0,0,0.3);
}
.blog-post-meta-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.65);
}
.blog-post-meta-bar span { display: flex; align-items: center; gap: 5px; }

.blog-post-content {
  max-width: 760px;
  margin: 0 auto;
  padding: 40px 20px;
}
.blog-post-content p {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--text);
  margin-bottom: 1.2rem;
}
.blog-post-content strong { color: var(--navy); }
.blog-post-content h2 { margin-top: 2rem; margin-bottom: 0.8rem; }
.blog-post-content h3 { margin-top: 1.5rem; margin-bottom: 0.6rem; }

.blog-post-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid var(--border-light);
}

.blog-nav-arrows {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid var(--border-light);
}
.blog-nav-arrows a {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 14px 18px;
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  max-width: 48%;
  text-decoration: none;
  transition: box-shadow var(--transition);
}
.blog-nav-arrows a:hover { box-shadow: var(--shadow); text-decoration: none; }
.blog-nav-label { font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--text-light); font-weight: 600; }
.blog-nav-title { font-size: 0.88rem; color: var(--navy); font-weight: 600; line-height: 1.35; }

.blog-sidebar-recent .recent-post-item {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  padding: 10px 0;
  border-bottom: 1px solid var(--border-light);
  text-decoration: none;
}
.blog-sidebar-recent .recent-post-item:last-child { border-bottom: none; }
.recent-post-emoji { font-size: 1.5rem; flex-shrink: 0; line-height: 1; padding-top: 2px; }
.recent-post-info { display: flex; flex-direction: column; gap: 3px; }
.recent-post-title { font-size: 0.85rem; font-weight: 600; color: var(--navy); line-height: 1.35; }
.recent-post-title:hover { color: var(--ocean); }
.recent-post-date { font-size: 0.73rem; color: var(--text-light); }

@media (max-width: 700px) {
  .blog-grid { grid-template-columns: 1fr; }
  .blog-nav-arrows { flex-direction: column; }
  .blog-nav-arrows a { max-width: 100%; }
}

/* ══════════════════════════════════════════════════════
   Deal Cards  (deals.html)
   ══════════════════════════════════════════════════════ */
.badge-discount  { background: var(--green);  color: #fff; }
.badge-silversea { background: #7b6fa0;       color: #fff; }

.deal-card {
  background: #fff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  margin-bottom: 20px;
  overflow: hidden;
  transition: box-shadow .18s, transform .18s;
}
.deal-card:hover {
  box-shadow: 0 6px 24px rgba(0,50,120,.10);
  transform: translateY(-2px);
}
.deal-card--urgent {
  border-left: 4px solid var(--coral);
}

.deal-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 20px 10px;
  background: var(--sky-light);
  border-bottom: 1px solid var(--border-light);
  flex-wrap: wrap;
  gap: 8px;
}
.deal-badges { display: flex; gap: 6px; flex-wrap: wrap; }
.deal-line-name {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--text-mid);
  text-transform: uppercase;
  letter-spacing: .04em;
}

.deal-card-body { padding: 18px 20px 20px; }

.deal-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--navy);
  margin: 0 0 6px;
  line-height: 1.35;
}
.deal-highlight {
  font-size: 0.87rem;
  color: var(--text-mid);
  margin: 0 0 14px;
  line-height: 1.5;
}

.deal-meta-row {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 0.82rem;
  color: var(--text-mid);
  margin-bottom: 16px;
}

.deal-price-block {
  display: flex;
  align-items: baseline;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 14px;
  padding: 12px 14px;
  background: var(--sky-light);
  border-radius: var(--radius);
}
.deal-price-was {
  font-size: 0.9rem;
  color: var(--text-light);
  text-decoration: line-through;
}
.deal-price-now {
  font-size: 1.7rem;
  font-weight: 800;
  color: var(--green);
  line-height: 1;
}
.deal-per {
  font-size: 0.75rem;
  font-weight: 400;
  color: var(--text-light);
  margin-left: 2px;
}
.deal-savings {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--coral);
}

.deal-perks {
  list-style: none;
  padding: 0;
  margin: 0 0 16px;
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.deal-perks li {
  font-size: 0.85rem;
  color: var(--text-mid);
  display: flex;
  gap: 6px;
  align-items: flex-start;
}
.perk-check { flex-shrink: 0; }

.deal-footer-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  border-top: 1px solid var(--border-light);
  padding-top: 14px;
  margin-top: 4px;
}
.deal-dates {
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-size: 0.82rem;
  color: var(--text-mid);
}

.btn-book-deal {
  display: inline-block;
  padding: 11px 24px;
  background: var(--green);
  color: #fff !important;
  font-weight: 700;
  font-size: 0.95rem;
  border-radius: var(--radius);
  text-decoration: none !important;
  white-space: nowrap;
  transition: background .15s, transform .12s;
}
.btn-book-deal:hover {
  background: #218c3b;
  transform: translateY(-1px);
}

.btn-link {
  background: none;
  border: none;
  color: var(--ocean);
  cursor: pointer;
  font-size: inherit;
  text-decoration: underline;
  padding: 0;
}

@media (max-width: 600px) {
  .deal-price-block { flex-direction: column; gap: 4px; }
  .deal-footer-meta { flex-direction: column; align-items: flex-start; }
  .btn-book-deal    { width: 100%; text-align: center; }
  .deal-meta-row    { gap: 8px; }
}
