/* ── Page Hero (copied here — service-pages.css not loaded on blog pages) ── */

.pill-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-ui);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gold);
    border: 1px solid rgba(212,175,55,0.25);
    border-radius: 100px;
    padding: 6px 14px;
    margin-bottom: 14px;
}
.pill-label::before {
    content: '';
    display: inline-block;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--gold);
    flex-shrink: 0;
}

.page-hero {
    background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 65%, var(--navy-mid) 100%);
    padding: 72px 0 72px;
    position: relative;
    overflow: hidden;
    text-align: center;
}
.page-hero::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 3px;
    background: var(--gold);
}
.page-hero-glow {
    position: absolute;
    top: -120px; right: -120px;
    width: 600px; height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(212,175,55,0.14) 0%, transparent 70%);
    pointer-events: none;
}
.page-hero-inner { position: relative; }
.page-hero .pill-label { background: rgba(212,175,55,0.12); border-color: rgba(212,175,55,0.25); }

.page-hero-title {
    font-family: var(--font-display);
    font-size: clamp(32px, 5vw, 56px);
    font-weight: 600;
    color: #ffffff;
    line-height: 1.1;
    margin: 16px 0 20px;
}
.page-hero-desc {
    font-family: var(--font-body);
    font-size: 15px;
    line-height: 1.7;
    color: rgba(255,255,255,0.65);
    max-width: 560px;
    margin: 0 auto 28px;
}
.breadcrumb {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-ui);
    font-size: 12px;
    color: rgba(255,255,255,0.45);
}
.breadcrumb a { color: rgba(255,255,255,0.65); text-decoration: none; transition: color 0.2s; }
.breadcrumb a:hover { color: var(--gold); }

@media (max-width: 768px) {
    .page-hero { padding: 48px 0 48px; }
}

/* ── Blog Index ─────────────────────────────────────────────────────────── */

.blog-section {
    background: var(--off-white, #f8f8f6);
    padding: 80px 0 100px;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 32px;
}

.blog-card {
    background: #ffffff;
    border: 1px solid var(--border, #e0deda);
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

.blog-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 48px rgba(0,0,0,0.10);
}

.blog-card-img-wrap {
    display: block;
    aspect-ratio: 16 / 9;
    overflow: hidden;
}

.blog-card-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s var(--ease);
}

.blog-card:hover .blog-card-img-wrap img {
    transform: scale(1.04);
}

.blog-card-img-placeholder {
    width: 100%;
    height: 100%;
    background: var(--light-grey, #f2f2f0);
}

.blog-card-body {
    padding: 28px 28px 32px;
    display: flex;
    flex-direction: column;
    flex: 1;
    gap: 12px;
}

.blog-card-meta {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.78rem;
    color: var(--text-muted, #888880);
    letter-spacing: 0.03em;
}

.blog-card-dot { opacity: 0.4; }

.blog-card-title {
    font-size: 1.15rem;
    font-weight: 700;
    line-height: 1.35;
    margin: 0;
}

.blog-card-title a {
    color: var(--navy-dark, #0f2335);
    text-decoration: none;
    transition: color 0.2s;
}

.blog-card-title a:hover { color: var(--gold, #D4AF37); }

.blog-card-excerpt {
    font-size: 0.9rem;
    color: var(--text-body, #444440);
    line-height: 1.65;
    margin: 0;
    flex: 1;
}

.blog-card-cta {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--navy, #1A3A52);
    font-size: 0.85rem;
    font-weight: 600;
    text-decoration: none;
    letter-spacing: 0.02em;
    margin-top: 4px;
    transition: gap 0.2s, color 0.2s;
}

.blog-card-cta:hover { gap: 10px; color: var(--gold, #D4AF37); }

.blog-pagination {
    margin-top: 56px;
    display: flex;
    justify-content: center;
    gap: 8px;
}

.blog-pagination .page-numbers {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 0 12px;
    border-radius: 6px;
    background: #fff;
    border: 1px solid var(--border, #e0deda);
    color: var(--navy, #1A3A52);
    text-decoration: none;
    font-size: 0.9rem;
    transition: background 0.2s, color 0.2s;
}

.blog-pagination .page-numbers.current,
.blog-pagination .page-numbers:hover {
    background: var(--gold, #D4AF37);
    border-color: var(--gold, #D4AF37);
    color: var(--navy-dark, #0f2335);
}

.blog-empty {
    text-align: center;
    color: var(--text-muted, #888880);
    padding: 80px 0;
}

@media (max-width: 768px) {
    .blog-section { padding: 56px 0 72px; }
    .blog-grid { grid-template-columns: 1fr; gap: 24px; }
    .blog-card-body { padding: 22px 22px 26px; }
}

/* ── Single Post Hero ────────────────────────────────────────────────────── */

.post-hero-title {
    font-size: clamp(20px, 3.5vw, 44px);
    max-width: 760px;
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 480px) {
    .post-hero-title { font-size: 19px; line-height: 1.25; }
}

.post-hero-meta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-ui);
    font-size: 13px;
    color: rgba(255,255,255,0.5);
    margin-bottom: 20px;
}

.post-hero-dot { opacity: 0.4; }

/* ── Featured Image ──────────────────────────────────────────────────────── */

.post-featured-wrap {
    background: var(--off-white, #f8f8f6);
    padding: 40px 0 0;
}

.post-featured-wrap .container {
    max-width: 860px;
}

.post-featured-img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 12px 12px 0 0;
    box-shadow: 0 4px 24px rgba(0,0,0,0.08);
}

/* ── Article Body ────────────────────────────────────────────────────────── */

.post-article {
    padding: 56px 0 80px;
    background: var(--off-white, #f8f8f6);
}

.post-content-wrap {
    max-width: 720px;
    margin: 0 auto;
}

/* Typography */
.entry-content p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-body, #444440);
    margin: 0 0 24px;
}

.entry-content h2 {
    font-family: var(--font-display);
    font-size: clamp(20px, 3vw, 28px);
    font-weight: 600;
    color: var(--navy-dark, #0f2335);
    margin: 48px 0 18px;
    padding-top: 20px;
    border-top: 1px solid rgba(212,175,55,0.35);
}

.entry-content h3 {
    font-family: var(--font-display);
    font-size: clamp(17px, 2.5vw, 22px);
    font-weight: 600;
    color: var(--navy-dark, #0f2335);
    margin: 32px 0 14px;
}

.entry-content ul,
.entry-content ol {
    margin: 0 0 24px;
    padding-left: 0;
    list-style: none;
}

.entry-content ul li,
.entry-content ol li {
    position: relative;
    padding-left: 22px;
    font-size: 16px;
    line-height: 1.75;
    color: var(--text-body, #444440);
    margin-bottom: 10px;
}

.entry-content ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--gold, #D4AF37);
    flex-shrink: 0;
}

.entry-content ol {
    counter-reset: post-list;
}

.entry-content ol li {
    counter-increment: post-list;
}

.entry-content ol li::before {
    content: counter(post-list) '.';
    position: absolute;
    left: 0;
    top: 0;
    font-size: 13px;
    font-weight: 700;
    color: var(--gold, #D4AF37);
    line-height: 1.75;
}

.entry-content strong {
    color: var(--navy-dark, #0f2335);
    font-weight: 600;
}

.entry-content a {
    color: var(--navy, #1A3A52);
    text-decoration: underline;
    text-underline-offset: 3px;
    transition: color 0.2s;
}

.entry-content a:hover { color: var(--gold, #D4AF37); }

.entry-content h3 + p,
.entry-content h2 + p { margin-top: 0; }

/* ── Post Rich Elements ──────────────────────────────────────────────────── */

/* Callout / pull-quote box */
.post-callout {
    background: var(--navy-dark, #0f2335);
    border-left: 4px solid var(--gold, #D4AF37);
    border-radius: 0 8px 8px 0;
    padding: 22px 28px;
    margin: 32px 0;
}
.post-callout p {
    font-family: var(--font-display);
    font-size: 16px !important;
    font-weight: 600 !important;
    color: #fff !important;
    line-height: 1.6 !important;
    margin: 0 !important;
}

/* Fleet card grid (2-up) */
.post-fleet-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin: 24px 0 32px;
}

.post-fleet-card {
    background: #fff;
    border: 1px solid var(--border, #e0deda);
    border-radius: 12px;
    padding: 0;
    overflow: hidden;
    position: relative;
    transition: box-shadow 0.25s ease, transform 0.25s ease;
}

.post-fleet-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 36px rgba(0,0,0,0.10);
}

/* Image — natural top fill, no bleed needed */
.post-fleet-card-img {
    display: block;
    width: 100%;
    aspect-ratio: 3 / 2;
    object-fit: cover;
    border-radius: 0;
    margin: 0;
}

/* Fleet card text — scoped to beat .entry-content p (0-1-1) */
.post-fleet-card .post-fleet-card-tier {
    position: absolute;
    top: 10px;
    left: 10px;
    background: rgba(26,58,82,0.9);
    color: var(--gold, #D4AF37);
    font-family: var(--font-ui);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 4px 9px;
    border-radius: 2px;
    border: 1px solid rgba(212,175,55,0.3);
    backdrop-filter: blur(4px);
    margin: 0;
    line-height: 1.5;
    z-index: 1;
}

.post-fleet-card .post-fleet-card-name {
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 700;
    color: var(--gold, #D4AF37);
    margin: 0;
    padding: 14px 16px 4px;
    line-height: 1.1;
}

.post-fleet-card .post-fleet-card-desc {
    font-size: 13px;
    color: var(--text-body, #444440);
    line-height: 1.6;
    margin: 0;
    padding: 0 16px 16px;
}

@media (max-width: 600px) {
    .post-fleet-grid { grid-template-columns: 1fr; }
    .post-callout { padding: 18px 20px; }
}

/* ── Booking CTA Strip ───────────────────────────────────────────────────── */

.post-cta-strip {
    background: linear-gradient(135deg, var(--navy-dark, #08182d) 0%, var(--navy, #0d2035) 100%);
    border-top: 1px solid rgba(212,175,55,0.18);
    padding: 56px 0;
}

.post-cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    max-width: 720px;
    margin: 0 auto;
}

.post-cta-heading {
    font-family: var(--font-display);
    font-size: clamp(18px, 2.5vw, 24px);
    font-weight: 600;
    color: var(--white, #fff);
    margin: 0 0 6px;
}

.post-cta-sub {
    font-size: 14px;
    color: rgba(255,255,255,0.5);
    margin: 0;
}

.btn-post-cta {
    display: inline-block;
    padding: 14px 32px;
    background: var(--gold, #D4AF37);
    color: var(--navy-dark, #08182d);
    font-family: var(--font-ui);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 4px;
    white-space: nowrap;
    transition: opacity 0.2s;
    flex-shrink: 0;
}

.btn-post-cta:hover { opacity: 0.88; }

/* ── Single post responsive ──────────────────────────────────────────────── */

@media (max-width: 768px) {
    .post-article { padding: 40px 0 56px; }
    .post-featured-wrap { padding-bottom: 0; }
    .post-cta-inner { flex-direction: column; align-items: center; text-align: center; gap: 24px; }
    .post-cta-strip { padding: 44px 0; }
    .entry-content h2 { margin-top: 36px; }
}
