﻿
/* ─── Theme Design Tokens ─── */
:root {
    --bs-body-font-family: 'Nunito', sans-serif;
    --bs-heading-font-family: 'Raleway', sans-serif;
    /* Forest / earthy adventure palette */
    --van-950: #0f1a0e; /* deepest pine */
    --van-900: #1a2e18; /* dark forest */
    --van-800: #243d21; /* deep fern */
    --van-700: #2d5229; /* forest green */
    --van-600: #3a6b34; /* mid forest */
    --van-500: #4d8c45; /* leaf green */
    --van-400: #65a85c; /* fresh green */
    --van-300: #8cc484; /* sage */
    --van-200: #b8dab3; /* mint mist */
    --van-100: #e4f2e2; /* pale meadow */
    /* Accent — amber/sunset */
    --amber-600: #d97706;
    --amber-500: #f59e0b;
    --amber-400: #fbbf24;
    --amber-100: #fef3c7;
    /* Terrain tones */
    --dust: #f5f0e8; /* page bg */
    --stone: #e8e0d4; /* borders */
    --bark: #6b5b45; /* warm text */
    --trail: #f0ebe0; /* sidebar hover */
}

body {
    font-family: var(--bs-body-font-family);
    background-color: var(--dust);
    color: #1e2a18;
}

h1, h2, h3, h4, h5, h6, .font-display {
    font-family: 'Raleway', sans-serif;
}

/* ─── NAVBAR ─── */
.navbar-vanepic {
    background: var(--van-900);
    border-bottom: 2px solid var(--van-500);
}

    .navbar-vanepic .navbar-brand {
        font-family: 'Raleway', sans-serif;
        font-weight: 800;
        font-size: 1.35rem;
        letter-spacing: -0.5px;
        color: #fff;
    }

        .navbar-vanepic .navbar-brand span {
            color: var(--amber-400);
        }

    .navbar-vanepic .nav-link {
        color: rgba(255,255,255,.75);
        font-size: .85rem;
        font-weight: 500;
        letter-spacing: .3px;
        padding-right: 1rem !important;
        padding-left: 1rem !important;
        transition: color .2s;
    }

        .navbar-vanepic .nav-link:hover,
        .navbar-vanepic .nav-link.active {
            color: var(--amber-400);
        }

    .navbar-vanepic .btn-sm {
        font-size: .8rem;
        font-weight: 600;
        letter-spacing: .4px;
    }


/* ── Page Hero ── */
.page-hero {
    background: linear-gradient(135deg,var(--van-950) 0%,var(--van-800) 50%,var(--van-600) 100%);
    padding: 0.6rem 0 1rem;
    position: relative;
    overflow: hidden;
}

    .page-hero::after {
        content: '';
        position: absolute;
        inset: 0;
        background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='1440' height='80' viewBox='0 0 1440 80'%3E%3Cpolygon fill='%232d5229' fill-opacity='0.2' points='0,80 180,30 360,55 540,15 720,45 900,10 1080,40 1260,20 1440,35 1440,80'/%3E%3C/svg%3E") no-repeat bottom/cover;
    }

    .page-hero h2 {
        font-size: 1.5rem;
        font-weight: 800;
        color: #fff;
        margin: 0;
        letter-spacing: -.3px;
    }

    .page-hero .result-count {
        font-size: .82rem;
        color: var(--van-200);
    }



/* ─── BREADCRUMB BAR ─── */
.breadcrumb-bar {
    background: var(--van-800);
    border-bottom: 1px solid var(--van-700);
    padding: .45rem 0;
}

.breadcrumb-vanepic {
    font-size: .78rem;
    font-weight: 500;
    margin: 0;
}

    .breadcrumb-vanepic .breadcrumb-item a {
        color: var(--van-300);
        text-decoration: none;
        transition: color .15s;
        display: inline-flex;
        align-items: center;
    }

        .breadcrumb-vanepic .breadcrumb-item a:hover {
            color: var(--amber-400);
        }

    .breadcrumb-vanepic .breadcrumb-item.active {
        color: rgba(255,255,255,.55);
    }

    .breadcrumb-vanepic .breadcrumb-item + .breadcrumb-item::before {
        color: var(--van-500);
        content: "›";
        font-size: 1.5rem;
        line-height: 0.6;
        padding: 0px 8px 0px 0px;
        font-weight: 900;
    }

/* ─── LAYOUT COLUMNS ─── */
.layout-wrap {
    display: grid;
    grid-template-columns: 220px 1fr 240px;
    gap: 0.5rem;
    align-items: start;
}

@media (max-width: 991.98px) {
    .layout-wrap {
        grid-template-columns: 1fr;
    }

    .sidebar-left, .sidebar-right {
        display: none;
    }
}

/* ─── LEFT SIDEBAR ─── */
.sidebar-left .nav-section-title {
    font-family: 'Raleway', sans-serif;
    font-size: .65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.8px;
    color: var(--van-500);
    padding: .5rem .75rem .25rem;
    margin-bottom: .25rem;
}

.sidebar-left .nav-link {
    font-size: .85rem;
    color: #3a4a32;
    padding: 0.1rem 0.75rem;
    border-radius: .4rem;
    display: flex;
    align-items: center;
    gap: .5rem;
    transition: background .15s, color .15s;
}

    .sidebar-left .nav-link:hover,
    .sidebar-left .nav-link.active {
        background: var(--trail);
        color: var(--van-700);
    }

    .sidebar-left .nav-link .bi {
        font-size: .9rem;
        width: 1rem;
        text-align: center;
        color: var(--van-500);
    }

.sidebar-left .badge {
    font-size: .65rem;
    margin-left: auto;
}

.sidebar-card {
    border: 1px solid var(--stone);
    border-radius: .75rem;
    background: #fff;
    overflow: hidden;
}

.sidebar-card-header {
    background: var(--van-800);
    color: #fff;
    font-family: 'Raleway', sans-serif;
    font-size: .8rem;
    font-weight: 700;
    letter-spacing: .5px;
    padding: .6rem .9rem;
    display: flex;
    align-items: center;
    gap: .4rem;
}

/* ─── MAIN CONTENT ─── */
.content-section-title {
    font-family: 'Raleway', sans-serif;
    font-weight: 800;
    font-size: 1.05rem;
    letter-spacing: -.3px;
    color: var(--van-900);
    display: flex;
    align-items: center;
    gap: .5rem;
}

    .content-section-title .bi {
        color: var(--van-500);
    }

.divider-wave {
    border: none;
    height: 2px;
    background: linear-gradient(90deg, var(--van-400), transparent);
    margin: .4rem 0 1rem;
}


.h1-title {
    font-family: 'Raleway', sans-serif;
    font-weight: 800;
    font-size: 1.4rem;
    color: var(--van-900);
    letter-spacing: -.3px;
    display: flex;
    align-items: center;
    gap: .5rem;
}

.h1-title .bi {
    color: var(--van-500);
    font-size: 1.2rem;
}

.h2-title {
    font-family: 'Raleway', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    color: var(--van-800);
    letter-spacing: -.2px;
    display: flex;
    align-items: center;
    gap: .4rem;
    margin-bottom: .25rem;
}

.h2-title .bi {
    color: var(--van-500);
    font-size: .95rem;
}


/* ─── FEATURED CARD ─── */
.featured-card {
    border: 1.5px solid var(--stone);
    border-radius: 1rem;
    background: #fff;
    transition: box-shadow .2s, transform .2s;
    overflow: hidden;
}

    .featured-card:hover {
        box-shadow: 0 8px 30px rgba(45,82,41,.14);
        transform: translateY(-2px);
    }

    .featured-card .card-img-placeholder {
        background: linear-gradient(135deg, var(--van-800), var(--van-500));
        height: 140px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 2.8rem;
        color: rgba(255,255,255,.3);
    }

    .featured-card .card-body {
        padding: .9rem 1rem;
    }

    .featured-card .card-title {
        font-family: 'Raleway', sans-serif;
        font-size: .95rem;
        font-weight: 700;
        margin-bottom: .2rem;
        color: var(--van-900);
    }

    .featured-card .card-text {
        font-size: .8rem;
        color: #6b7a5e;
        line-height: 1.45;
    }

    .featured-card .tag-pill {
        font-size: .68rem;
        font-weight: 600;
        letter-spacing: .3px;
        padding: .2rem .55rem;
        border-radius: 50rem;
    }

.rating-star {
    color: var(--amber-500);
    font-size: .8rem;
}

/* ─── LISTING ROW ─── */
.listing-row {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    padding: .9rem 0;
    border-bottom: 1px solid var(--stone);
}

    .listing-row:last-child {
        border-bottom: none;
    }

.listing-icon-wrap {
    width: 48px;
    height: 48px;
    min-width: 48px;
    border-radius: .65rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    background: var(--van-100);
    color: var(--van-600);
}

.listing-title {
    font-family: 'Raleway', sans-serif;
    font-size: .92rem;
    font-weight: 700;
    color: var(--van-800);
    margin-bottom: .15rem;
}

.listing-meta {
    font-size: .76rem;
    color: #7a8a6e;
}

    .listing-meta .bi {
        font-size: .72rem;
        margin-right: .2rem;
    }

/* ─── RIGHT SIDEBAR ADS ─── */
.ad-box {
    border-radius: .75rem;
    overflow: hidden;
    border: 1px solid var(--stone);
}

.ad-label {
    font-size: .62rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #a0a890;
    text-align: center;
    padding: .2rem 0 .1rem;
}

.ad-banner-tall {
    background: linear-gradient(170deg, var(--van-800) 0%, var(--van-600) 100%);
    min-height: 260px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 1.5rem 1rem;
    text-align: center;
    color: #fff;
}

    .ad-banner-tall .bi {
        font-size: 2.5rem;
        opacity: .5;
        margin-bottom: .5rem;
    }

.ad-banner-sm {
    background: linear-gradient(135deg, var(--amber-600) 0%, var(--amber-500) 100%);
    min-height: 130px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    text-align: center;
    color: #fff;
}

/* ─── BROWSE CHIPS ─── */
.region-chip {
    background: var(--trail);
    border: 1px solid var(--stone);
    border-radius: 50rem;
    padding: .35rem .85rem;
    font-size: .8rem;
    font-weight: 500;
    color: var(--van-700);
    cursor: pointer;
    transition: background .15s, color .15s;
    display: inline-flex;
    align-items: center;
    gap: .35rem;
    text-decoration: none;
}

    .region-chip:hover {
        background: var(--van-500);
        color: #fff;
        border-color: var(--van-500);
    }

/* ─── VAN TYPE GRID (replaces tech-card) ─── */
.tech-card {
    border: 1.5px solid var(--stone);
    border-radius: .85rem;
    padding: 1rem .9rem;
    background: #fff;
    text-align: center;
    cursor: pointer;
    transition: all .2s;
}

    .tech-card:hover {
        border-color: var(--van-400);
        background: var(--van-100);
        transform: translateY(-2px);
        box-shadow: 0 4px 16px rgba(77,140,69,.13);
    }

    .tech-card .bi {
        font-size: 1.7rem;
        color: var(--van-500);
        display: block;
        margin-bottom: .45rem;
    }

    .tech-card .tech-name {
        font-family: 'Raleway', sans-serif;
        font-size: .78rem;
        font-weight: 700;
        color: var(--van-900);
    }

    .tech-card .tech-count {
        font-size: .7rem;
        color: #8a9a7a;
    }

/* ─── NEWS / ARTICLES ─── */
.article-row {
    display: flex;
    gap: .85rem;
    padding: .75rem 0;
    border-bottom: 1px solid var(--stone);
    align-items: flex-start;
    text-decoration: none;
    color: inherit;
}

    .article-row:last-child {
        border-bottom: none;
    }

.article-thumb {
    width: 64px;
    height: 50px;
    min-width: 64px;
    border-radius: .45rem;
    background: linear-gradient(135deg, var(--van-700), var(--van-400));
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,.5);
    font-size: 1.2rem;
}

.article-title {
    font-family: 'Raleway', sans-serif;
    font-size: .85rem;
    font-weight: 700;
    color: var(--van-800);
    line-height: 1.3;
    margin-bottom: .2rem;
}

.article-date {
    font-size: .72rem;
    color: #8a9a7a;
}

/* ─── FOOTER ─── */
.site-footer {
    background: var(--van-950);
    color: rgba(255,255,255,.65);
}

.footer-brand {
    font-family: 'Raleway', sans-serif;
    font-size: 1.3rem;
    font-weight: 800;
    color: #fff;
    letter-spacing: -.4px;
}

    .footer-brand span {
        color: var(--amber-400);
    }

.footer-heading {
    font-family: 'Raleway', sans-serif;
    font-size: .72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.6px;
    color: var(--van-300);
    margin-bottom: .75rem;
}

.footer-link {
    display: block;
    font-size: .82rem;
    color: rgba(255,255,255,.55);
    text-decoration: none;
    padding: .2rem 0;
    transition: color .15s;
}

    .footer-link:hover {
        color: var(--amber-400);
    }

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,.08);
    font-size: .78rem;
    color: rgba(255,255,255,.3);
}

.footer-social a {
    color: rgba(255,255,255,.4);
    font-size: 1.1rem;
    margin-left: .75rem;
    text-decoration: none;
    transition: color .15s;
}

    .footer-social a:hover {
        color: var(--amber-400);
    }

/* ─── UTILITY ─── */
.section-wrap {
    background: #fff;
    border: 1px solid var(--stone);
    border-radius: .85rem;
    padding: 1.1rem 1.2rem 1rem;
}

.verified-badge {
    font-size: .65rem;
    background: #dcfce7;
    color: #15803d;
    border-radius: 50rem;
    padding: .15rem .45rem;
    font-weight: 600;
}

.new-badge {
    font-size: .65rem;
    background: var(--amber-100);
    color: #92400e;
    border-radius: 50rem;
    padding: .15rem .45rem;
    font-weight: 600;
}

.scroll-anchor {
    scroll-margin-top: 70px;
}





/* ── Toolbar ── */
.dir-toolbar {
    background: #fff;
    border: 1px solid var(--stone);
    border-radius: .75rem;
    padding: .65rem 1rem;
    display: flex;
    align-items: center;
    gap: .75rem;
    flex-wrap: wrap;
    margin-bottom: 0.8rem;
}

    .dir-toolbar .result-label {
        font-size: .82rem;
        color: #7a8a6e;
        margin-right: auto;
    }

        .dir-toolbar .result-label strong {
            color: var(--van-800);
            font-weight: 700;
        }


.dir-toolbar2 {
    background: #fff;
    border: 0px;
    border-radius: .75rem;
    padding: 0rem;
    display: flex;
    align-items: center;
    gap: .75rem;
    flex-wrap: wrap;
    margin-bottom: 0rem;
}

.dir-toolbar2 .result-label {
    font-size: .82rem;
    color: #7a8a6e;
    margin-right: auto;
}

    .dir-toolbar2 .result-label strong {
        color: var(--van-800);
        font-weight: 700;
    }

.view-btn {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: .4rem;
    border: 1px solid var(--stone);
    color: #6b7a5e;
    cursor: pointer;
    transition: all .15s;
    background: #fff;
    font-size: 1rem;
}

    .view-btn.active, .view-btn:hover {
        background: var(--van-500);
        border-color: var(--van-500);
        color: #fff;
    }

.sort-select {
    font-size: .82rem;
    border-radius: .4rem;
    border: 1px solid var(--stone);
    padding: .3rem .6rem;
    color: #3a4a32;
    background: #fff;
}

/* ── Grid Card ── */
.dir-card {
    border: 1.5px solid var(--stone);
    border-radius: 1rem;
    background: #fff;
    transition: box-shadow .2s,transform .2s;
    overflow: hidden;
    height: 100%;
    display: block;
    text-decoration: none;
    color: inherit;
}

    .dir-card:hover {
        box-shadow: 0 6px 28px rgba(45,82,41,.14);
        transform: translateY(-2px);
        color: inherit;
    }

    .dir-card .card-thumb {
        height: 130px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 2.6rem;
        color: rgba(255,255,255,.3);
        position: relative;
    }

        .dir-card .card-thumb .thumb-badge {
            position: absolute;
            top: .55rem;
            left: .55rem;
            font-size: .63rem;
            font-weight: 700;
            padding: .2rem .5rem;
            border-radius: 50rem;
        }

        .dir-card .card-thumb .thumb-type {
            position: absolute;
            bottom: .55rem;
            right: .55rem;
            font-size: .65rem;
            background: rgba(0,0,0,.35);
            color: #fff;
            padding: .2rem .55rem;
            border-radius: 50rem;
            backdrop-filter: blur(4px);
        }

    .dir-card .card-body {
        padding: .9rem 1rem .8rem;
    }

    .dir-card .card-name {
        font-family: 'Raleway',sans-serif;
        font-size: .94rem;
        font-weight: 700;
        color: var(--van-900);
        margin-bottom: .15rem;
    }

    .dir-card .card-loc {
        font-size: .76rem;
        color: #7a8a6e;
        margin-bottom: .5rem;
    }

    .dir-card .card-desc {
        font-size: .79rem;
        color: #5a6a4e;
        line-height: 1.45;
        margin-bottom: .6rem;
    }

    .dir-card .card-footer-strip {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding-top: .5rem;
        border-top: 1px solid var(--stone);
    }

.rating-star {
    color: var(--amber-500);
    font-size: .78rem;
}

.tag-pill {
    font-size: .67rem;
    font-weight: 600;
    padding: .18rem .48rem;
    border-radius: 5px;
}

.verified-badge {
    font-size: .63rem;
    background: #dcfce7;
    color: #15803d;
    border-radius: 50rem;
    padding: .13rem .42rem;
    font-weight: 600;
}

.new-badge {
    font-size: .63rem;
    background: var(--amber-100);
    color: #92400e;
    border-radius: 50rem;
    padding: .13rem .42rem;
    font-weight: 600;
}

/* ── List Item ── */
.list-item {
    background: #fff;
    border: 1.5px solid var(--stone);
    border-radius: .85rem;
    padding: 1rem 1.1rem;
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    transition: box-shadow .2s;
    margin-bottom: .65rem;
    text-decoration: none;
    color: inherit;
}

    .list-item:hover {
        box-shadow: 0 4px 20px rgba(45,82,41,.11);
        color: inherit;
    }

.list-icon {
    width: 54px;
    height: 54px;
    min-width: 54px;
    border-radius: .65rem;
    background: var(--van-100);
    color: var(--van-600);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.list-name {
    font-family: 'Raleway',sans-serif;
    font-size: .95rem;
    font-weight: 700;
    color: var(--van-900);
    margin-bottom: .15rem;
}

.list-meta {
    font-size: .76rem;
    color: #7a8a6e;
    margin-bottom: .35rem;
}

    .list-meta .bi {
        font-size: .7rem;
        margin-right: .15rem;
    }

.list-desc {
    font-size: .8rem;
    color: #5a6a4e;
    line-height: 1.45;
}

.list-actions {
    margin-left: auto;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: .4rem;
    min-width: 95px;
}

/* ── Pagination ── */
.page-link {
    font-family: 'Raleway',sans-serif;
    font-size: .83rem;
    font-weight: 600;
    color: var(--van-600);
    border: 1.5px solid var(--stone);
    border-radius: .45rem !important;
    margin: 0 .15rem;
    padding: .42rem .72rem;
    transition: all .15s;
}

    .page-link:hover {
        background: var(--van-100);
        border-color: var(--van-300);
        color: var(--van-700);
    }

.page-item.active .page-link {
    background: var(--van-500);
    border-color: var(--van-500);
    color: #fff;
}

.page-item.disabled .page-link {
    opacity: .4;
}

/* ── Extracted inline styles ── */
.inline-icon-align {
    vertical-align: middle;
    margin-right: 7px;
    margin-bottom: 2px;
}

.nav-icon-sm {
    font-size: .7rem;
}

.btn-amber {
    background: var(--amber-400);
    border-color: var(--amber-400);
}

.z-above {
    z-index: 1;
}

.hero-icon-accent {
    color: var(--amber-400);
    font-size: 1.2rem;
}

.hero-search-wrap {
    max-width: 360px;
    flex: 1 1 260px;
}

.search-input-pill {
    border-radius: 50rem 0 0 50rem;
    border: none;
    font-size: .85rem;
    background: rgba(255,255,255,.95);
}

.search-btn-pill {
    border-radius: 0 50rem 50rem 0;
    font-size: .85rem;
    background: var(--amber-500);
    border-color: var(--amber-500);
    color: #fff;
}

.browse-label {
    font-size: .75rem;
    font-weight: 600;
    letter-spacing: .5px;
}

.badge-green-soft {
    background: var(--van-100);
    color: var(--van-600);
}

.badge-amber-soft {
    background: var(--amber-100);
    color: var(--amber-600);
}

.tag-badge-green {
    font-size: .72rem;
    padding: .25rem .5rem;
    background: var(--van-100);
    color: var(--van-700);
}

.text-sm {
    font-size: .8rem;
}

.text-accent-green {
    color: var(--van-500);
}

.thumb-green-gradient {
    background: linear-gradient(135deg,var(--van-800),var(--van-500));
}

.thumb-green-event {
    background: linear-gradient(135deg, #e2eae1, #ecf2ef);
}

.badge-verified-green {
    background: #dcfce7;
    color: #15803d;
}

.tag-pill-green {
    background: var(--van-100);
    color: var(--van-700);
}

.thumb-brown-gradient {
    background: linear-gradient(135deg,#3b1f0a,#a05c2a);
}

.badge-red-soft {
    background: #fee2e2;
    color: #991b1b;
}

.thumb-teal-gradient {
    background: linear-gradient(135deg,#1e3a5f,#2d7a5e);
}

.badge-amber-warm {
    background: var(--amber-100);
    color: #92400e;
}

.badge-blue-soft {
    background: #e0f2fe;
    color: #0369a1;
}

.thumb-emerald-gradient {
    background: linear-gradient(135deg,#065f46,#10b981);
}

.thumb-rust-gradient {
    background: linear-gradient(135deg,#7c2d12,#d97706);
}

.thumb-purple-gradient {
    background: linear-gradient(135deg,#3b0764,#6d28d9);
}

.thumb-dark-teal-gradient {
    background: linear-gradient(135deg,#134e4a,#0d9488);
}

.badge-purple-soft {
    background: #f3e8ff;
    color: #7c3aed;
}

.thumb-indigo-gradient {
    background: linear-gradient(135deg,var(--van-700),#8b5cf6);
}

.thumb-navy-gradient {
    background: linear-gradient(135deg,#0c4a6e,#0369a1);
}

.thumb-caramel-gradient {
    background: linear-gradient(135deg,#78350f,#d97706);
}

.thumb-forest-teal-gradient {
    background: linear-gradient(135deg,#1e3a5f,#065f46);
}

.thumb-dark-brown-gradient {
    background: linear-gradient(135deg,#3b1f0a,#92400e);
}

.hidden {
    display: none;
}

.btn-outline-green-sm {
    font-size: .75rem;
    white-space: nowrap;
    background: var(--van-100);
    color: var(--van-700);
    border: 1px solid var(--van-300);
}

.pagination-info {
    font-size: .8rem;
    color: #7a8a6e;
}

.text-dark-green {
    color: #1e2a18;
}

.select-auto-width {
    font-size: .78rem;
}

.select-sm-auto {
    font-size: .78rem;
    width: auto;
}

.text-xs {
    font-size: .75rem;
}

.tag-pill-green-xs {
    font-size: .68rem;
    padding: .15rem .45rem;
    border-radius: 50rem;
    background: var(--van-100);
    color: var(--van-700);
}

.tag-pill-amber-xs {
    font-size: .68rem;
    padding: .15rem .45rem;
    border-radius: 50rem;
    background: var(--amber-100);
    color: var(--amber-600);
}

.tag-pill-emerald-xs {
    font-size: .68rem;
    padding: .15rem .45rem;
    border-radius: 50rem;
    background: #dcfce7;
    color: #15803d;
}

.btn-outline-green-xs {
    font-size: .75rem;
    white-space: nowrap;
    color: var(--van-600);
    border-color: var(--van-400);
}

.tag-pill-blue-xs {
    font-size: .68rem;
    padding: .15rem .45rem;
    border-radius: 50rem;
    background: #e0f2fe;
    color: #0369a1;
}

.tag-pill-purple-xs {
    font-size: .68rem;
    padding: .15rem .45rem;
    border-radius: 50rem;
    background: #f3e8ff;
    color: #7c3aed;
}

.btn-outline-green-border {
    border: 2px solid var(--van-400);
    color: var(--van-600);
    border-radius: .6rem;
}

.region-emoji {
    font-size: 2rem;
}

.region-label {
    font-family: 'Raleway',sans-serif;
    font-size: .88rem;
}

.btn-explore-sm {
    font-size: .72rem;
    border: 1.5px solid var(--van-400);
    color: var(--van-600);
}

.upcoming-card-green {
    background: #f0fdf4;
    border: 1px solid #bbf7d0;
}

.upcoming-icon-green {
    background: #dcfce7;
    color: #15803d;
    min-width: 44px;
    width: 44px;
    height: 44px;
}

.badge-xs {
    font-size: .65rem;
}

.upcoming-card-amber {
    background: var(--amber-100);
    border: 1px solid #fde68a;
}

.upcoming-icon-yellow {
    background: #fef9c3;
    color: #b45309;
    min-width: 44px;
    width: 44px;
    height: 44px;
}

.upcoming-card-blue {
    background: #eff6ff;
    border: 1px solid #bfdbfe;
}

.upcoming-icon-blue {
    background: #dbeafe;
    color: #1d4ed8;
    min-width: 44px;
    width: 44px;
    height: 44px;
}

.upcoming-card-purple {
    background: #fdf4ff;
    border: 1px solid #e9d5ff;
}

.upcoming-icon-purple {
    background: #f3e8ff;
    color: #7c3aed;
    min-width: 44px;
    width: 44px;
    height: 44px;
}

.badge-analysis {
    font-size: .65rem;
    background: #dcfce7;
}

.thumb-sunset-gradient {
    background: linear-gradient(135deg,#3b1f0a,#d97706);
}

.newsletter-bg {
    background: linear-gradient(135deg, var(--van-900) 0%, var(--van-600) 100%);
}

.newsletter-icon {
    font-size: 2rem;
    color: var(--amber-400);
}

.newsletter-heading {
    font-family: 'Raleway',sans-serif;
}

.newsletter-subtext {
    font-size: .84rem;
}

.newsletter-input {
    max-width: 280px;
    border-radius: 50rem 0 0 50rem;
    font-size: .85rem;
}

.newsletter-btn {
    border-radius: 0 50rem 50rem 0;
    font-size: .85rem;
    font-weight: 600;
    background: var(--amber-500);
    border-color: var(--amber-500);
    color: #fff;
}

.newsletter-fine-print {
    font-size: .72rem;
}

.ad-title {
    font-family: 'Raleway',sans-serif;
    font-weight: 700;
    font-size: 1rem;
    margin-bottom: .3rem;
}

.ad-subtitle {
    font-size: .78rem;
    opacity: .7;
    margin-bottom: .75rem;
}

.ad-btn-amber {
    font-size: .75rem;
    background: var(--amber-400);
    border-color: var(--amber-400);
}

.ad-icon-faded {
    font-size: 1.6rem;
    opacity: .5;
    margin-bottom: .35rem;
}

.ad-title-sm {
    font-family: 'Raleway',sans-serif;
    font-weight: 700;
    font-size: .88rem;
    margin-bottom: .2rem;
}

.ad-subtitle-sm {
    font-size: .73rem;
    opacity: .8;
    margin-bottom: .6rem;
}

.ad-btn-sm {
    font-size: .72rem;
    font-weight: 600;
}

.sidebar-cta-icon {
    font-size: 2rem;
    color: var(--van-500);
}

.sidebar-cta-text {
    font-size: .78rem;
    color: #4a5a3a;
    line-height: 1.45;
}

.sidebar-cta-btn {
    font-size: .8rem;
    background: var(--van-500);
    border-color: var(--van-500);
}

.sidebar-cta-note {
    font-size: .7rem;
    color: #8a9a7a;
}

.ad-banner-dark {
    background: linear-gradient(135deg,var(--van-900),var(--van-700));
}

.trending-row {
    padding: .55rem 0;
}

.trending-icon-default {
    width: 36px;
    height: 36px;
    min-width: 36px;
    font-size: 1rem;
}

.trending-icon-amber {
    width: 36px;
    height: 36px;
    min-width: 36px;
    font-size: 1rem;
    background: var(--amber-100);
    color: var(--amber-600);
}

.trending-row-last {
    padding: .55rem 0;
    border-bottom: none;
}

.trending-icon-blue {
    width: 36px;
    height: 36px;
    min-width: 36px;
    font-size: 1rem;
    background: #e0f2fe;
    color: #0369a1;
}

.footer-logo-icon {
    vertical-align: middle;
    margin-right: 7px;
    margin-bottom: 3px;
}

.footer-tagline {
    font-size: .82rem;
    line-height: 1.6;
    color: rgba(255,255,255,.45);
}

.footer-van-icon {
    vertical-align: middle;
    margin-right: 4px;
    opacity: .5;
}

/* ── Article section inline styles ── */
.article-badge-category {
    font-size: .7rem;
    font-weight: 700;
    letter-spacing: .4px;
    padding: 5px;
}

.article-badge-read-time {
    font-size: .7rem;
    font-weight: 600;
    background: var(--van-100);
    color: var(--van-600);
}

.article-badge-level {
    font-size: .7rem;
    font-weight: 600;
    background: var(--amber-100);
    color: #92400e;
}

.article-heading {
    font-family: 'Raleway', sans-serif;
    font-weight: 800;
    font-size: 1.55rem;
    color: var(--van-900);
    line-height: 1.3;
    letter-spacing: -.4px;
}

.article-deck {
    font-size: .88rem;
    color: #6b7a5e;
    margin-top: .5rem;
    line-height: 1.55;
}

.article-author-border {
    border-top: 1px solid var(--stone);
}

.article-author-avatar {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--van-700), var(--van-400));
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 700;
    font-size: .9rem;
    flex-shrink: 0;
}

.article-author-name {
    font-family: 'Raleway', sans-serif;
    font-size: .85rem;
    font-weight: 700;
    color: var(--van-800);
}

.article-author-meta {
    font-size: .75rem;
    color: #8a9a7a;
}

.article-action-btn {
    font-size: .75rem;
    border: 1px solid var(--stone);
    color: var(--van-600);
    background: #fff;
    border-radius: .45rem;
}

.article-hero-image {
    height: 220px;
    background: linear-gradient(135deg, var(--van-900) 0%, var(--van-600) 100%);
}

.article-hero-icon {
    font-size: 2.5rem;
    color: rgba(255,255,255,.2);
}

.article-hero-caption {
    font-size: .75rem;
    color: rgba(255,255,255,.3);
    margin-top: .4rem;
}

.article-hero-dimensions {
    font-size: .7rem;
    color: rgba(255,255,255,.2);
}

.article-body-text {
    font-size: .92rem;
    line-height: 1.8;
    color: #2e3d24;
}

.callout-green {
    background: var(--van-100);
    border-left: 3px solid var(--van-500);
}

.callout-icon-green {
    color: var(--van-500);
    font-size: 1.1rem;
    margin-top: .1rem;
    flex-shrink: 0;
}

.callout-text-green {
    font-size: .84rem;
    color: var(--van-800);
    line-height: 1.55;
}

.article-subheading {
    font-family: 'Raleway', sans-serif;
    font-weight: 800;
    font-size: 1.15rem;
    color: var(--van-900);
    margin-top: 1.75rem;
    margin-bottom: .6rem;
}

.article-inline-image {
    height: 150px;
    background: linear-gradient(135deg, #1e3a5f, #2d6a5e);
}

.article-inline-icon {
    font-size: 2rem;
    color: rgba(255,255,255,.25);
}

.article-inline-caption {
    font-size: .72rem;
    color: rgba(255,255,255,.25);
    margin-top: .3rem;
}

.article-image-credit {
    font-size: .76rem;
    color: #8a9a7a;
    text-align: center;
    margin-top: -.5rem;
    margin-bottom: 1.25rem;
}

.section-title-sm {
    font-size: .85rem;
}

.table-scroll-wrap {
    overflow-x: auto;
}

.budget-table {
    font-size: .82rem;
    border: 1px solid var(--stone);
    border-radius: .65rem;
    overflow: hidden;
}

.table-head-dark {
    background: var(--van-900);
    color: #fff;
}

.table-th-cell {
    font-family: 'Raleway', sans-serif;
    font-weight: 700;
    padding: .55rem .9rem;
}

.table-body-white {
    background: #fff;
}

.table-row-tinted {
    background: var(--dust);
}

.table-row-green-tint {
    background: var(--van-100);
}

.table-font-display {
    font-family: 'Raleway', sans-serif;
}

.table-total-accent {
    color: var(--van-600);
    font-family: 'Raleway', sans-serif;
}

.callout-amber {
    background: #fef3c7;
    border-left: 3px solid var(--amber-500);
}

.callout-icon-amber {
    color: var(--amber-500);
    font-size: 1.1rem;
    margin-top: .1rem;
    flex-shrink: 0;
}

.callout-text-amber {
    font-size: .84rem;
    color: #78350f;
    line-height: 1.55;
}

.article-tags-border {
    border-top: 1px solid var(--stone);
}

.article-tags-label {
    font-size: .72rem;
    color: #8a9a7a;
    align-self: center;
}

/* ── List Card (image-left layout) ── */
.list-card {
    display: flex;
    background: #fff;
    border: 1.5px solid var(--stone);
    border-radius: 1rem;
    overflow: hidden;
    margin-bottom: .75rem;
    text-decoration: none;
    color: inherit;
    transition: box-shadow .2s, transform .2s;
}

    .list-card:hover {
        box-shadow: 0 6px 28px rgba(45,82,41,.13);
        transform: translateY(-2px);
        color: inherit;
    }

.list-card-image {
    width: 200px;
    min-width: 200px;
    position: relative;
    flex-shrink: 0;
    overflow: hidden;
}

    .list-card-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }

.list-card-badge {
    position: absolute;
    top: .6rem;
    left: .6rem;
    font-size: .62rem;
    font-weight: 700;
    padding: .2rem .5rem;
    border-radius: 50rem;
}

.list-card-type {
    position: absolute;
    bottom: .6rem;
    left: .6rem;
    font-size: .65rem;
    background: rgba(0,0,0,.35);
    color: #fff;
    padding: .2rem .55rem;
    border-radius: 50rem;
    backdrop-filter: blur(4px);
}

.list-card-body {
    flex: 1;
    padding: 1rem 1.1rem .9rem;
    display: flex;
    flex-direction: column;
    gap: .45rem;
    min-width: 0;
}

.list-card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: .75rem;
}

.list-card-name {
    font-family: 'Raleway', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: var(--van-900);
    margin-bottom: .1rem;
    line-height: 1.2;
}

.list-card-loc {
    font-size: .76rem;
    color: #7a8a6e;
}

.list-card-rating {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: .1rem;
    flex-shrink: 0;
}

.rating-count {
    font-family: 'Raleway', sans-serif;
    font-size: .72rem;
    font-weight: 700;
    color: var(--amber-600);
}





.list-card-meta {
    display: flex;
    flex-wrap: wrap;
    gap: .25rem .85rem;
}

    .list-card-meta span {
        font-size: .90rem;
        color: #7a8a6e;
        display: inline-flex;
        align-items: center;
        gap: .28rem;
    }

        .list-card-meta span .bi {
            color: var(--van-500);
        }

        .list-card-meta span.event-meta-text {
            font-family: 'Raleway', sans-serif;
            color: var(--amber-600);
        }

.list-card-desc {
    font-size: .9rem;
    color: #5a6a4e;
    line-height: 1.5;
    margin: 0;
}

.list-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: .5rem;
    border-top: 1px solid var(--stone);
    gap: .5rem;
    flex-wrap: wrap;
    margin-top: auto;
}

.list-card-tags {
    display: flex;
    flex-wrap: wrap;
    gap: .3rem;
}

.list-card-btn {
    flex-shrink: 0;
}

@media (max-width: 600px) {
    .list-card {
        flex-direction: column;
    }

    .list-card-image {
        width: 100%;
        min-width: unset;
        height: 160px;
    }

    .list-card-type {
        left: auto;
        right: .6rem;
    }
}


.list-card-image-event {
    width: 100px;
    min-width: 100px;
    display: flex;
    align-items: baseline;
    justify-content: center;
    font-size: 3rem;
    color: #15803d;
    position: relative;
    flex-shrink: 0;
    padding-top: 15px;
}

.list-card-image-event img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

@media (max-width: 600px) {


    .list-card-image-event {
        width: 100%;
        min-width: unset;
        height: 100px;
        align-items: start;
        justify-content: start;
        padding-left: 20px;
    }
}

/* Country/region heading with clickable link */
.browse-categories-title {
    font-family: 'Raleway', sans-serif;
    font-size: .78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.6px;
    color: var(--van-500);
    margin-bottom: .55rem;
    display: flex;
    align-items: center;
    gap: .35rem;
}

.browse-categories-title::before {
    content: '';
    display: inline-block;
    width: 3px;
    height: 14px;
    background: var(--van-400);
    border-radius: 2px;
    flex-shrink: 0;
}

.browse-categories-title a {
    color: var(--van-700);
    text-decoration: none;
    transition: color .15s;
}

.browse-categories-title a:hover {
    color: var(--amber-600);
}

/* Region/state button grid — 5-column aligned layout */
.button-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: .4rem;
}

.category-button {
    display: flex;
    align-items: start;
    justify-content: left;
    text-align: left;
    width: 100%;
    padding: .32rem .5rem;
    border-radius: .45rem;
    border: 1.5px solid var(--stone);
    background: var(--trail);
    color: var(--van-700);
    font-size: .79rem;
    font-weight: 500;
    font-family: 'Nunito', sans-serif;
    text-decoration: none;
    transition: background .15s, border-color .18s, color .15s, box-shadow .18s, transform .12s;
    line-height: 1.3;
    gap: .4rem;
}

    .category-button:hover {
        background: var(--van-700);
        border-color: var(--van-500);
        color: #fff;
        box-shadow: 0 2px 8px rgba(77,140,69,.22);
        transform: translateY(-1px);
    }

.category-button:active {
    transform: translateY(0);
    box-shadow: none;
}

.category-button:hover .bi {
    color: var(--amber-400);
}

/* ── Divider between location blocks ── */
.browse-categories-section + .browse-categories-section {
    padding-top: .25rem;
}

.btn-accent {
    --bs-btn-color: var(--van-700);
    --bs-btn-border-color: var(--van-700);
    --bs-btn-hover-color: #fff;
    --bs-btn-hover-bg: var(--van-700);
    --bs-btn-hover-border-color: var(--van-700);
    --bs-btn-active-color: #fff;
    --bs-btn-active-bg: #1a3318;
    --bs-btn-active-border-color: #1a3318;
    --bs-btn-focus-shadow-rgb: 45, 82, 41;
    background-color: var(--trail);
    font-family: 'Raleway', sans-serif;
    font-weight: 500;
    font-size: .83rem;
    letter-spacing: .2px;
}

    .btn-accent.always-hover {
        background: var(--van-700);
        border-color: var(--van-500);
        color: #fff;
        box-shadow: 0 2px 8px rgba(77,140,69,.22);
    }

    .btn-accent:hover .bi,
    .btn-accent:focus .bi {
        color: var(--amber-400);
    }

    .accent-color {
        color: var(--amber-600);
    }

/* ── Responsive: fewer columns on small screens ── */
@media (max-width: 767.98px) {

    .button-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 479.98px) {
    .button-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .category-button {
        font-size: .82rem;
    }
}