/* ═══════════════════════════════════════
   ARTICLE DETAILS — Canada4Travel
═══════════════════════════════════════ */

html {
    scroll-padding-top: 110px;
}

/* ─── Page wrapper ─── */
.article-page {
    background: var(--limestone-ivory);
}

/* ─── Article Meta bar (below hero) ─── */
.article-meta-strip {
    background: var(--deep-navy);
    color: var(--white);
}

.article-meta-strip-inner {
    width: min(1180px, calc(100% - 48px));
    margin-inline: auto;
    display: flex;
    flex-wrap: wrap;
    gap: 0;
}

.article-meta-strip-inner > div {
    padding: 18px 28px 18px 0;
    margin-right: 28px;
    border-right: 1px solid rgba(255,255,255,0.12);
}

.article-meta-strip-inner > div:last-child {
    border-right: none;
}

.article-meta-strip-inner span {
    display: block;
    font-family: var(--ui);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--antique-gold);
    margin-bottom: 5px;
}

.article-meta-strip-inner strong {
    font-family: var(--ui);
    font-size: 14px;
    font-weight: 500;
    color: rgba(255,255,255,0.88);
}

/* ─── Main layout ─── */
.article-layout {
    width: min(1431px, calc(100% - 48px));
    margin: 0 auto;
    padding: clamp(48px, 7vw, 88px) 0;
    display: grid;
    grid-template-columns: 1fr 322px;
    gap: 56px;
    align-items: start;
}

/* ─── Article body ─── */
.article-body {
    min-width: 0;
}

.article-lead-image {
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    display: block;
    margin-bottom: 48px;
}

.article-section {
    margin-bottom: 48px;
}

.article-section-title {
    font-family: var(--serif-display);
    font-size: clamp(24px, 3vw, 32px);
    font-weight: 600;
    color: var(--deep-navy);
    line-height: 1.15;
    letter-spacing: -0.025em;
    margin: 0 0 20px 0;
    padding-top: 40px;
    border-top: 1px solid rgba(10, 35, 66, 0.1);
}

.article-section:first-child .article-section-title {
    padding-top: 0;
    border-top: none;
}

.article-section p {
    font-family: var(--serif-body);
    font-size: clamp(16px, 1.8vw, 18px);
    line-height: 1.85;
    color: rgba(31, 31, 31, 0.82);
    margin: 0 0 20px 0;
}

.article-section p:last-child {
    margin-bottom: 0;
}

.article-section-image {
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    display: block;
    margin: 28px 0 32px;
}

/* ─── Sidebar ─── */
.article-sidebar {
    position: sticky;
    top: 108px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* Table of contents */
.article-toc {
    background: var(--white);
    border: 1px solid rgba(10, 35, 66, 0.08);
    padding: 28px;
}

.article-toc-label {
    font-family: var(--ui);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--antique-gold);
    display: block;
    margin-bottom: 6px;
}

.article-toc-title {
    font-family: var(--serif-display);
    font-size: 20px;
    font-weight: 600;
    color: var(--deep-navy);
    letter-spacing: -0.02em;
    line-height: 1.2;
    margin: 0 0 24px 0;
    padding-bottom: 18px;
    border-bottom: 1px solid rgba(10, 35, 66, 0.1);
}

.article-toc-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.article-toc-list li a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    font-family: var(--ui);
    font-size: 13px;
    font-weight: 500;
    color: var(--deep-navy);
    background: var(--limestone-ivory);
    text-decoration: none;
    transition: all 0.22s ease;
    border-left: 2px solid transparent;
}

/* .article-toc-list li a::before {
    content: '';
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--antique-gold);
    flex-shrink: 0;
    opacity: 0.55;
    transition: opacity 0.2s;
} */

.article-toc-list li a:hover {
    background: rgba(201, 169, 97, 0.1);
    border-left-color: var(--antique-gold);
    transform: translateX(3px);
}

.article-toc-list li a:hover::before {
    opacity: 1;
}

/* CTA card */
.article-cta-card {
    background: var(--deep-navy);
    color: var(--white);
    padding: 28px;
}

.article-cta-card .c4t-eyebrow {
    color: var(--antique-gold);
    display: block;
    margin-bottom: 8px;
}

.article-cta-card h3 {
    font-family: var(--serif-display);
    font-size: 24px;
    font-weight: 600;
    color: var(--white);
    letter-spacing: -0.025em;
    line-height: 1.2;
    margin: 0 0 12px 0;
}

.article-cta-card p {
    font-family: var(--ui);
    font-size: 14px;
    color: rgba(255,255,255,0.7);
    line-height: 1.6;
    margin: 0 0 20px 0;
}

.article-cta-card .c4t-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    background: var(--antique-gold);
    color: var(--white);
    font-family: var(--ui);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    text-decoration: none;
    transition: background 0.2s;
    width: 100%;
    justify-content: center;
}

.article-cta-card .c4t-btn:hover {
    background: #b8924f;
}

/* ─── Responsive ─── */
@media (max-width: 900px) {
    .article-layout {
        grid-template-columns: 1fr;
        gap: 0;
        padding-top: 32px;
    }

    .article-sidebar {
        position: static;
        order: -1;
        margin-bottom: 32px;
        flex-direction: row;
        flex-wrap: wrap;
    }

    .article-toc {
        flex: 1 1 100%;
    }

    .article-cta-card {
        flex: 1 1 100%;
    }

    .article-lead-image {
        margin-bottom: 32px;
    }
}

@media (max-width: 480px) {
    .article-layout {
        width: calc(100% - 32px);
    }

    .article-meta-strip-inner > div {
        padding: 14px 16px 14px 0;
        margin-right: 16px;
    }

    .article-toc,
    .article-cta-card {
        padding: 20px;
    }
}
.eet-shell {
    width: min(1180px, calc(100% - 93px));
    margin-inline: auto;
}

.article-body h2{
    font-family: "Cormorant Garamond", "Playfair Display", Georgia, serif;
    font-size: clamp(30px, 3vw, 42px);
    line-height: .95;
    font-weight: 500;
    letter-spacing: -.025em;
    margin: 0 0 14px;
}.article-section p img{
    width: 100% !important;
    height: 501px !important;
}
