/* =========================================================
   TRAVEL SWIFT — SHARED BLOG ARTICLE STYLES
   Used by all individual article pages.
========================================================= */

.blog-article-page main {
    overflow: hidden;
}

.article-shell {
    color: var(--colour-charcoal, #212331);
}

/* ---------------------------------------------------------
   Article hero
--------------------------------------------------------- */

.article-hero {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    padding-block: 32px 88px;
    color: #ffffff;
    background:
        radial-gradient(circle at 9% 15%, rgba(216, 114, 0, 0.24), transparent 27%),
        radial-gradient(circle at 90% 83%, rgba(255, 255, 255, 0.07), transparent 25%),
        linear-gradient(135deg, #212331 0%, #282d4a 50%, #263376 100%);
}

.article-hero::before,
.article-hero::after {
    content: "";
    position: absolute;
    z-index: -1;
    border-radius: 50%;
    pointer-events: none;
}

.article-hero::before {
    top: -220px;
    right: -150px;
    width: 520px;
    height: 520px;
    border: 70px solid rgba(255, 255, 255, 0.035);
}

.article-hero::after {
    bottom: -270px;
    left: 34%;
    width: 440px;
    height: 440px;
    border: 64px solid rgba(216, 114, 0, 0.06);
}

.article-breadcrumb {
    margin-bottom: 52px;
}

.article-breadcrumb ol {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
    margin: 0;
    padding: 0;
    list-style: none;
    color: rgba(255, 255, 255, 0.68);
    font-size: 0.83rem;
    font-weight: 750;
}

.article-breadcrumb li {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.article-breadcrumb li + li::before {
    content: "/";
    color: #ffb45f;
}

.article-breadcrumb a:hover {
    color: #ffffff;
}

.article-hero__grid {
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(340px, 0.72fr);
    gap: clamp(54px, 7vw, 110px);
    align-items: center;
}

.article-hero__content {
    max-width: 920px;
}

.article-hero .eyebrow {
    color: #ffb45f;
}

.article-hero h1 {
    max-width: 960px;
    margin-bottom: 24px;
    color: #ffffff;
    font-size: 46px;
    line-height: 0.99;
}

.article-hero__lead {
    max-width: 790px;
    margin-bottom: 17px;
    color: #ffffff;
    font-size: clamp(1.08rem, 1.4vw, 1.28rem);
    font-weight: 700;
    line-height: 1.58;
}

.article-hero__content > p:not(.eyebrow):not(.article-hero__lead) {
    max-width: 770px;
    color: rgba(255, 255, 255, 0.73);
}

.article-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 9px 20px;
    margin-top: 28px;
    color: rgba(255, 255, 255, 0.67);
    font-size: 0.8rem;
    font-weight: 750;
}

.article-meta span {
    position: relative;
    padding-left: 18px;
}

.article-meta span::before {
    content: "";
    position: absolute;
    top: 0.47em;
    left: 0;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #ffb45f;
}

/* Hero map */
.article-hero__visual {
    position: relative;
    min-height: 450px;
    padding: 34px;
    border: 1px solid rgba(255, 255, 255, 0.13);
    border-radius: 28px;
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.045));
    box-shadow: 0 28px 70px rgba(0, 0, 0, 0.22);
    backdrop-filter: blur(16px);
}

.article-map {
    position: relative;
    height: 340px;
}

.article-map::before {
    content: "";
    position: absolute;
    inset: 19px 20px 18px 38px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 49% 51% 43% 57% / 38% 45% 55% 62%;
    background:
        radial-gradient(circle at 30% 22%, rgba(216, 114, 0, 0.13), transparent 20%),
        radial-gradient(circle at 69% 66%, rgba(255, 255, 255, 0.06), transparent 24%);
    transform: rotate(-7deg);
}

.article-map__point,
.article-map__line,
.article-map__label {
    position: absolute;
    z-index: 2;
}

.article-map__point {
    width: 14px;
    height: 14px;
    border: 3px solid #ffb45f;
    border-radius: 50%;
    background: #263376;
    box-shadow: 0 0 0 7px rgba(216, 114, 0, 0.12);
}

.article-map__point--one {
    right: 25%;
    bottom: 18%;
}

.article-map__point--two {
    left: 31%;
    bottom: 34%;
}

.article-map__point--three {
    top: 18%;
    left: 51%;
}

.article-map__line {
    height: 2px;
    transform-origin: left center;
    background: linear-gradient(90deg, #ffb45f, rgba(255, 180, 95, 0.25));
}

.article-map__line--one {
    left: 33%;
    bottom: 35%;
    width: 39%;
    transform: rotate(14deg);
}

.article-map__line--two {
    top: 43%;
    left: 39%;
    width: 29%;
    transform: rotate(-62deg);
}

.article-map__label small,
.article-map__label strong {
    display: block;
}

.article-map__label small {
    margin-bottom: 3px;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.64rem;
    font-weight: 850;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.article-map__label strong {
    color: #ffffff;
    font-size: 0.87rem;
}

.article-map__label--one {
    right: 3%;
    bottom: 8%;
}

.article-map__label--two {
    left: 3%;
    bottom: 22%;
}

.article-map__label--three {
    top: 4%;
    left: 57%;
}

.article-hero__visual > a {
    display: inline-block;
    color: #ffffff;
    font-weight: 850;
}

.article-hero__visual > a::after {
    content: " →";
    color: #ffb45f;
}

.article-hero__visual > a:hover {
    color: #ffb45f;
}

.article-progress {
    height: 5px;
    background: #eceef4;
}

.article-progress span {
    display: block;
    width: 28%;
    height: 100%;
    background: #d87200;
}

/* ---------------------------------------------------------
   Main layout
--------------------------------------------------------- */

.article-layout {
    display: grid;
    grid-template-columns: 260px minmax(0, 850px);
    justify-content: center;
    gap: clamp(48px, 7vw, 100px);
    padding-block: clamp(78px, 9vw, 126px);
}

.article-sidebar {
    min-width: 0;
}

.article-toc {
    position: sticky;
    top: 120px;
    padding: 25px;
    border: 1px solid rgba(38, 51, 118, 0.1);
    border-radius: 18px;
    background: #f7f8fc;
}

.article-toc > p {
    margin-bottom: 17px;
    color: #212331;
    font-size: 0.78rem;
    font-weight: 900;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.article-toc ol {
    display: grid;
    gap: 11px;
    margin: 0;
    padding: 0;
    list-style: none;
    counter-reset: article-toc;
}

.article-toc li {
    counter-increment: article-toc;
}

.article-toc li a {
    display: grid;
    grid-template-columns: 24px minmax(0, 1fr);
    gap: 8px;
    color: #666b78;
    font-size: 0.82rem;
    font-weight: 700;
    line-height: 1.4;
}

.article-toc li a::before {
    content: counter(article-toc, decimal-leading-zero);
    color: #d87200;
    font-size: 0.68rem;
    font-weight: 900;
}

.article-toc li a:hover {
    color: #263376;
}

.article-toc__cta {
    display: block;
    margin-top: 22px;
    padding: 13px 15px;
    color: #ffffff;
    border-radius: 12px;
    background: #263376;
    text-align: center;
    font-size: 0.82rem;
    font-weight: 850;
}

.article-toc__cta:hover {
    color: #ffffff;
    background: #d87200;
}

/* ---------------------------------------------------------
   Article typography
--------------------------------------------------------- */

.article-content {
    min-width: 0;
}

.article-content section {
    scroll-margin-top: 115px;
}

.article-content section + section {
    margin-top: 78px;
}

.article-content h2 {
    margin-bottom: 22px;
    color: #212331;
    font-size: 34px;
    line-height: 1.08;
}

.article-content h3 {
    margin: 34px 0 14px;
    color: #212331;
    font-size: 22px;
    line-height: 1.24;
}

.article-content p,
.article-content li {
    color: #5f6573;
    font-size: 1rem;
    line-height: 1.78;
}

.article-content p + p {
    margin-top: 18px;
}

.article-section-number {
    margin-bottom: 12px;
    color: #d87200 !important;
    font-size: 0.76rem !important;
    font-weight: 900;
    letter-spacing: 0.13em;
}

.article-dropcap::first-letter {
    float: left;
    margin: 0.08em 0.12em 0 0;
    color: #263376;
    font-size: 4.5rem;
    font-weight: 900;
    line-height: 0.77;
}

.article-content blockquote {
    position: relative;
    margin: 36px 0;
    padding: 31px 35px 31px 48px;
    color: #212331;
    border-left: 5px solid #d87200;
    border-radius: 0 16px 16px 0;
    background: #f7f8fc;
    font-size: clamp(1.15rem, 2vw, 1.45rem);
    font-weight: 750;
    line-height: 1.55;
}

.article-content blockquote::before {
    content: "“";
    position: absolute;
    top: 7px;
    left: 15px;
    color: rgba(216, 114, 0, 0.18);
    font-size: 4.2rem;
    font-weight: 900;
}

/* ---------------------------------------------------------
   Reusable article components
--------------------------------------------------------- */

.article-callout {
    margin-block: 34px;
    padding: 27px 30px;
    border-radius: 18px;
}

.article-callout--orange {
    border: 1px solid rgba(216, 114, 0, 0.18);
    background: rgba(216, 114, 0, 0.07);
}

.article-callout--navy {
    color: #ffffff;
    background: linear-gradient(135deg, #212331, #263376);
}

.article-callout p {
    margin: 0;
}

.article-callout--navy p,
.article-callout--navy li {
    color: rgba(255, 255, 255, 0.74);
}

.article-callout--navy ul {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 9px 24px;
    margin: 16px 0 0;
    padding: 0;
    list-style: none;
}

.article-callout--navy li {
    position: relative;
    padding-left: 22px;
}

.article-callout--navy li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #ffb45f;
    font-weight: 900;
}

.article-callout__label {
    margin-bottom: 7px !important;
    color: #d87200 !important;
    font-size: 0.72rem !important;
    font-weight: 900;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.article-callout--navy .article-callout__label {
    color: #ffb45f !important;
}

.article-feature-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
    margin-block: 30px;
}

.article-feature-grid article {
    min-height: 100%;
    padding: 24px;
    border: 1px solid rgba(38, 51, 118, 0.1);
    border-radius: 16px;
    background: #ffffff;
    box-shadow: 0 12px 34px rgba(33, 35, 49, 0.06);
}

.article-feature-grid article > span {
    display: block;
    margin-bottom: 13px;
    color: #d87200;
    font-size: 0.68rem;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.article-feature-grid h3 {
    margin: 0 0 9px;
    font-size: 22px;
}

.article-feature-grid p {
    margin: 0;
    font-size: 0.84rem;
    line-height: 1.58;
}

.article-place-card {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 28px;
    align-items: center;
    margin-block: 34px;
    padding: 29px 31px;
    border: 1px solid rgba(38, 51, 118, 0.11);
    border-radius: 18px;
    background: #f7f8fc;
}

.article-place-card__eyebrow {
    margin-bottom: 6px !important;
    color: #d87200 !important;
    font-size: 0.7rem !important;
    font-weight: 900;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.article-place-card h3 {
    margin: 0 0 8px;
    font-size: 22px;
}

.article-place-card p {
    margin: 0;
    font-size: 0.87rem;
    line-height: 1.6;
}

.article-place-card > a {
    color: #ffffff;
    padding: 13px 17px;
    border-radius: 11px;
    background: #263376;
    font-size: 0.8rem;
    font-weight: 850;
    white-space: nowrap;
}

.article-place-card > a:hover {
    color: #ffffff;
    background: #d87200;
}

.article-check-list {
    display: grid;
    gap: 10px;
    margin: 20px 0 0;
    padding: 0;
    list-style: none;
}

.article-check-list li {
    position: relative;
    padding-left: 27px;
}

.article-check-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #d87200;
    font-weight: 900;
}

.article-split-callout {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-block: 32px;
    overflow: hidden;
    border: 1px solid rgba(38, 51, 118, 0.1);
    border-radius: 18px;
}

.article-split-callout > div {
    padding: 26px 28px;
}

.article-split-callout > div:first-child {
    background: rgba(216, 114, 0, 0.07);
}

.article-split-callout > div:last-child {
    background: #f7f8fc;
}

.article-split-callout p {
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.65;
}

.article-inline-cta {
    display: inline-flex;
    margin-top: 24px;
    color: #263376;
    font-weight: 850;
}

.article-inline-cta::after {
    content: " →";
    margin-left: 4px;
    color: #d87200;
}

.article-inline-cta:hover {
    color: #d87200;
}

.article-pill-list {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
    margin-block: 22px 28px;
}

.article-pill-list span {
    padding: 9px 13px;
    color: #263376;
    border: 1px solid rgba(38, 51, 118, 0.14);
    border-radius: 999px;
    background: #f7f8fc;
    font-size: 0.78rem;
    font-weight: 800;
}

.article-itinerary {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
    margin-block: 30px;
}

.article-itinerary article {
    padding: 25px;
    border-radius: 17px;
    color: #ffffff;
    background: linear-gradient(145deg, #212331, #263376);
}

.article-itinerary span {
    display: block;
    margin-bottom: 13px;
    color: #ffb45f;
    font-size: 0.7rem;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.article-itinerary h3 {
    margin: 0 0 9px;
    color: #ffffff;
    font-size: 22px;
}

.article-itinerary p {
    margin: 0;
    color: rgba(255, 255, 255, 0.68);
    font-size: 0.84rem;
    line-height: 1.58;
}

.article-table-wrap {
    margin-block: 26px;
    overflow-x: auto;
    border: 1px solid rgba(38, 51, 118, 0.1);
    border-radius: 18px;
}

.article-content table {
    width: 100%;
    min-width: 680px;
    border-collapse: collapse;
    background: #ffffff;
}

.article-content th,
.article-content td {
    padding: 17px 19px;
    text-align: left;
    vertical-align: top;
    border-bottom: 1px solid rgba(38, 51, 118, 0.08);
    font-size: 0.87rem;
    line-height: 1.5;
}

.article-content th {
    color: #ffffff;
    background: #263376;
    font-size: 0.76rem;
    font-weight: 850;
    letter-spacing: 0.03em;
}

.article-content td {
    color: #5f6573;
}

.article-content tr:last-child td {
    border-bottom: 0;
}

.article-note {
    padding-left: 18px;
    border-left: 3px solid #d87200;
    font-size: 0.85rem !important;
    font-style: italic;
}

.article-button-row {
    display: flex;
    flex-wrap: wrap;
    gap: 13px;
    margin-top: 29px;
}

.article-button--secondary {
    color: #263376;
    border-color: rgba(38, 51, 118, 0.23);
    background: #ffffff;
}

.article-button--secondary:hover {
    color: #ffffff;
    border-color: #263376;
    background: #263376;
}

.article-checklist-panel {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.article-checklist-panel > div {
    padding: 27px 29px;
    border: 1px solid rgba(38, 51, 118, 0.1);
    border-radius: 18px;
    background: #f7f8fc;
}

.article-checklist-panel h3 {
    margin: 0;
    font-size: 22px;
}

.article-conclusion {
    padding-top: 44px;
    border-top: 1px solid rgba(38, 51, 118, 0.1);
}

.article-sources {
    margin-top: 58px;
    padding: 27px 30px;
    border: 1px solid rgba(38, 51, 118, 0.1);
    border-radius: 18px;
    background: #f7f8fc;
}

.article-sources h2 {
    margin-bottom: 10px;
    font-size: 34px;
}

.article-sources p {
    font-size: 0.86rem;
    line-height: 1.6;
}

.article-sources ul {
    display: flex;
    flex-wrap: wrap;
    gap: 9px 20px;
    margin: 16px 0 0;
    padding: 0;
    list-style: none;
}

.article-sources a {
    color: #263376;
    font-size: 0.82rem;
    font-weight: 850;
}

.article-sources a::after {
    content: " ↗";
    color: #d87200;
}

.article-sources a:hover {
    color: #d87200;
}

/* ---------------------------------------------------------
   Related services and final CTA
--------------------------------------------------------- */

.article-related-services {
    padding-block: clamp(78px, 9vw, 120px);
    background: #f7f8fc;
}

.article-related-services__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
}

.article-related-services__grid a {
    min-height: 100%;
    padding: 29px;
    border: 1px solid rgba(38, 51, 118, 0.1);
    border-radius: 18px;
    background: #ffffff;
    box-shadow: 0 12px 35px rgba(33, 35, 49, 0.07);
    transition:
        transform 180ms ease,
        border-color 180ms ease,
        box-shadow 180ms ease;
}

.article-related-services__grid a:hover {
    transform: translateY(-5px);
    border-color: rgba(216, 114, 0, 0.34);
    box-shadow: 0 20px 48px rgba(33, 35, 49, 0.12);
}

.article-related-services__grid span {
    display: block;
    margin-bottom: 14px;
    color: #d87200;
    font-size: 0.7rem;
    font-weight: 900;
    letter-spacing: 0.09em;
    text-transform: uppercase;
}

.article-related-services__grid h3 {
    margin-bottom: 10px;
    color: #212331;
    font-size: 22px;
}

.article-related-services__grid p {
    margin: 0;
    color: #666b78;
    font-size: 0.86rem;
    line-height: 1.58;
}

.article-final-cta {
    padding-block: 78px;
    color: #ffffff;
    background: linear-gradient(115deg, #212331, #263376);
}

.article-final-cta__inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 48px;
    align-items: center;
}

.article-final-cta h2 {
    max-width: 820px;
    margin-bottom: 13px;
    color: #ffffff;
}

.article-final-cta p:not(.eyebrow) {
    max-width: 790px;
    color: rgba(255, 255, 255, 0.7);
}

.article-final-cta__actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 13px;
}

/* ---------------------------------------------------------
   Modifier hooks for future articles
--------------------------------------------------------- */

.blog-article-page--service-guide .article-hero__visual {
    min-height: 390px;
}

.blog-article-page--vehicle-guide .article-feature-grid article {
    border-top: 4px solid #d87200;
}

/* ---------------------------------------------------------
   Responsive
--------------------------------------------------------- */

@media (max-width: 1100px) {
    .article-hero__grid {
        grid-template-columns: minmax(0, 1fr) minmax(310px, 0.62fr);
        gap: 44px;
    }

    .article-layout {
        grid-template-columns: 220px minmax(0, 760px);
        gap: 50px;
    }
}

@media (max-width: 920px) {
    .article-hero__grid,
    .article-layout,
    .article-final-cta__inner {
        grid-template-columns: 1fr;
    }

    .article-hero__visual {
        width: min(100%, 720px);
    }

    .article-sidebar {
        display: none;
    }

    .article-layout {
        justify-content: stretch;
    }

    .article-final-cta__actions {
        justify-content: flex-start;
    }
}

@media (max-width: 767px) {
    .article-hero {
        padding-block: 24px 68px;
    }

    .article-breadcrumb {
        margin-bottom: 42px;
    }

    .article-hero h1 {
        font-size: 32px;
    }

    .article-hero__visual {
        min-height: 390px;
        padding: 26px 22px;
    }

    .article-map {
        height: 300px;
    }

    .article-layout {
        padding-block: 68px;
    }

    .article-content section + section {
        margin-top: 65px;
    }

    .article-feature-grid,
    .article-itinerary,
    .article-related-services__grid,
    .article-checklist-panel,
    .article-callout--navy ul {
        grid-template-columns: 1fr;
    }

    .article-place-card,
    .article-split-callout {
        grid-template-columns: 1fr;
    }

    .article-place-card > a {
        justify-self: start;
        white-space: normal;
    }

    .article-button-row,
    .article-final-cta__actions {
        display: grid;
        width: 100%;
    }

    .article-button-row .button,
    .article-final-cta__actions .button {
        width: 100%;
    }

    .article-final-cta {
        padding-block: 62px;
    }
}

@media (max-width: 480px) {
    .article-hero h1 {
        font-size: 32px;
    }

    .article-hero__visual {
        min-height: 345px;
    }

    .article-map {
        height: 260px;
    }

    .article-content blockquote {
        padding: 27px 24px 27px 37px;
    }

    .article-callout,
    .article-place-card,
    .article-checklist-panel > div,
    .article-sources {
        padding: 23px 21px;
    }
}
