/* ==========================================================================
   Rajasthan Ka Tour - Blog design system
   Loaded only by blog.php and blogs/*.php, after css/style.css.
   Everything is namespaced under .blog-shell so no site-wide rule is affected.
   ========================================================================== */

.blog-shell {
    /* Palette lifted from css/style.css so the blog matches the rest of the site. */
    --bk-orange: #ff6b00;
    --bk-orange-2: #ff7a00;
    --bk-orange-dark: #e85d00;
    --bk-ink: #0f0f0f;
    --bk-heading: #171310;
    --bk-body: #43403c;
    --bk-muted: #7a736c;
    --bk-cream: #fff7f2;
    --bk-sand: #fff1e4;
    --bk-line: #f0e2d2;
    --bk-line-soft: #f6ece2;

    --bk-radius-sm: 10px;
    --bk-radius: 16px;
    --bk-radius-lg: 20px;

    --bk-shadow: 0 4px 25px rgba(0, 0, 0, .05);
    --bk-shadow-hover: 0 18px 40px rgba(23, 19, 16, .12);

    --bk-gap: clamp(28px, 4vw, 52px);
    --bk-section-y: clamp(48px, 6vw, 88px);
    --bk-max: 1240px;

    color: var(--bk-body);
    background: #fff;
    overflow-x: clip; /* belt-and-braces against a stray wide child */
}

/* Anchors land clear of the top edge; the site header is not sticky, so a
   small offset is enough. */
.blog-shell [id] {
    scroll-margin-top: 24px;
}

@media (prefers-reduced-motion: no-preference) {
    html {
        scroll-behavior: smooth;
    }
}

.blog-wrap {
    width: 100%;
    max-width: var(--bk-max);
    margin-inline: auto;
    padding-inline: clamp(16px, 4vw, 28px);
}

.blog-section {
    padding-block: var(--bk-section-y);
}

.blog-section--sand {
    background: var(--bk-cream);
}

/* --------------------------------------------------------------- typography */

.blog-shell h1,
.blog-shell h2,
.blog-shell h3,
.blog-shell h4 {
    color: var(--bk-heading);
    font-weight: 700;
    line-height: 1.2;
    margin: 0;
}

.blog-eyebrow {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: var(--bk-orange);
    margin-bottom: 14px;
}

.blog-eyebrow--ondark {
    color: #ffcda4;
}

.blog-section-title {
    font-size: clamp(26px, 3.4vw, 40px);
    margin-bottom: 14px;
}

.blog-section-intro {
    max-width: 62ch;
    font-size: clamp(15px, 1.2vw, 17px);
    line-height: 1.75;
    color: var(--bk-muted);
    margin: 0 0 clamp(26px, 3vw, 40px);
}

.blog-section-head {
    display: flex;
    flex-wrap: wrap;
    gap: 16px 28px;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: clamp(24px, 3vw, 38px);
}

.blog-section-head > div {
    min-width: 0;
}

.blog-section-head .blog-section-intro {
    margin-bottom: 0;
}

/* ------------------------------------------------------------------ buttons */

.blog-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 13px 26px;
    border-radius: var(--bk-radius-sm);
    border: 1px solid var(--bk-orange);
    background: var(--bk-orange);
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    transition: background-color .25s ease, border-color .25s ease, color .25s ease;
}

.blog-button i,
.blog-button .blog-arrow {
    transition: transform .25s ease;
}

.blog-button:hover,
.blog-button:focus-visible {
    background: var(--bk-orange-dark);
    border-color: var(--bk-orange-dark);
    color: #fff;
}

.blog-button:hover i,
.blog-button:focus-visible i {
    transform: translateX(4px);
}

.blog-button--ghost {
    background: transparent;
    border-color: rgba(255, 255, 255, .55);
    color: #fff;
}

.blog-button--ghost:hover,
.blog-button--ghost:focus-visible {
    background: #fff;
    border-color: #fff;
    color: var(--bk-heading);
}

.blog-button--light {
    background: #fff;
    border-color: #fff;
    color: var(--bk-heading);
}

.blog-button--light:hover,
.blog-button--light:focus-visible {
    background: var(--bk-orange);
    border-color: var(--bk-orange);
    color: #fff;
}

.blog-button--outline {
    background: transparent;
    color: var(--bk-orange);
}

.blog-button--outline:hover,
.blog-button--outline:focus-visible {
    background: var(--bk-orange);
    color: #fff;
}

.blog-text-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--bk-orange);
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    letter-spacing: .01em;
}

.blog-text-link i {
    transition: transform .25s ease;
}

.blog-text-link:hover,
.blog-text-link:focus-visible {
    color: var(--bk-orange-dark);
}

.blog-text-link:hover i,
.blog-text-link:focus-visible i {
    transform: translateX(4px);
}

.blog-shell a:focus-visible,
.blog-shell button:focus-visible,
.blog-shell summary:focus-visible {
    outline: 2px solid var(--bk-orange);
    outline-offset: 3px;
}

/* --------------------------------------------------------------------- meta */

.blog-meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px 10px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: .04em;
    text-transform: uppercase;
    color: var(--bk-muted);
}

.blog-meta > * + *::before {
    content: "\00b7";
    margin-right: 10px;
    color: var(--bk-orange);
}

.blog-meta--onmedia {
    color: rgba(255, 255, 255, .82);
}

.blog-meta--onmedia > * + *::before {
    color: #ffb46b;
}

/* --------------------------------------------------------------- blog hero */

.blog-hero {
    position: relative;
    isolation: isolate;
    display: flex;
    align-items: center;
    min-height: clamp(360px, 52vh, 520px);
    padding-block: clamp(48px, 8vw, 90px);
    background: var(--bk-ink) center/cover no-repeat;
    color: #fff;
    overflow: hidden;
}

.blog-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background: linear-gradient(105deg, rgba(15, 15, 15, .88) 0%, rgba(15, 15, 15, .62) 46%, rgba(15, 15, 15, .28) 100%);
}

/* Subtle Rajasthani arch motif - decorative only. */
.blog-hero::after {
    content: "";
    position: absolute;
    right: -70px;
    bottom: -90px;
    width: 320px;
    height: 320px;
    z-index: -1;
    border: 1px solid rgba(255, 176, 106, .3);
    border-radius: 50% 50% 8px 8px;
    pointer-events: none;
}

.blog-hero__inner {
    width: 100%;
}

.blog-hero h1 {
    color: #fff;
    font-size: clamp(30px, 4.6vw, 56px);
    line-height: 1.12;
    max-width: 17ch;
    margin-bottom: 18px;
}

.blog-hero p {
    max-width: 56ch;
    font-size: clamp(15px, 1.3vw, 18px);
    line-height: 1.75;
    color: rgba(255, 255, 255, .86);
    margin: 0 0 28px;
}

.blog-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.blog-hero__stats {
    display: flex;
    flex-wrap: wrap;
    gap: 14px 40px;
    margin-top: clamp(28px, 4vw, 42px);
    padding-top: clamp(20px, 3vw, 28px);
    border-top: 1px solid rgba(255, 255, 255, .18);
}

.blog-hero__stat strong {
    display: block;
    font-size: clamp(20px, 2.2vw, 26px);
    color: #fff;
    line-height: 1.2;
}

.blog-hero__stat span {
    font-size: 12px;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .66);
}

/* ---------------------------------------------------------- featured article */

.blog-feature {
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    background: #fff;
    border: 1px solid var(--bk-line);
    border-radius: var(--bk-radius-lg);
    box-shadow: var(--bk-shadow);
    overflow: hidden;
}

.blog-feature__media {
    position: relative;
    display: block;
    min-height: 340px;
    overflow: hidden;
}

.blog-feature__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .6s ease;
}

.blog-feature:hover .blog-feature__media img {
    transform: scale(1.04);
}

.blog-badge {
    position: absolute;
    top: 18px;
    left: 18px;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 8px 15px;
    border-radius: 999px;
    background: var(--bk-orange);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
}

.blog-feature__body {
    padding: clamp(26px, 3.4vw, 46px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 14px;
}

.blog-feature__body h2 {
    font-size: clamp(24px, 2.9vw, 36px);
    line-height: 1.18;
}

.blog-feature__body h2 a {
    color: inherit;
    text-decoration: none;
}

.blog-feature__body h2 a:hover {
    color: var(--bk-orange);
}

.blog-feature__body p {
    font-size: 16px;
    line-height: 1.75;
    color: var(--bk-muted);
    margin: 0;
    max-width: 52ch;
}

.blog-feature__cta {
    margin-top: 6px;
}

/* --------------------------------------------------------------- categories */

.blog-categories {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.blog-chip {
    appearance: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    border-radius: 999px;
    border: 1px solid var(--bk-line);
    background: #fff;
    color: var(--bk-body);
    font: inherit;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.2;
    text-decoration: none;
    cursor: pointer;
    transition: border-color .25s ease, background-color .25s ease, color .25s ease;
}

.blog-chip:hover,
.blog-chip:focus-visible {
    border-color: var(--bk-orange);
    color: var(--bk-orange);
}

.blog-chip.is-active {
    background: var(--bk-orange);
    border-color: var(--bk-orange);
    color: #fff;
}

/* --------------------------------------------------------------- card grid */

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(310px, 1fr));
    gap: clamp(20px, 2.4vw, 30px);
    align-items: stretch;
}

.blog-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    background: #fff;
    border: 1px solid var(--bk-line);
    border-radius: var(--bk-radius);
    overflow: hidden;
    transition: border-color .25s ease, box-shadow .25s ease;
}

.blog-card:hover {
    border-color: #f4d3b3;
    box-shadow: var(--bk-shadow-hover);
}

.blog-card__media {
    position: relative;
    display: block;
    aspect-ratio: 3 / 2;
    overflow: hidden;
    background: var(--bk-sand);
}

.blog-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .6s ease;
}

.blog-card:hover .blog-card__media img {
    transform: scale(1.05);
}

.blog-card__body {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 22px 24px 26px;
    flex: 1 1 auto;
}

.blog-card__body h3 {
    font-size: 20px;
    line-height: 1.3;
}

.blog-card__body h3 a {
    color: inherit;
    text-decoration: none;
}

.blog-card__body h3 a:hover {
    color: var(--bk-orange);
}

.blog-card__body p {
    margin: 0;
    font-size: 15px;
    line-height: 1.7;
    color: var(--bk-muted);
}

.blog-card__foot {
    margin-top: auto;
    padding-top: 6px;
}

/* Four-up variant for the related row, so 4 cards fill a row instead of
   leaving an orphan on a second line. */
.blog-grid--four {
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
}

.blog-empty {
    grid-column: 1 / -1;
    padding: 44px 24px;
    text-align: center;
    border: 1px dashed var(--bk-line);
    border-radius: var(--bk-radius);
    background: var(--bk-cream);
    color: var(--bk-muted);
    font-size: 15px;
}

/* ------------------------------------------------------- travel inspiration */

.blog-destinations {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: clamp(16px, 2vw, 24px);
}

.blog-destination {
    position: relative;
    display: flex;
    align-items: flex-end;
    aspect-ratio: 3 / 4;
    padding: 22px;
    border-radius: var(--bk-radius);
    overflow: hidden;
    text-decoration: none;
    color: #fff;
    background: var(--bk-ink);
}

.blog-destination img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .6s ease;
}

.blog-destination::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(15, 15, 15, .86) 8%, rgba(15, 15, 15, .12) 62%);
}

.blog-destination:hover img {
    transform: scale(1.06);
}

.blog-destination__label {
    position: relative;
    z-index: 1;
}

.blog-destination__label strong {
    display: block;
    font-size: 20px;
    font-weight: 700;
    color: #fff;
}

.blog-destination__label span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 4px;
    font-size: 13px;
    font-weight: 600;
    color: #ffcda4;
}

.blog-destination__label i {
    transition: transform .25s ease;
}

.blog-destination:hover .blog-destination__label i {
    transform: translateX(4px);
}

/* ------------------------------------------------------------------ big CTA */

.blog-cta {
    position: relative;
    isolation: isolate;
    padding-block: clamp(52px, 7vw, 92px);
    background: var(--bk-ink) center/cover no-repeat;
    color: #fff;
    overflow: hidden;
}

.blog-cta::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background: linear-gradient(100deg, rgba(15, 15, 15, .92), rgba(15, 15, 15, .66));
}

.blog-cta__inner {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: clamp(24px, 4vw, 48px);
}

.blog-cta__inner > div {
    max-width: 60ch;
}

.blog-cta h2 {
    color: #fff;
    font-size: clamp(26px, 3.2vw, 40px);
    margin-bottom: 12px;
}

.blog-cta p {
    margin: 0;
    font-size: 16px;
    line-height: 1.75;
    color: rgba(255, 255, 255, .82);
}

.blog-cta__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

/* ==========================================================================
   Article page
   ========================================================================== */

.reading-progress {
    position: fixed;
    inset: 0 0 auto 0;
    height: 3px;
    z-index: 1050;
    background: transparent;
    pointer-events: none;
}

.reading-progress__bar {
    height: 100%;
    width: 0;
    background: linear-gradient(90deg, var(--bk-orange), #ffb46b);
    transform-origin: left center;
}

.article-hero {
    position: relative;
    isolation: isolate;
    display: flex;
    align-items: flex-end;
    min-height: clamp(380px, 58vh, 620px);
    padding-block: clamp(46px, 7vw, 84px);
    background: var(--bk-ink) center/cover no-repeat;
    color: #fff;
}

.article-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background: linear-gradient(to top, rgba(15, 15, 15, .93) 12%, rgba(15, 15, 15, .58) 58%, rgba(15, 15, 15, .42) 100%);
}

.article-hero__inner {
    width: 100%;
}

.article-hero h1 {
    color: #fff;
    font-size: clamp(28px, 4.2vw, 52px);
    line-height: 1.14;
    max-width: 20ch;
    margin-bottom: 16px;
}

.article-hero__summary {
    max-width: 62ch;
    font-size: clamp(15px, 1.25vw, 18px);
    line-height: 1.75;
    color: rgba(255, 255, 255, .86);
    margin: 0 0 22px;
}

.article-back {
    display: flex;
    width: fit-content;
    align-items: center;
    gap: 8px;
    margin-bottom: 18px;
    font-size: 14px;
    font-weight: 600;
    color: rgba(255, 255, 255, .82);
    text-decoration: none;
}

.article-back i {
    transition: transform .25s ease;
}

.article-back:hover,
.article-back:focus-visible {
    color: #fff;
}

.article-back:hover i {
    transform: translateX(-4px);
}

.article-back--foot {
    color: var(--bk-orange);
    margin: 0;
}

.article-back--foot:hover,
.article-back--foot:focus-visible {
    color: var(--bk-orange-dark);
}

/* ------------------------------------------------------------------ layout */

.article-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: clamp(28px, 3.5vw, 52px);
    padding-block: clamp(34px, 5vw, 66px);
}

@media (min-width: 992px) {
    .article-layout {
        grid-template-columns: minmax(0, 1fr) 320px;
        align-items: start;
    }

    .article-body {
        grid-column: 1;
        grid-row: 1;
    }

    .article-rail {
        grid-column: 2;
        grid-row: 1;
        position: sticky;
        top: 24px;
    }
}

@media (min-width: 1200px) {
    .article-layout {
        grid-template-columns: minmax(0, 1fr) 340px;
    }
}

/* ------------------------------------------------------ article typography */

.article-body {
    min-width: 0;
    max-width: 74ch;
    font-size: 17px;
    line-height: 1.8;
    color: var(--bk-body);
}

@media (min-width: 992px) {
    .article-body {
        font-size: 18px;
        line-height: 1.85;
    }
}

.article-body > p {
    margin: 0 0 22px;
}

.article-body h2 {
    font-size: clamp(24px, 2.6vw, 32px);
    margin: clamp(38px, 4.5vw, 56px) 0 16px;
    padding-top: 4px;
}

.article-body h3 {
    font-size: clamp(19px, 1.9vw, 23px);
    margin: 30px 0 12px;
}

.article-body a:not(.blog-button):not(.blog-text-link):not(.related-link) {
    color: var(--bk-orange-dark);
    font-weight: 600;
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 3px;
}

.article-body a:not(.blog-button):not(.blog-text-link):not(.related-link):hover {
    color: var(--bk-orange);
}

.article-body ul,
.article-body ol {
    margin: 0 0 22px;
    padding-left: 22px;
}

.article-body li {
    margin-bottom: 10px;
}

.article-body li::marker {
    color: var(--bk-orange);
}

.article-lead {
    font-size: clamp(17px, 1.5vw, 20px);
    line-height: 1.72;
    color: var(--bk-heading);
    font-weight: 500;
}

/* -------------------------------------------------------------- key points */

.article-keypoints {
    margin: 0 0 clamp(30px, 3.5vw, 42px);
    padding: clamp(22px, 2.6vw, 30px);
    border: 1px solid var(--bk-line);
    border-radius: var(--bk-radius);
    background: var(--bk-cream);
}

.article-keypoints__label {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: var(--bk-orange);
    margin: 0 0 16px;
}

.article-keypoints ul {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
    gap: 10px 26px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.article-keypoints li {
    display: flex;
    gap: 10px;
    margin: 0;
    font-size: 15px;
    line-height: 1.6;
}

.article-keypoints i {
    color: var(--bk-orange);
    margin-top: 4px;
    flex: none;
}

/* ------------------------------------------------------------ place blocks */

.place {
    padding-top: clamp(26px, 3vw, 36px);
    margin-top: clamp(26px, 3vw, 36px);
    border-top: 1px solid var(--bk-line-soft);
}

.place:first-of-type {
    border-top: 0;
    margin-top: 0;
}

.place__head {
    display: flex;
    align-items: baseline;
    gap: 14px;
}

.place__num {
    flex: none;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .1em;
    color: var(--bk-orange);
    padding-top: 2px;
}

.place h3 {
    margin: 0;
}

.place__figure {
    margin: 18px 0 0;
}

.place__figure img {
    display: block;
    width: 100%;
    /* height:auto is required: the img width/height attributes are applied as
       presentational hints and would otherwise beat aspect-ratio. */
    height: auto;
    aspect-ratio: 3 / 2;
    object-fit: cover;
    border-radius: var(--bk-radius);
    background: var(--bk-sand);
}

.place__figure figcaption {
    margin-top: 10px;
    font-size: 13px;
    line-height: 1.6;
    color: var(--bk-muted);
}

.place p {
    margin: 16px 0 0;
}

.place__facts {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 16px;
    padding: 0;
    list-style: none;
}

.place__facts li {
    margin: 0;
    padding: 7px 14px;
    border-radius: 999px;
    background: var(--bk-sand);
    color: #8a5424;
    font-size: 13px;
    font-weight: 600;
    line-height: 1.3;
}

/* ---------------------------------------------------------------- callouts */

.callout {
    display: flex;
    gap: 16px;
    margin: clamp(26px, 3vw, 36px) 0;
    padding: clamp(20px, 2.4vw, 26px);
    border: 1px solid var(--bk-line);
    border-left: 4px solid var(--bk-orange);
    border-radius: var(--bk-radius-sm);
    background: var(--bk-cream);
}

.callout__icon {
    flex: none;
    display: grid;
    place-items: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--bk-orange);
    color: #fff;
    font-size: 18px;
}

.callout__label {
    display: block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: var(--bk-orange);
    margin-bottom: 6px;
}

.callout p {
    margin: 0;
    font-size: 15px;
    line-height: 1.7;
}

.callout--know {
    border-left-color: #1d2671;
    background: #f5f6fb;
}

.callout--know .callout__icon {
    background: #1d2671;
}

.callout--know .callout__label {
    color: #1d2671;
}

.callout--photo {
    border-left-color: #b4531c;
    background: #fdf3ea;
}

.callout--photo .callout__icon {
    background: #b4531c;
}

.callout--photo .callout__label {
    color: #b4531c;
}

/* -------------------------------------------------------------- itinerary */

.article-itinerary {
    margin: clamp(30px, 3.5vw, 44px) 0;
    padding: clamp(22px, 2.8vw, 32px);
    border: 1px solid var(--bk-line);
    border-radius: var(--bk-radius);
    background: #fff;
    box-shadow: var(--bk-shadow);
}

.article-itinerary h2 {
    margin-top: 0;
}

.article-itinerary h3 {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 17px;
    margin: 24px 0 8px;
}

.article-itinerary h3:first-of-type {
    margin-top: 14px;
}

.article-itinerary h3 span {
    display: grid;
    place-items: center;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--bk-sand);
    color: var(--bk-orange-dark);
    font-size: 13px;
    font-weight: 700;
}

.article-itinerary p {
    margin: 0;
    font-size: 15.5px;
}

/* -------------------------------------------------------------------- FAQ */

.article-faq details {
    border: 1px solid var(--bk-line);
    border-radius: var(--bk-radius-sm);
    background: #fff;
    margin-bottom: 10px;
    overflow: hidden;
}

.article-faq summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 16px 20px;
    font-size: 16px;
    font-weight: 600;
    color: var(--bk-heading);
    cursor: pointer;
    list-style: none;
}

.article-faq summary::-webkit-details-marker {
    display: none;
}

.article-faq summary::after {
    content: "\002B";
    flex: none;
    font-size: 20px;
    font-weight: 400;
    line-height: 1;
    color: var(--bk-orange);
}

.article-faq details[open] summary::after {
    content: "\2212";
}

.article-faq details[open] summary {
    background: var(--bk-cream);
}

.article-faq p {
    margin: 0;
    padding: 4px 20px 18px;
    font-size: 15.5px;
    line-height: 1.75;
    color: var(--bk-muted);
}

/* --------------------------------------------------------- inline CTA card */

.article-cta {
    margin: clamp(34px, 4vw, 50px) 0 0;
    padding: clamp(26px, 3.2vw, 40px);
    border-radius: var(--bk-radius-lg);
    background: linear-gradient(120deg, #1a1512 0%, #2c1d12 100%);
    color: #fff;
}

.article-cta h2 {
    color: #fff;
    margin: 0 0 12px;
    font-size: clamp(22px, 2.4vw, 30px);
}

.article-cta p {
    margin: 0 0 22px;
    color: rgba(255, 255, 255, .82);
    font-size: 16px;
    line-height: 1.75;
}

.article-cta__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.article-foot {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    margin-top: clamp(30px, 3.5vw, 44px);
    padding-top: 22px;
    border-top: 1px solid var(--bk-line);
}

.article-foot__updated {
    font-size: 13px;
    color: var(--bk-muted);
    margin: 0;
}

/* -------------------------------------------------------------- right rail */

.article-rail {
    display: flex;
    flex-direction: column;
    gap: 20px;
    min-width: 0;
}

.article-toc {
    border: 1px solid var(--bk-line);
    border-radius: var(--bk-radius);
    background: var(--bk-cream);
    overflow: hidden;
}

.article-toc__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    width: 100%;
    padding: 16px 20px;
    border: 0;
    background: transparent;
    color: var(--bk-heading);
    font: inherit;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .16em;
    text-transform: uppercase;
    text-align: left;
    cursor: pointer;
}

.article-toc__head i {
    color: var(--bk-orange);
    transition: transform .25s ease;
}

.article-toc__head[aria-expanded="false"] i {
    transform: rotate(-90deg);
}

.article-toc__panel {
    padding: 0 12px 14px;
    max-height: min(58vh, 520px);
    overflow-y: auto;
    overscroll-behavior: contain;
    /* Fades the last row so it reads as scrollable rather than cut off. */
    mask-image: linear-gradient(to bottom, #000 calc(100% - 26px), transparent 100%);
    scrollbar-width: thin;
}

.article-toc__panel[hidden] {
    display: none;
}

.article-toc__panel ol {
    margin: 0;
    padding: 0;
    list-style: none;
    counter-reset: toc;
}

.article-toc__panel li {
    margin: 0;
}

.article-toc__panel a {
    display: flex;
    gap: 10px;
    padding: 8px 10px;
    border-radius: 8px;
    color: var(--bk-body);
    font-size: 14px;
    line-height: 1.45;
    text-decoration: none;
    border-left: 2px solid transparent;
    transition: background-color .2s ease, color .2s ease, border-color .2s ease;
}

.article-toc__panel a::before {
    counter-increment: toc;
    content: counter(toc, decimal-leading-zero);
    flex: none;
    font-size: 12px;
    font-weight: 700;
    color: var(--bk-orange);
    padding-top: 2px;
}

.article-toc__panel a:hover,
.article-toc__panel a:focus-visible {
    background: #fff;
    color: var(--bk-orange-dark);
}

.article-toc__panel a.is-current {
    background: #fff;
    border-left-color: var(--bk-orange);
    color: var(--bk-orange-dark);
    font-weight: 600;
}

.rail-card {
    padding: 24px 22px;
    border-radius: var(--bk-radius);
    background: linear-gradient(150deg, #1a1512, #33200f);
    color: #fff;
}

.rail-card h2 {
    color: #fff;
    font-size: 19px;
    margin: 0 0 10px;
}

.rail-card p {
    margin: 0 0 18px;
    font-size: 14.5px;
    line-height: 1.7;
    color: rgba(255, 255, 255, .8);
}

.rail-card .blog-button {
    width: 100%;
    justify-content: center;
    padding-inline: 16px;
}

/* -------------------------------------------------------------- related row */

.related-links {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 18px;
    padding: 0;
    list-style: none;
}

.related-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    border: 1px solid rgba(255, 255, 255, .3);
    border-radius: 999px;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: background-color .25s ease, border-color .25s ease, color .25s ease;
}

.related-link:hover,
.related-link:focus-visible {
    background: #fff;
    border-color: #fff;
    color: var(--bk-heading);
}

/* ==========================================================================
   Responsive
   ========================================================================== */

@media (max-width: 991.98px) {
    .blog-feature {
        grid-template-columns: minmax(0, 1fr);
    }

    .blog-feature__media {
        min-height: 0;
        aspect-ratio: 16 / 9;
    }

    .article-rail {
        position: static;
    }

    /* The rail's booking card would otherwise sit between the table of
       contents and the article. The full-width CTA at the end of the article
       already covers it, so drop the duplicate on small screens. */
    .article-rail .rail-card {
        display: none;
    }

    .article-toc__panel {
        max-height: 46vh;
    }
}

@media (max-width: 767.98px) {
    .blog-hero {
        min-height: 0;
        text-align: left;
    }

    .blog-hero::after {
        display: none;
    }

    .blog-hero__actions .blog-button,
    .blog-cta__actions .blog-button,
    .article-cta__actions .blog-button {
        flex: 1 1 220px;
        justify-content: center;
    }

    .blog-hero__stats {
        gap: 14px 26px;
    }

    .article-hero {
        min-height: 0;
        align-items: flex-start;
    }

    .blog-grid {
        grid-template-columns: minmax(0, 1fr);
    }

    .blog-destinations {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .blog-destination {
        aspect-ratio: 4 / 5;
    }

    .article-body {
        font-size: 16.5px;
        line-height: 1.78;
    }

    .callout {
        flex-direction: column;
        gap: 12px;
    }

    .article-foot {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 419.98px) {
    .blog-destinations {
        grid-template-columns: minmax(0, 1fr);
    }

    .blog-destination {
        aspect-ratio: 16 / 10;
    }

    .blog-feature__body,
    .blog-card__body {
        padding-inline: 18px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .blog-shell *,
    .blog-shell *::before,
    .blog-shell *::after {
        transition-duration: .01ms !important;
        animation-duration: .01ms !important;
    }
}

@media print {
    .article-rail,
    .reading-progress,
    .blog-cta,
    .article-cta {
        display: none !important;
    }

    .article-layout {
        display: block;
    }
}

/* --------------------------------------------- TOC: sections sub-group */

.article-toc__group {
    margin: 14px 10px 6px;
    padding-top: 12px;
    border-top: 1px solid var(--bk-line);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--bk-muted);
}

.article-toc__plain {
    margin: 0;
    padding: 0;
    list-style: none;
}

.article-toc__plain a::before {
    content: none;
}

.article-toc__plain a {
    padding-left: 12px;
}

/* ------------------------------------------- sparse listing companion panel */

.blog-panel {
    display: flex;
    flex-direction: column;
    gap: 14px;
    padding: 26px 26px 28px;
    border: 1px solid var(--bk-line);
    border-radius: var(--bk-radius);
    background: var(--bk-cream);
}

.blog-panel h3 {
    font-size: 19px;
    margin: 0;
}

.blog-panel > p {
    margin: 0;
    font-size: 15px;
    line-height: 1.7;
    color: var(--bk-muted);
}

.blog-panel ul {
    margin: 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 2px;
}

.blog-panel li + li {
    border-top: 1px solid var(--bk-line);
}

.blog-panel li a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding: 12px 2px;
    color: var(--bk-heading);
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
}

.blog-panel li a i {
    color: var(--bk-orange);
    transition: transform .25s ease;
}

.blog-panel li a:hover,
.blog-panel li a:focus-visible {
    color: var(--bk-orange-dark);
}

.blog-panel li a:hover i {
    transform: translateX(4px);
}

@media (min-width: 992px) {
    .blog-panel {
        grid-column: 2 / -1;
    }
}
