/* ═══════════════════════════════════════════════════════════
   HOMEPAGE – WorldsMarathons-inspired layout
   ═══════════════════════════════════════════════════════════ */

/* ── Full-bleed helper (break out of 1280px container) ── */
.hp-full-bleed {
    width: 100%;
    max-width: 100% !important; /* override .rz-page-width > * constraint */
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    /* cancel any auto margins from parent rule */
    margin-left: 0 !important;
    margin-right: 0 !important;
}

/* ── Inner container ─────────────────────────────────── */
.hp-inner {
    width: 100%;
    max-width: 100% !important;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    margin-left: 0 !important;
    margin-right: 0 !important;
    padding: 0;
}

.hp-inner--popular {
    width: 100%;
    max-width: 100% !important;
}

/* ════════════════════════════════════════════════════════
   1. HERO SECTION  – WM style: full-bleed photo with
      bottom-left text overlay
   ════════════════════════════════════════════════════════ */
.hp-hero {
    background:
        linear-gradient(to top, rgba(5,25,12,0.88) 0%, rgba(5,25,12,0.52) 40%, rgba(0,0,0,0.08) 100%),
        url('/images/hp-hero-mountain-runners.png') center center / cover no-repeat;
    min-height: 500px;
    padding: 0;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: flex-end;  /* text sits at bottom, like WM */
}

/* Light mode: white fade gradient overlay with subtle glow */
:root:not([data-theme="dark"]) .rz-home-v2 .hp-hero {
    background:
        linear-gradient(90deg, rgba(255,255,255,0.85) 0%, rgba(255,255,255,0.85) 40%, rgba(255,255,255,0) 60%, transparent 100%),
        linear-gradient(to top, rgba(5,25,12,0.88) 0%, rgba(5,25,12,0.52) 40%, rgba(0,0,0,0.08) 100%),
        url('/images/hp-hero-mountain-runners.png') center center / cover no-repeat !important;
}
/* Decorative diagonal lines texture */
.hp-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: repeating-linear-gradient(
        -45deg,
        transparent,
        transparent 40px,
        rgba(255,255,255,0.018) 40px,
        rgba(255,255,255,0.018) 41px
    );
    pointer-events: none;
}
/* ── Category sub-nav ─────────────────────────────────── */
.hp-cat-nav {
    background: #f3fbf6;
    border-bottom: 1px solid #d2eadb;
}
.hp-cat-nav-inner {
    width: 85%;
    max-width: none;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 0;
    overflow-x: auto;
}
.hp-cat-nav-inner::-webkit-scrollbar { display: none; }
.hp-cat-link {
    padding: 10px 16px;
    font-size: .84rem;
    font-weight: 700;
    letter-spacing: .01em;
    color: #365244;
    text-decoration: none;
    white-space: nowrap;
    border: 1px solid #c9e7d3;
    border-radius: 999px;
    background: linear-gradient(135deg, #ffffff, #f6fff9);
    box-shadow: 0 1px 3px rgba(0,0,0,.05);
    transition: color .15s, border-color .15s, background .15s, transform .15s, box-shadow .15s;
    display: inline-flex;
    align-items: center;
}
.hp-cat-link:hover {
    color: #0f7a3a;
    border-color: #149a4b;
    background: #ecfdf3;
    transform: translateY(-1px);
    box-shadow: 0 4px 10px rgba(20,154,75,.12);
}
.hp-cat-link.is-active {
    color: #fff !important;
    border-color: #149a4b;
    background: linear-gradient(135deg, #149a4b, #0f7a3a);
    box-shadow: 0 6px 14px rgba(20,154,75,.25);
}
.hp-cat-link:focus-visible {
    outline: 2px solid #86efac;
    outline-offset: 2px;
}

/* ── Hero CTA button ──────────────────────────────────── */
.hero-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #149a4b;
    color: #fff !important;
    padding: 13px 28px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    transition: background .18s, transform .18s;
    margin-top: 4px;
}
.hero-cta-btn:hover { background: #0f7a3a; color: #fff; transform: translateY(-2px); }

/* Scattered dots accent (top-right) */
.hp-hero::after {
    content: '';
    position: absolute;
    top: 0; right: 0;
    width: 45%;
    height: 100%;
    background:
        radial-gradient(circle at 70% 20%, rgba(74,222,128,0.12) 0%, transparent 55%),
        radial-gradient(circle at 90% 60%, rgba(20,154,75,0.08) 0%, transparent 40%);
    pointer-events: none;
}

/* Inner wrapper – aligns content like WM (left-aligned) */
.hp-hero-inner {
    position: relative;
    z-index: 1;
    width: 85%;
    max-width: none;
    margin: 0 auto;
    padding: 56px 0 48px;
}
.hp-hero h1 {
    font-family: 'Manrope', sans-serif;
    font-size: clamp(2.2rem, 4.5vw, 3.8rem);
    font-weight: 900;
    color: #fff;
    margin: 0 0 10px;
    line-height: 1.08;
    max-width: 680px;
    letter-spacing: -0.02em;
}
/* WM italicises a word in the headline */
.hp-hero h1 em {
    font-style: italic;
    color: #4ade80;
}
.hp-hero p.lead {
    color: rgba(255,255,255,.78);
    font-size: 1.05rem;
    margin: 0 0 28px;
    max-width: 500px;
}

/* Search bar – slim horizontal bar like WM navbar search */
.hero-search-bar {
    display: flex;
    align-items: center;
    background: rgba(255,255,255,0.96);
    border-radius: 10px;
    max-width: 600px;
    overflow: hidden;
    box-shadow: 0 8px 40px rgba(0,0,0,.35);
}
.hero-search-input {
    flex: 1;
    padding: 15px 20px;
    border: none;
    font-size: 1rem;
    color: #111827;
    outline: none;
    background: transparent;
}
.hero-search-input::placeholder { color: #9ca3af; }
.hero-search-btn {
    background: #149a4b;
    color: #fff;
    border: none;
    padding: 15px 28px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    white-space: nowrap;
    transition: background .18s;
    display: flex;
    align-items: center;
    gap: 6px;
}
.hero-search-btn:hover { background: #0f7a3a; }

/* ════════════════════════════════════════════════════════
   2. TRUST BAR  – exactly 3 items like WM
   ════════════════════════════════════════════════════════ */
.hp-trust-bar {
    background: #f7fcf9;
    border-bottom: 1px solid #d6eadf;
    padding: 14px 32px;
}
.hp-trust-bar-inner {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 48px;
    flex-wrap: wrap;
    width: 85%;
    max-width: none;
    margin: 0 auto;
}
.trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: .86rem;
    font-weight: 600;
    color: #374151;
}
.trust-item .trust-icon {
    width: 26px;
    height: 26px;
    background: #ecfdf5;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.trust-item .trust-icon i { color: #149a4b; font-size: .9rem; }

/* ════════════════════════════════════════════════════════
   3. SECTION HEADING SHARED
   ════════════════════════════════════════════════════════ */
.hp-section {
    width: 85vw;
    max-width: 85vw;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    margin-left: 0;
    margin-right: 0;
    padding: 40px 0 24px;
}
.hp-section-head {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    margin-bottom: 20px;
    flex-wrap: wrap;
    gap: 8px;
}
.hp-section-head h2 {
    font-family: 'Manrope', sans-serif;
    font-size: 1.4rem;
    font-weight: 800;
    color: #111827;
    margin: 0;
}
.hp-section-head h2 .sh-count {
    display: inline-block;
    background: #149a4b;
    color: #fff;
    font-size: .72rem;
    font-weight: 700;
    padding: 2px 9px;
    border-radius: 20px;
    vertical-align: middle;
    margin-left: 8px;
}
.hp-section-head a.show-all {
    font-size: .85rem;
    font-weight: 700;
    color: #149a4b;
    text-decoration: none;
    white-space: nowrap;
}
.hp-section-head a.show-all:hover { text-decoration: underline; }

/* ════════════════════════════════════════════════════════
   4. POPULAR EVENTS – horizontal scroll row
   ════════════════════════════════════════════════════════ */
.pop-scroll-wrap {
    position: relative;
}
.pop-scroll {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    flex-wrap: nowrap;
}
.pop-scroll::-webkit-scrollbar { height: 5px; }
.pop-scroll::-webkit-scrollbar-track { background: #f3f4f6; border-radius: 4px; }
.pop-scroll::-webkit-scrollbar-thumb { background: #149a4b; border-radius: 4px; }
.pop-card {
    flex: 0 0 calc((100% - 64px) / 5);
    max-width: calc((100% - 64px) / 5);
    scroll-snap-align: start;
    background: #fff;
    border-radius: 14px;
    border: 1px solid #eef0f5;
    box-shadow: 0 2px 8px rgba(0,0,0,.06);
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    transition: transform .18s, box-shadow .18s;
    display: flex;
    flex-direction: column;
}
.pop-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0,0,0,.12);
    color: inherit;
    text-decoration: none;
}
.pop-card-img {
    width: 100%;
    aspect-ratio: 3 / 1;
    object-fit: cover;
    background: linear-gradient(135deg, #e5f9ee, #ccfbdf);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    color: #9ca3af;
    font-size: 2rem;
}
.pop-card-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.pop-card-body { padding: 14px; flex: 1; display: flex; flex-direction: column; }
.pop-card-head {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
    min-width: 0;
}
.pop-card-badges { display: flex; gap: 5px; flex-wrap: wrap; margin-bottom: 0; flex: 0 0 auto; }
.pop-card-badge {
    font-size: .68rem;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: .03em;
}
.pop-card-title {
    font-weight: 700;
    font-size: .95rem;
    color: #111827;
    margin: 0;
    line-height: 1.3;
    min-width: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.pop-card-meta {
    font-size: .78rem;
    color: #6b7280;
    display: flex;
    flex-direction: row;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 0;
}
.pop-card-meta span { display: flex; align-items: center; gap: 5px; }
.pop-card-price {
    font-size: .82rem;
    font-weight: 700;
    color: #149a4b;
    margin-top: auto;
    padding-top: 8px;
}

/* Scroll nav arrows */
.scroll-nav {
    display: flex;
    gap: 8px;
    position: absolute;
    right: 0;
    top: -52px;
}
.scroll-arrow {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: 1.5px solid #d1d5db;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all .18s;
    font-size: .9rem;
    color: #374151;
}
.scroll-arrow:hover { background: #149a4b; color: #fff; border-color: #149a4b; }

/* ════════════════════════════════════════════════════════
   6. RACE DESTINATIONS  – replaces category pills
      Image-card grid, one per race type (like WM's
      "Race Destinations" section)
   ════════════════════════════════════════════════════════ */
.hp-destinations {
    padding: 40px 0 8px;
}
.hp-destinations-head {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    margin-bottom: 20px;
    flex-wrap: wrap;
    gap: 8px;
}
.hp-destinations-head h2 {
    font-family: 'Manrope', sans-serif;
    font-size: 1.4rem;
    font-weight: 800;
    color: #111827;
    margin: 0;
}
.hp-destinations-head a.show-all {
    font-size: .85rem;
    font-weight: 700;
    color: #149a4b;
    text-decoration: none;
    white-space: nowrap;
}
.hp-destinations-head a.show-all:hover { text-decoration: underline; }
.hp-dest-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}
.hp-dest-card {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 4/3;
    text-decoration: none;
    display: block;
    transition: transform .2s, box-shadow .2s;
}
.hp-dest-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(0,0,0,.2);
    text-decoration: none;
}
.hp-dest-card-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transition: transform .4s;
}
.hp-dest-card:hover .hp-dest-card-bg { transform: scale(1.06); }
.hp-dest-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(5,20,10,0.85) 0%, rgba(0,0,0,0.1) 60%);
}
.hp-dest-card-body {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    padding: 18px 18px 16px;
}
.hp-dest-card-label {
    display: inline-block;
    background: #149a4b;
    color: #fff;
    font-size: .72rem;
    font-weight: 800;
    letter-spacing: .04em;
    text-transform: uppercase;
    padding: 4px 12px;
    border-radius: 4px;
    margin-bottom: 8px;
}
.hp-dest-card-name {
    font-family: 'Manrope', sans-serif;
    font-size: 1.1rem;
    font-weight: 800;
    color: #fff;
    display: block;
    line-height: 1.25;
}
.hp-dest-card-count {
    font-size: .78rem;
    color: rgba(255,255,255,.7);
    margin-top: 3px;
    display: block;
}

/* ════════════════════════════════════════════════════════
   7. RACE GRID
   ════════════════════════════════════════════════════════ */
.hp-grid-section { padding: 32px 0 40px; }

.race-card {
    background: #fff;
    border-radius: 14px;
    border: 1px solid #eef0f5;
    box-shadow: 0 2px 8px rgba(0,0,0,.05);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
    transition: transform .18s, box-shadow .18s;
}
.race-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0,0,0,.11);
}
.race-card-img {
    width: 100%;
    aspect-ratio: 3 / 1;
    object-fit: cover;
    display: block;
    background: #f3f4f6;
}
.race-card-body { padding: 14px 16px 16px; flex: 1; display: flex; flex-direction: column; }
.race-card-badges { display: flex; gap: 5px; flex-wrap: wrap; margin-bottom: 10px; }
.race-card-badge {
    font-size: .68rem;
    font-weight: 700;
    padding: 2px 9px;
    border-radius: 20px;
}
.race-card-title {
    font-weight: 700;
    font-size: 1rem;
    color: #111827;
    margin: 0 0 8px;
    line-height: 1.35;
}
.race-card-meta {
    display: flex;
    flex-direction: column;
    gap: 4px;
    font-size: .8rem;
    color: #6b7280;
    margin-bottom: 12px;
}
.race-card-meta span { display: flex; align-items: center; gap: 6px; }
.race-card-footer {
    margin-top: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
}
.race-card-price {
    font-size: .88rem;
    font-weight: 700;
    color: #149a4b;
}
.race-card-btn {
    background: #149a4b;
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 8px 18px;
    font-weight: 700;
    font-size: .82rem;
    text-decoration: none;
    transition: background .18s;
}
.race-card-btn:hover { background: #117a3c; color: #fff; text-decoration: none; }

#racesGrid.upcoming-grid {
    display: grid;
    grid-template-columns: repeat(5, 19vw);
    justify-content: space-between;
    gap: 10px;
}

#racesGrid.upcoming-grid > .race-filter-item {
    min-width: 0;
}

#racesGrid.upcoming-grid .pop-card {
    width: 100%;
    max-width: none;
    flex: 1 1 auto;
}

#racesGrid.upcoming-grid > .upcoming-empty {
    grid-column: 1 / -1;
}

@media (max-width: 1200px) {
    #racesGrid.upcoming-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 992px) {
    #racesGrid.upcoming-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 768px) {
    #racesGrid.upcoming-grid {
        grid-template-columns: 1fr;
    }
}

/* ════════════════════════════════════════════════════════
   8. REVIEWS
   ════════════════════════════════════════════════════════ */
.hp-reviews { padding: 32px 0 40px; background: #f8fafb; }
.reviews-scroll {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    padding-bottom: 8px;
}
.reviews-scroll::-webkit-scrollbar { height: 5px; }
.reviews-scroll::-webkit-scrollbar-track { background: #f3f4f6; border-radius: 4px; }
.reviews-scroll::-webkit-scrollbar-thumb { background: #149a4b; border-radius: 4px; }
.review-card {
    flex: 0 0 300px;
    background: #fff;
    border-radius: 14px;
    border: 1px solid #eef0f5;
    box-shadow: 0 2px 8px rgba(0,0,0,.05);
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.review-stars { display: flex; gap: 2px; color: #f59e0b; font-size: .9rem; }
.review-race-name {
    font-weight: 700;
    font-size: .85rem;
    color: #149a4b;
    text-decoration: none;
}
.review-race-name:hover { text-decoration: underline; }
.review-body {
    font-size: .88rem;
    color: #374151;
    line-height: 1.6;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.review-footer {
    font-size: .78rem;
    color: #9ca3af;
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: auto;
}

/* ════════════════════════════════════════════════════════
   9. BLOG STRIP
   ════════════════════════════════════════════════════════ */
.hp-blog { padding: 32px 0 48px; }
.hp-blog-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.blog-big-card {
    display: flex;
    flex-direction: column;
    gap: 0;
    background: #fff;
    border-radius: 15px;
    border: 1px solid #eef0f5;
    box-shadow: 0 2px 12px rgba(0,0,0,.07);
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    transition: transform .18s, box-shadow .18s;
}
.blog-big-card:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(0,0,0,.12); color: inherit; text-decoration: none; }
.blog-big-img { width: 100%; height: 220px; min-height: 220px; object-fit: cover; display: block; }
.blog-big-placeholder {
    background: linear-gradient(135deg, #149a4b, #0f766e);
    width: 100%;
    height: 220px;
    min-height: 220px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,.4);
    font-size: 4rem;
}
.blog-big-body {
    padding: 15px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    flex: 1;
}
.blog-cat-tag {
    display: inline-block;
    font-size: .7rem;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: #149a4b;
    margin-bottom: 10px;
}
.blog-big-title {
    font-family: 'Manrope', sans-serif;
    font-size: 1.5rem;
    font-weight: 800;
    color: #111827;
    margin: 0 0 12px;
    line-height: 1.3;
}
.blog-big-excerpt {
    font-size: .9rem;
    color: #4b5563;
    line-height: 1.65;
    margin: 0 0 18px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.blog-big-footer {
    display: flex;
    align-items: center;
    gap: 16px;
    font-size: .8rem;
    color: #6b7280;
    flex-wrap: nowrap;
    margin-top: auto;
}
.blog-read-more {
    margin-left: auto;
    background: #111827;
    color: #fff;
    border-radius: 20px;
    padding: 7px 18px;
    font-weight: 700;
    font-size: .8rem;
    text-decoration: none;
}
.blog-read-more:hover { background: #149a4b; color: #fff; }

/* ════════════════════════════════════════════════════════
   DARK MODE
   ════════════════════════════════════════════════════════ */
[data-theme="dark"] .hero-search-card { background: #1e2a22; }
[data-theme="dark"] .rz-home-v2 .hp-hero {
    background:
        linear-gradient(90deg, rgba(7,12,22,0.9) 0%, rgba(7,12,22,0.9) 40%, rgba(7,12,22,0) 60%, transparent 100%),
        linear-gradient(to top, rgba(5,25,12,0.88) 0%, rgba(5,25,12,0.52) 40%, rgba(0,0,0,0.08) 100%),
        url('/images/hp-hero-mountain-runners.png') center center / cover no-repeat !important;
    box-shadow: none;
}
[data-theme="dark"] .hero-search-input { background: #111827; border-color: #374151; color: #f9fafb; }
[data-theme="dark"] .hero-filter-chip { background: #1f2937; color: #d1d5db; }
[data-theme="dark"] .hero-filter-chip:hover,
[data-theme="dark"] .hero-filter-chip.active { background: #14532d; color: #86efac; border-color: #86efac; }
[data-theme="dark"] .hp-trust-bar { background: #111827; border-color: #1f2937; }
[data-theme="dark"] .trust-item { color: #d1d5db; }
[data-theme="dark"] .hp-section-head h2 { color: #f9fafb; }
/* Removed old non-scoped dark rules - now using .rz-home-v2 scoped overrides below */
[data-theme="dark"] .hp-reviews { background: #111827; }
[data-theme="dark"] .scroll-arrow { background: #1f2937; border-color: #374151; color: #d1d5db; }
[data-theme="dark"] .hp-destinations-head h2 { color: #f9fafb; }
[data-theme="dark"] .hp-dest-card-label { background: #4ade80; color: #052e16; }
[data-theme="dark"] .trust-icon { background: rgba(74,222,128,.25); color: #f0fdf4; }

/* ════════════════════════════════════════════════════════
   DARK MODE: Additional Text & UI Elements
   ════════════════════════════════════════════════════════ */

/* Navigation & Links */
[data-theme="dark"] .hp-cat-nav { background: #1a1f2e; border-bottom-color: #374151; }
[data-theme="dark"] .hp-cat-link { color: #c7d0b5; border-color: #374151; background: #1f2937; }
[data-theme="dark"] .hp-cat-link:hover { color: #4ade80; border-color: #4ade80; background: #1a3d2c; }
[data-theme="dark"] .hp-cat-link.is-active { color: #fff; border-color: #4ade80; background: linear-gradient(135deg, #14532d, #0f3d1e); }
[data-theme="dark"] .hp-section-head a.show-all { color: #4ade80; }
[data-theme="dark"] .hero-cta-btn { background: #149a4b; color: #fff; }
[data-theme="dark"] .hero-cta-btn:hover { background: #0f7a3a; color: #fff; }
[data-theme="dark"] .rz-home-v2 .rz-hero-actions .hero-cta-btn:not(.btn-outline),
[data-theme="dark"] .rz-home-v2 .rz-hero-actions .hero-cta-btn:not(.btn-outline) i { color: #000000 !important; }
[data-theme="dark"] .hero-search-btn:hover { background: #0f7a3a; }

/* Prices & Tags */
[data-theme="dark"] .pop-card-price { color: #4ade80; }
[data-theme="dark"] .blog-cat-tag { color: #4ade80; }
[data-theme="dark"] .race-card-btn:hover { background: #117a3c; color: #fff; }

/* Blog & Reviews */
[data-theme="dark"] .blog-read-more { background: #1f2937; color: #f9fafb; }
[data-theme="dark"] .blog-read-more:hover { background: #14532d; color: #f9fafb; }
[data-theme="dark"] .review-stars { color: #fbbf24; }

/* Scrollbars - Popular Races */
[data-theme="dark"] .pop-scroll::-webkit-scrollbar-track { background: #1f2937; }
[data-theme="dark"] .pop-scroll::-webkit-scrollbar-thumb { background: #4ade80; }

/* Scrollbars - Reviews */
[data-theme="dark"] .reviews-scroll::-webkit-scrollbar-track { background: #1f2937; }
[data-theme="dark"] .reviews-scroll::-webkit-scrollbar-thumb { background: #4ade80; }

/* Buttons & Interactive */
[data-theme="dark"] .scroll-arrow:hover { background: #14532d; color: #4ade80; border-color: #4ade80; }

/* ════════════════════════════════════════════════════════
   DARK MODE: .rz-home-v2 Hero & Search Section
   ════════════════════════════════════════════════════════ */

[data-theme="dark"] .rz-home-v2 .rz-hero-copy h1 .accent { color: #a6cf38 !important; }
[data-theme="dark"] .rz-home-v2 .rz-hero-copy h1 { color: #f8fafc !important; }
[data-theme="dark"] .rz-home-v2 .rz-hero-tagline {
    color: #dcfce7 !important;
    border-color: rgba(183, 242, 27, 0.48) !important;
    background: linear-gradient(180deg, rgba(9, 16, 30, 0.84), rgba(7, 12, 22, 0.9)) !important;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05), 0 10px 26px rgba(1, 8, 22, 0.45) !important;
}
[data-theme="dark"] .rz-home-v2 .rz-hero-copy .lead { color: rgba(243, 248, 255, 0.94) !important; }
[data-theme="dark"] .rz-home-v2 .rz-stat-label { color: rgba(226, 236, 248, 0.95) !important; }
[data-theme="dark"] .rz-home-v2 .rz-stat-icon { color: #a6cf38 !important; background: rgba(166, 207, 56, 0.16) !important; }
[data-theme="dark"] .rz-home-v2 .rz-hero-search { background: rgba(10, 17, 29, 0.78) !important; border-color: rgba(216, 232, 255, 0.18) !important; }
[data-theme="dark"] .rz-home-v2 .rz-search-field label { color: rgba(221, 234, 250, 0.88) !important; }
[data-theme="dark"] .rz-home-v2 .rz-search-field .hero-search-input,
[data-theme="dark"] .rz-home-v2 .rz-search-field select { background: rgba(255, 255, 255, 0.07) !important; color: #f8fafc !important; border-color: rgba(197, 214, 236, 0.3) !important; }
[data-theme="dark"] .rz-home-v2 .rz-search-field .hero-search-input::placeholder { color: rgba(226, 236, 248, 0.92) !important; }
[data-theme="dark"] .rz-home-v2 .rz-search-field select option { background: #0f172a !important; color: #e2e8f0 !important; }
[data-theme="dark"] .rz-home-v2 .rz-stat-card { background: rgba(8, 16, 27, 0.66) !important; border-color: rgba(217, 255, 133, 0.24) !important; color: #f8fafc !important; }
[data-theme="dark"] .rz-home-v2 .hp-section-head h2 { color: #ecf2ff !important; }

/* ════════════════════════════════════════════════════════
   RESPONSIVE
   ════════════════════════════════════════════════════════ */
/* Tablet */
@media (max-width: 1024px) {
    .hp-dest-grid { grid-template-columns: repeat(2, 1fr); }
}

/* Mobile (≤768px) */
@media (max-width: 768px) {
    /* ── Hero ── */
    .rz-home-v2 .hp-hero {
        min-height: 380px;
        align-items: flex-end;
        background-image:
            linear-gradient(to top, rgba(5,25,12,0.88) 0%, rgba(5,25,12,0.52) 40%, rgba(0,0,0,0.08) 100%),
            url('/images/hp-hero-mobile.jpg');
        background-size: cover;
        background-position: 56% center;
        background-repeat: no-repeat;
        background-attachment: scroll;
    }
    .hp-hero-inner { padding: 32px 20px 32px; }
    .hp-hero h1 { font-size: clamp(1.6rem, 6vw, 2.4rem); max-width: 100%; }
    .hp-hero p.lead { font-size: .95rem; max-width: 100%; margin-bottom: 20px; }

    /* ── Search bar: stack vertically ── */
    .hero-search-bar {
        flex-direction: column;
        max-width: 100%;
        border-radius: 12px;
        overflow: hidden;
    }
    .hero-search-input {
        padding: 14px 16px;
        border-bottom: 1px solid #e5e7eb;
        width: 100%;
    }
    .hero-search-btn {
        width: 100%;
        justify-content: center;
        border-radius: 0;
        padding: 14px 16px;
        font-size: .95rem;
    }

    /* ── Trust bar: vertical stack, centered ── */
    .hp-trust-bar { padding: 16px 20px; }
    .hp-trust-bar-inner {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }
    .trust-item { font-size: .85rem; }

    /* ── Destinations: 2×2 grid ── */
    .hp-destinations { padding: 28px 0 8px; }
    .hp-dest-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }

    /* ── Popular scroll ── */
    .pop-scroll { flex-wrap: wrap; overflow-x: visible; gap: 12px; }
    .pop-card { flex: 0 0 100%; max-width: 100%; }
    .pop-card:not(:first-child) { display: flex; }
    .race-filter-item:nth-child(n+6) { display: none; }

    /* ── Blog ── */
    .hp-blog-grid { grid-template-columns: 1fr; }

    /* ── Blog ── */
    .blog-big-card { grid-template-columns: 1fr; }
    .blog-big-img {
        height: auto;
        min-height: 0;
        object-fit: contain;
        background: transparent;
    }
    .blog-big-placeholder { min-height: 200px; }

    /* ── Shared ── */
    .hp-inner { width: 98%; }
    .hp-cat-nav-inner { gap: 8px; padding: 8px 0; }
    .hp-cat-link { padding: 9px 13px; font-size: .8rem; }
    .hp-grid-section { padding-top: 24px; }
    .hp-section { padding: 24px 0 16px; }
    .hp-section-head h2 { font-size: 1.2rem; }
    .hp-destinations-head h2 { font-size: 1.2rem; }
}

/* Small mobile (≤480px) */
@media (max-width: 480px) {
    .hp-hero h1 { font-size: 1.65rem; }
    .hp-dest-card-name { font-size: .85rem; }
    .hp-dest-card-label { font-size: .65rem; padding: 3px 8px; }
    .hp-dest-card-body { padding: 14px 14px 12px; }
    .pop-card { flex: 1 1 100%; }
}

/* ════════════════════════════════════════════════════════
   HOMEPAGE V2 (Screenshot-matching pass)
   Scoped to avoid affecting other pages
   ════════════════════════════════════════════════════════ */
.rz-home-v2 {
    --rz-shell-width: min(calc(100% - 64px), 1260px);
}

.rz-home-v2 .hp-hero {
    min-height: 640px;
    align-items: stretch;
    background-image:
        linear-gradient(112deg, rgba(2,10,20,0.86) 0%, rgba(2,10,20,0.45) 45%, rgba(2,10,20,0.18) 100%),
    url('/images/hp-hero-mountain-runners.png');
}

.rz-home-v2 .hp-hero.hp-full-bleed {
    width: 100%;
    max-width: 100%;
    left: auto;
    transform: none;
}

.rz-home-v2 .hp-hero-inner {
    width: 95%;
    max-width: 95%;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 88px 0 26px;
}

.rz-home-v2 .hp-section,
.rz-home-v2 .hp-blog {
    width: 95%;
    max-width: 95%;
    position: static;
    left: auto;
    transform: none;
    margin-left: auto;
    margin-right: auto;
}

.rz-home-v2 .hp-trust-bar {
    display: none;
}

.rz-home-v2 .rz-hero-top {
    display: grid;
    grid-template-columns: 1fr;
    gap: 28px;
    align-items: end;
    width: 100%;
    margin: 0 auto;
}

.rz-home-v2 .rz-hero-copy {
    width: 95%;
}

.rz-home-v2 .rz-hero-tagline {
    font-size: clamp(0.62rem, 0.95vw, 0.78rem);
    font-weight: 800;
    letter-spacing: 0.11em;
    color: #1f2937;
    text-transform: uppercase;
    line-height: 1.1;
    width: fit-content;
    display: inline-flex;
    align-items: center;
    padding: 7px 14px;
    border-radius: 999px;
    border: 1px solid rgba(20, 154, 75, 0.35);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(247, 250, 252, 0.82));
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9), 0 8px 24px rgba(15, 23, 42, 0.14);
    -webkit-backdrop-filter: blur(3px);
    backdrop-filter: blur(3px);
    margin: 0 0 16px 0;
}

.rz-home-v2 .rz-hero-copy h1 {
    font-size: clamp(2rem, 4.65vw, 4.25rem);
    line-height: 1.02;
    color: #000000;
    margin-bottom: 16px;
}

.rz-home-v2 .rz-hero-copy h1 .accent {
    color: #149a4b;
}

.rz-home-v2 .rz-hero-copy .lead {
    color: #374151;
    max-width: 95%;
    font-size: 1.09rem;
    margin-bottom: 26px;
}

.rz-home-v2 .rz-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.rz-home-v2 .hero-cta-btn {
    background: #b7f21b;
    color: #111827 !important;
    border-radius: 10px;
    padding: 13px 24px;
}

.rz-home-v2 .hero-cta-btn:hover {
    background: #9ed613;
}

.rz-home-v2 .rz-hero-actions .hero-cta-btn:not(.btn-outline),
.rz-home-v2 .rz-hero-actions .hero-cta-btn:not(.btn-outline) i {
    color: #000000 !important;
}

.rz-home-v2 .hero-cta-btn.btn-outline {
    background: rgba(3, 8, 18, 0.35);
    color: #f8fafc !important;
    border: 1px solid rgba(232, 241, 255, 0.45);
}

.rz-home-v2 .hero-cta-btn.btn-outline:hover {
    background: rgba(6, 11, 21, 0.7);
    border-color: rgba(232, 241, 255, 0.65);
}

.rz-home-v2 .rz-hero-stats {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 200px;
    margin-left: auto;
}

@media (max-width: 1200px) {
    .rz-home-v2 .rz-hero-stats {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        width: auto;
        margin-left: 0;
    }
}

.rz-home-v2 .rz-stat-card {
    display: grid;
    grid-template-columns: 34px 1fr;
    align-items: center;
    gap: 10px;
    border-radius: 14px;
    border: 1px solid rgba(217, 255, 133, 0.24);
    background: #ffffff;
    padding: 13px 14px;
    color: #1f2937;
    -webkit-backdrop-filter: blur(4px);
    backdrop-filter: blur(4px);
}

.rz-home-v2 .rz-stat-icon {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #b7f21b;
    background: rgba(183, 242, 27, 0.14);
}

.rz-home-v2 .rz-stat-number {
    font-family: 'Manrope', sans-serif;
    font-weight: 800;
    font-size: 1.52rem;
    line-height: 1;
}

.rz-home-v2 .rz-stat-label {
    font-size: 0.8rem;
    color: #6b7280;
}

.rz-home-v2 .rz-hero-search {
    margin-top: 22px;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr auto;
    gap: 10px;
    background: rgba(10, 17, 29, 0.78);
    border: 1px solid rgba(216, 232, 255, 0.18);
    border-radius: 14px;
    padding: 14px;
    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);
}

.rz-home-v2 .rz-search-field {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.rz-home-v2 .rz-search-field label {
    font-size: 0.78rem;
    color: #6b7280;
}

.rz-home-v2 .rz-search-field .hero-search-input,
.rz-home-v2 .rz-search-field select {
    height: 44px;
    border-radius: 10px;
    border: 1px solid #d1d5db;
    background: #f9fafb;
    color: #111827;
    padding: 0 12px;
    font-size: 0.92rem;
}

.rz-home-v2 .rz-search-field .hero-search-input::placeholder {
    color: #9ca3af;
}

.rz-home-v2 .rz-search-field select option {
    color: #111827;
}

[data-theme="dark"] .rz-home-v2 .rz-search-field select option {
    background: #0f172a;
    color: #e2e8f0;
}

.rz-home-v2 .rz-search-submit {
    align-self: end;
    border: 0;
    height: 44px;
    border-radius: 10px;
    background: #b7f21b;
    color: #111827;
    font-weight: 800;
    padding: 0 22px;
}

.rz-home-v2 .rz-search-submit:hover {
    background: #9ed613;
}

.rz-home-v2 .hp-section-head {
    margin-bottom: 16px;
}

.rz-home-v2 .hp-section-head h2 {
    color: #111827;
}

.rz-home-v2 .hp-section {
    padding-top: 8px;
    padding-bottom: 8px;
}

.rz-home-v2 .pop-card,
.rz-home-v2 #racesGrid.upcoming-grid .pop-card {
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    background: #ffffff;
    color: #111827;
    box-shadow: 0 18px 34px rgba(18, 51, 39, 0.12);
    overflow: hidden;
    position: relative;
    aspect-ratio: 2 / 1;
}

.rz-home-v2 .pop-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 24px 40px rgba(18, 51, 39, 0.18);
}

.rz-home-v2 .pop-card:focus-visible {
    outline: 2px solid rgba(183, 242, 27, 0.7);
    outline-offset: 2px;
}

.rz-home-v2 .pop-scroll {
    gap: 16px;
    flex-wrap: nowrap;
    overflow-x: auto;
}

.rz-home-v2 .pop-scroll .pop-card {
    flex: 0 0 calc((100% - 48px) / 4);
    max-width: calc((100% - 48px) / 4);
}

.rz-home-v2 .pop-card-img {
    position: relative;
    aspect-ratio: auto;
    background: #f3f4f6;
    isolation: isolate;
}

.rz-home-v2 .pop-card-img::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0) 36%, rgba(0, 0, 0, 0.24) 72%, rgba(0, 0, 0, 0.45) 100%);
    z-index: 1;
    pointer-events: none;
}

.rz-home-v2 .pop-card-img img {
    width: 100%;
    height: auto;
    object-fit: contain;
    filter: brightness(1) saturate(1.08);
}

.rz-home-v2 .rz-date-badge {
    position: absolute;
    top: clamp(7px, 1vw, 10px);
    right: clamp(7px, 1vw, 10px);
    width: clamp(29px, 9.6vw, 35px);
    border-radius: clamp(6px, 1.2vw, 7px);
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid #149a4b;
    text-align: center;
    padding: clamp(2px, 0.72vw, 4px) clamp(1px, 0.48vw, 2px) clamp(2px, 0.96vw, 4px);
    z-index: 3;
    -webkit-backdrop-filter: blur(4px);
    backdrop-filter: blur(4px);
}

.rz-home-v2 .rz-date-badge strong {
    display: block;
    color: #111827;
    font-size: clamp(0.73rem, 1.8vw, 0.9rem);
    font-weight: 800;
    line-height: 1;
    font-family: 'Manrope', sans-serif;
}

.rz-home-v2 .rz-date-badge span {
    display: block;
    color: #149a4b;
    font-size: clamp(0.4rem, 0.72vw, 0.47rem);
    line-height: 1;
    font-weight: 900;
    letter-spacing: 0.02em;
    margin-top: clamp(1px, 0.36vw, 2px);
}

.rz-home-v2 .pop-card-title {
    font-family: 'Manrope', sans-serif;
    font-size: 0.95rem;
    font-weight: 700;
    color: #111827;
    margin: 0 0 6px;
    line-height: 1.3;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.rz-home-v2 .pop-card-meta,
.rz-home-v2 .show-all {
    color: #111827;
}

.rz-home-v2 .pop-card-body {
    padding: 10px 14px 10px;
    background: #ffffff;
}

.rz-home-v2 .rz-card-info-row {
    display: flex;
    align-items: center;
    gap: 10px;
    min-width: 0;
}

.rz-home-v2 .rz-card-info-row .pop-card-badge {
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(248, 250, 252, 0.9));
    border: 1px solid rgba(148, 163, 184, 0.42);
    border-radius: 999px;
    padding: 5px 10px;
    font-size: 0.76rem;
    font-weight: 800;
    color: #0f172a;
    text-transform: none;
    letter-spacing: 0.01em;
    line-height: 1;
    white-space: nowrap;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.85), 0 2px 5px rgba(15, 23, 42, 0.1);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.rz-home-v2 .rz-card-info-row .pop-card-badge::before {
    content: '';
    display: inline-block;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: currentColor;
    opacity: 0.95;
    margin-right: 0;
    vertical-align: middle;
    box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.68);
}

.rz-home-v2 .pop-card:hover .rz-card-info-row .pop-card-badge {
    transform: translateY(-1px);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.92), 0 6px 14px rgba(15, 23, 42, 0.14);
}

.rz-home-v2 .pop-card-meta {
    font-size: 0.84rem;
    color: #6b7280;
    margin: 0;
    min-width: 0;
    flex: 1 1 auto;
}

.rz-home-v2 .pop-card-meta span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.rz-home-v2 .pop-card-meta i {
    color: #6b7280;
}

.rz-home-v2 .show-all {
    text-decoration: none;
    opacity: 0.95;
}

.rz-home-v2 .show-all:hover {
    opacity: 1;
    text-decoration: underline;
}

.rz-home-v2 .rz-card-cta {
    margin-left: auto;
    width: fit-content;
    border: 1px solid #149a4b;
    border-radius: 10px;
    color: #149a4b;
    background: rgba(20, 154, 75, 0.08);
    font-size: 0.86rem;
    font-weight: 700;
    padding: 7px 12px;
    box-shadow: none;
    white-space: nowrap;
}

.rz-home-v2 .pop-card-badge.rt-trail {
    background: linear-gradient(180deg, rgba(16, 185, 129, 0.2), rgba(16, 185, 129, 0.14));
    border-color: rgba(5, 150, 105, 0.45);
    color: #065f46;
}

.rz-home-v2 .pop-card-badge.rt-ocr {
    background: linear-gradient(180deg, rgba(239, 68, 68, 0.2), rgba(239, 68, 68, 0.14));
    border-color: rgba(220, 38, 38, 0.45);
    color: #991b1b;
}

.rz-home-v2 .pop-card-badge.rt-street {
    background: linear-gradient(180deg, rgba(59, 130, 246, 0.2), rgba(59, 130, 246, 0.14));
    border-color: rgba(37, 99, 235, 0.45);
    color: #1e3a8a;
}

.rz-home-v2 .pop-card-badge.rt-multisport {
    background: linear-gradient(180deg, rgba(168, 85, 247, 0.18), rgba(168, 85, 247, 0.13));
    border-color: rgba(147, 51, 234, 0.42);
    color: #6b21a8;
}

.rz-home-v2 .hp-grid-section,
.rz-home-v2 .hp-reviews {
    background: linear-gradient(180deg, #f9fafb 0%, #f3f4f6 100%);
}

.rz-home-v2 .hp-blog {
    background: transparent;
}

.rz-home-v2 .hp-blog,
.rz-home-v2 .hp-grid-section {
    padding-top: 10px;
}

.rz-home-v2 .hp-blog-grid .blog-big-card,
.rz-home-v2 .review-card {
    background: #ffffff;
    border-color: #e5e7eb;
}

.rz-home-v2 .blog-big-title,
.rz-home-v2 .review-body,
.rz-home-v2 .review-race-name {
    color: #111827;
}

.rz-home-v2 .blog-big-excerpt {
    color: #4b5563;
}

.rz-home-v2 .blog-big-footer {
    color: #6b7280;
}

.rz-home-v2 #racesGrid.upcoming-grid {
    gap: 14px;
}

.rz-home-v2 .rz-info-strip {
    margin: 10px auto 8px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.rz-home-v2 .rz-info-card {
    border-radius: 14px;
    border: 1px solid #e5e7eb;
    background: #ffffff;
    padding: 22px;
    box-shadow: 0 14px 24px rgba(18, 51, 39, 0.08);
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.rz-home-v2 .rz-info-card-inner,
.rz-home-v2 .info-card-inner {
    display: flex;
    gap: 16px;
    flex: 1;
}

.rz-home-v2 .rz-info-icon,
.rz-home-v2 .info-icon {
    font-size: 32px;
    color: #149a4b;
    flex-shrink: 0;
}

.rz-home-v2 .rz-info-content h3,
.rz-home-v2 .info-content h3 {
    color: #111827;
    font-size: 1.3rem;
    line-height: 1.15;
    margin: 0 0 10px 0;
    font-weight: 700;
}

.rz-home-v2 .rz-info-text,
.rz-home-v2 .info-text {
    color: #374151;
    font-size: 0.95rem;
    line-height: 1.4;
    margin: 0 0 8px 0;
}

.rz-home-v2 .rz-info-text:last-child,
.rz-home-v2 .info-text:last-child {
    margin-bottom: 0;
}

.rz-home-v2 .rz-info-arrow,
.rz-home-v2 .info-arrow {
    font-size: 24px;
    color: #b7f21b;
    font-weight: 700;
    flex-shrink: 0;
    margin-top: 2px;
}

@media (min-width: 992px) {
    body.homepage-hero .rz-home-v2 .rz-info-strip {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
        margin: 16px auto 12px;
    }
    
    .rz-home-v2 .rz-info-card {
        padding: 28px;
    }
}

.rz-home-v2 .rz-info-card-newsletter p {
    color: #374151;
    margin: 0 0 14px;
}

.rz-home-v2 .rz-newsletter-form {
    display: grid;
    grid-template-columns: 1fr 48px;
    gap: 10px;
}

.rz-home-v2 .rz-newsletter-form input {
    height: 46px;
    border-radius: 10px;
    border: 1px solid #d1d5db;
    background: #f9fafb;
    color: #111827;
    padding: 0 12px;
}

.rz-home-v2 .rz-newsletter-form input::placeholder {
    color: #9ca3af;
}

.rz-home-v2 .rz-newsletter-form button {
    height: 46px;
    border-radius: 10px;
    border: 0;
    background: #b7f21b;
    color: #111827;
    font-weight: 800;
}

.rz-home-v2 .rz-newsletter-form button:hover {
    background: #9ed613;
}

[data-theme="dark"] .rz-home-v2 .rz-newsletter-form input {
    background: rgba(255, 255, 255, 0.08) !important;
    color: #f8fafc !important;
    border-color: rgba(197, 214, 236, 0.34) !important;
}

/* ════════════════════════════════════════════════════════
   DARK MODE: All HP Card Overrides
   ════════════════════════════════════════════════════════ */

/* Dark mode: Pop Cards (Predstojeće trke) */
[data-theme="dark"] .rz-home-v2 .pop-card,
[data-theme="dark"] .rz-home-v2 #racesGrid.upcoming-grid .pop-card {
    background: linear-gradient(180deg, rgba(8, 16, 29, 0.96), rgba(4, 9, 17, 0.98)) !important;
    color: #f8fafc !important;
    border-color: rgba(189, 212, 244, 0.28) !important;
    box-shadow: 0 18px 34px rgba(1, 8, 22, 0.45) !important;
}

[data-theme="dark"] .rz-home-v2 .pop-card:hover {
    box-shadow: 0 24px 40px rgba(1, 8, 22, 0.55) !important;
}

[data-theme="dark"] .rz-home-v2 .pop-card-img {
    background: #0b1220 !important;
}

[data-theme="dark"] .rz-home-v2 .pop-card-img::after {
    background: linear-gradient(180deg, rgba(2, 6, 12, 0) 36%, rgba(2, 6, 12, 0.74) 72%, rgba(2, 6, 12, 0.95) 100%) !important;
}

[data-theme="dark"] .rz-home-v2 .pop-card-img img {
    filter: brightness(0.86) saturate(1.08) !important;
}

[data-theme="dark"] .rz-home-v2 .rz-date-badge {
    background: rgba(4, 8, 15, 0.9) !important;
    border-color: rgba(183, 242, 27, 0.55) !important;
}

[data-theme="dark"] .rz-home-v2 .rz-date-badge strong {
    color: #f8fafc !important;
}

[data-theme="dark"] .rz-home-v2 .rz-date-badge span {
    color: #b7f21b !important;
}

[data-theme="dark"] .rz-home-v2 .pop-card-title,
[data-theme="dark"] .rz-home-v2 .pop-card-meta,
[data-theme="dark"] .rz-home-v2 .show-all {
    color: #f8fafc !important;
}

[data-theme="dark"] .rz-home-v2 .pop-card-body {
    background: rgba(8, 16, 29, 0.98) !important;
}

[data-theme="dark"] .rz-home-v2 .rz-card-info-row .pop-card-badge {
    background: linear-gradient(180deg, rgba(15, 23, 42, 0.82), rgba(11, 18, 32, 0.88)) !important;
    border-color: rgba(148, 163, 184, 0.42) !important;
    color: #e2e8f0 !important;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04), 0 2px 10px rgba(1, 8, 22, 0.45) !important;
}

[data-theme="dark"] .rz-home-v2 .rz-card-info-row .pop-card-badge::before {
    background: currentColor !important;
    box-shadow: 0 0 0 2px rgba(7, 12, 22, 0.7) !important;
}

[data-theme="dark"] .rz-home-v2 .pop-card-badge.rt-trail {
    background: linear-gradient(180deg, rgba(16, 185, 129, 0.26), rgba(5, 150, 105, 0.2)) !important;
    border-color: rgba(52, 211, 153, 0.52) !important;
    color: #a7f3d0 !important;
}

[data-theme="dark"] .rz-home-v2 .pop-card-badge.rt-ocr {
    background: linear-gradient(180deg, rgba(239, 68, 68, 0.28), rgba(220, 38, 38, 0.2)) !important;
    border-color: rgba(248, 113, 113, 0.56) !important;
    color: #fecaca !important;
}

[data-theme="dark"] .rz-home-v2 .pop-card-badge.rt-street {
    background: linear-gradient(180deg, rgba(59, 130, 246, 0.3), rgba(37, 99, 235, 0.22)) !important;
    border-color: rgba(96, 165, 250, 0.58) !important;
    color: #bfdbfe !important;
}

[data-theme="dark"] .rz-home-v2 .pop-card-badge.rt-multisport {
    background: linear-gradient(180deg, rgba(168, 85, 247, 0.28), rgba(147, 51, 234, 0.2)) !important;
    border-color: rgba(196, 181, 253, 0.54) !important;
    color: #ddd6fe !important;
}

[data-theme="dark"] .rz-home-v2 .pop-card-meta {
    color: rgba(214, 227, 246, 0.95) !important;
}

[data-theme="dark"] .rz-home-v2 .pop-card-meta span {
    color: rgba(214, 227, 246, 0.95) !important;
}

[data-theme="dark"] .rz-home-v2 .pop-card-meta i {
    color: rgba(226, 236, 248, 0.92) !important;
}

[data-theme="dark"] .rz-home-v2 .rz-card-cta {
    border-color: rgba(183, 242, 27, 0.72) !important;
    color: #b7f21b !important;
    background: rgba(6, 11, 20, 0.72) !important;
    box-shadow: inset 0 0 0 1px rgba(183, 242, 27, 0.22) !important;
}

/* Dark mode: HP sections background */
[data-theme="dark"] .rz-home-v2 .hp-grid-section,
[data-theme="dark"] .rz-home-v2 .hp-reviews {
    background: linear-gradient(180deg, #020817 0%, #02050d 100%) !important;
}

[data-theme="dark"] .rz-home-v2 .hp-blog {
    background: transparent !important;
}

/* Dark mode: Blog Cards (Iz bloga) */
[data-theme="dark"] .rz-home-v2 .hp-blog-grid .blog-big-card,
[data-theme="dark"] .rz-home-v2 .review-card {
    background: rgba(11, 19, 33, 0.85) !important;
    border-color: rgba(205, 221, 241, 0.14) !important;
}

[data-theme="dark"] .rz-home-v2 .blog-big-title,
[data-theme="dark"] .rz-home-v2 .review-body,
[data-theme="dark"] .rz-home-v2 .review-race-name {
    color: #f8fafc !important;
}

[data-theme="dark"] .rz-home-v2 .blog-big-excerpt {
    color: rgba(214, 227, 246, 0.9) !important;
}

[data-theme="dark"] .rz-home-v2 .blog-big-footer {
    color: rgba(197, 214, 236, 0.88) !important;
}

/* Dark mode: Info Cards (Za trkače, Za organizatore, Za članicu) */
[data-theme="dark"] .rz-home-v2 .rz-info-card {
    background: linear-gradient(180deg, rgba(10, 20, 34, 0.92), rgba(5, 10, 19, 0.96)) !important;
    border-color: rgba(205, 221, 241, 0.16) !important;
    box-shadow: 0 14px 24px rgba(1, 8, 22, 0.35) !important;
}

[data-theme="dark"] .rz-home-v2 .rz-info-card h3 {
    color: #f8fafc !important;
}

[data-theme="dark"] .rz-home-v2 .rz-info-content h3,
[data-theme="dark"] .rz-home-v2 .info-content h3 {
    color: #f8fafc !important;
}

[data-theme="dark"] .rz-home-v2 .rz-info-text,
[data-theme="dark"] .rz-home-v2 .info-text {
    color: rgba(226, 236, 248, 0.95) !important;
}

[data-theme="dark"] .rz-home-v2 .rz-info-icon,
[data-theme="dark"] .rz-home-v2 .info-icon {
    color: #dcfce7 !important;
    border-color: rgba(183, 242, 27, 0.48) !important;
    background: linear-gradient(180deg, rgba(9, 16, 30, 0.84), rgba(7, 12, 22, 0.9)) !important;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05), 0 10px 26px rgba(1, 8, 22, 0.45) !important;
}

[data-theme="dark"] .rz-home-v2 .rz-info-arrow,
[data-theme="dark"] .rz-home-v2 .info-arrow {
    color: #a6cf38 !important;
}

[data-theme="dark"] .rz-home-v2 .rz-newsletter-form button {
    background: #b7f21b !important;
    color: #111827 !important;
    font-weight: 800 !important;
}

[data-theme="dark"] .rz-home-v2 .rz-newsletter-form button:hover {
    background: #9ed613 !important;
}

@media (max-width: 1200px) {
    .rz-home-v2 .rz-hero-top {
        grid-template-columns: 1fr;
    }

    .rz-home-v2 .rz-hero-stats {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        width: auto;
        margin-left: 0;
        transform: none;
    }

    .rz-home-v2 {
        --rz-shell-width: min(calc(100% - 40px), 1120px);
    }

    .rz-home-v2 .rz-info-strip {
        grid-template-columns: 1fr 1fr;
    }

    .rz-home-v2 .rz-info-card-newsletter {
        grid-column: 1 / -1;
    }
}

@media (max-width: 992px) {
    .rz-home-v2 .hp-hero {
        min-height: 520px;
    }

    .rz-home-v2 {
        --rz-shell-width: min(calc(100% - 30px), 980px);
    }

    .rz-home-v2 .rz-hero-search {
        grid-template-columns: 1fr 1fr;
    }

    .rz-home-v2 .pop-scroll .pop-card {
        flex: 0 0 calc((100% - 16px) / 2);
        max-width: calc((100% - 16px) / 2);
    }

    .rz-home-v2 #racesGrid.upcoming-grid {
        gap: 12px;
    }
}

@media (max-width: 768px) {
    .rz-home-v2 {
        --rz-shell-width: calc(100% - 20px);
    }

    .rz-home-v2 .hp-hero-inner {
        padding-top: 56px;
    }

    .rz-home-v2 .rz-hero-search {
        grid-template-columns: 1fr;
    }

    .rz-home-v2 .rz-hero-stats {
        grid-template-columns: 1fr;
        width: 60%;
        margin-left: auto;
    }

    .rz-home-v2 .rz-info-strip {
        grid-template-columns: 1fr;
    }

    .rz-home-v2 .pop-scroll .pop-card {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .rz-home-v2 .rz-info-card {
        padding: 18px;
    }

    .rz-home-v2 .rz-info-card h3 {
        font-size: 1.35rem;
    }
}

@media (min-width: 1201px) {
    .rz-home-v2 .hp-hero {
        min-height: 448px;
    }

    .rz-home-v2 .hp-hero-inner {
        padding: 62px 0 18px;
    }

    .hp-hero-inner {
        width: 100%;
        max-width: 100%;
    }

    .rz-home-v2 .hp-hero-inner {
        width: 95%;
        max-width: 95%;
    }

    .rz-home-v2 .rz-hero-top {
        grid-template-columns: 1fr;
    }

    .rz-home-v2 .rz-hero-search {
        width: 48%;
        margin-left: 0;
        margin-right: auto;
    }

    .rz-home-v2 .rz-hero-stats {
        width: 200px;
        min-width: 200px;
        max-width: 200px;
        margin-left: auto;
    }

    .rz-home-v2 .rz-stat-card {
        width: 100%;
        box-sizing: border-box;
    }
}

/* ════════════════════════════════════════════════════════
   MOBILE REFINEMENT (Reference-style first screen)
   ════════════════════════════════════════════════════════ */
@media (max-width: 768px) {
    .rz-home-v2 .hp-hero {
        min-height: 700px;
        background-image:
            linear-gradient(122deg, rgba(3, 10, 20, 0.92) 0%, rgba(3, 10, 20, 0.58) 48%, rgba(3, 10, 20, 0.24) 100%),
            url('/images/hp-hero-mobile.jpg');
        background-position: 56% center;
    }

    .rz-home-v2 .hp-hero-inner {
        width: calc(100% - 26px);
        max-width: calc(100% - 26px);
        padding: 72px 0 18px;
    }

    .rz-home-v2 .rz-hero-top {
        gap: 14px;
    }

    .rz-home-v2 .rz-hero-copy,
    .rz-home-v2 .rz-hero-copy .lead {
        width: 100%;
        max-width: 100%;
    }

    .rz-home-v2 .rz-hero-copy h1 {
        font-size: clamp(2.25rem, 10.6vw, 3.1rem);
        line-height: 0.98;
        color: #000000;
        letter-spacing: -0.02em;
        margin-bottom: 12px;
        text-shadow: 0 8px 24px rgba(1, 10, 22, 0.55);
    }

    .rz-home-v2 .rz-hero-copy h1 .accent {
        color: #b7f21b;
        font-style: italic;
    }

    .rz-home-v2 .rz-hero-copy .lead {
        color: rgba(232, 240, 251, 0.92);
        font-size: 1.06rem;
        line-height: 1.35;
        margin-bottom: 14px;
    }

    .rz-home-v2 .rz-hero-actions,
    .rz-home-v2 .rz-hero-stats {
        display: none;
    }

    .rz-home-v2 .rz-hero-search {
        margin-top: 8px;
        background: transparent;
        border: 0;
        border-radius: 0;
        padding: 0;
        -webkit-backdrop-filter: none;
        backdrop-filter: none;
        grid-template-columns: repeat(4, minmax(0, 1fr));
        gap: 10px;
    }

    .rz-home-v2 .rz-search-field:first-child {
        grid-column: 1 / -1;
        position: relative;
    }

    .rz-home-v2 .rz-search-field:first-child::before {
        content: '\1F50D';
        position: absolute;
        left: 14px;
        top: 13px;
        font-size: 1.15rem;
        line-height: 1;
        color: rgba(207, 217, 233, 0.92);
        pointer-events: none;
        z-index: 2;
    }

    .rz-home-v2 .rz-search-field label {
        display: none;
    }

    .rz-home-v2 .rz-search-field .hero-search-input,
    .rz-home-v2 .rz-search-field select {
        height: 44px;
        border-radius: 999px;
        border-color: rgba(203, 218, 239, 0.28);
        background: rgba(8, 17, 30, 0.7);
        color: #f8fafc;
        font-size: 1rem;
    }

    .rz-home-v2 .rz-search-field:first-child .hero-search-input {
        height: 52px;
        border-radius: 16px;
        padding-left: 42px;
        border-color: rgba(203, 218, 239, 0.36);
    }

    .rz-home-v2 .rz-search-field .hero-search-input::placeholder {
        color: rgba(223, 234, 248, 0.82);
    }

    .rz-home-v2 .rz-search-submit {
        height: 44px;
        border-radius: 14px;
        background: rgba(12, 26, 44, 0.88);
        border: 1px solid rgba(183, 242, 27, 0.55);
        color: #d9ff65;
        padding: 0 10px;
        font-size: 0.94rem;
        font-weight: 700;
    }

    .rz-home-v2 .rz-search-submit:hover {
        background: rgba(16, 34, 58, 0.95);
        color: #e7ff99;
    }

    .rz-home-v2 .hp-section,
    .rz-home-v2 .hp-blog {
        width: calc(100% - 18px);
        max-width: calc(100% - 18px);
    }

    .rz-home-v2 .hp-section {
        padding-top: 18px;
    }

    .rz-home-v2 .hp-section-head {
        margin-bottom: 10px;
    }

    .rz-home-v2 .hp-section-head h2 {
        font-size: 1.95rem;
        line-height: 1.02;
        letter-spacing: -0.02em;
    }

    .rz-home-v2 .hp-section-head .scroll-nav {
        display: none !important;
    }

    .rz-home-v2 .show-all {
        color: #b7f21b;
        font-weight: 700;
    }

    .rz-home-v2 .pop-scroll {
        gap: 10px;
        padding-bottom: 4px;
        scroll-snap-type: x proximity;
    }

    .rz-home-v2 .pop-scroll .pop-card {
        flex: 0 0 min(258px, 72vw);
        max-width: min(258px, 72vw);
        border-radius: 14px;
        scroll-snap-align: start;
        aspect-ratio: 0.82;
        box-shadow: 0 16px 32px rgba(2, 8, 20, 0.36);
    }

    .rz-home-v2 .pop-card-body {
        padding: 8px 10px;
    }

    .rz-home-v2 .rz-card-info-row {
        gap: 8px;
    }

    .rz-home-v2 .pop-card-meta {
        font-size: 0.76rem;
    }

    .rz-home-v2 .rz-card-cta {
        display: none;
    }

    .rz-home-v2 .rz-info-strip {
        margin: 14px auto 18px;
        gap: 10px;
    }

    .rz-home-v2 .rz-info-card {
        padding: 16px;
        border-radius: 12px;
    }

    .rz-home-v2 .rz-info-card h3 {
        font-size: 1.16rem;
        margin-bottom: 10px;
    }

    .rz-home-v2 .rz-info-card li,
    .rz-home-v2 .rz-info-card-newsletter p {
        font-size: 0.88rem;
    }
}

@media (max-width: 480px) {
    .rz-home-v2 .hp-hero {
        min-height: 650px;
    }

    .rz-home-v2 .hp-hero-inner {
        width: calc(100% - 14px);
        max-width: calc(100% - 14px);
        padding-top: 66px;
    }

    .rz-home-v2 .rz-hero-copy h1 {
        font-size: clamp(2.02rem, 9.8vw, 2.7rem);
    }

    .rz-home-v2 .rz-hero-copy .lead {
        font-size: 0.98rem;
    }

    .rz-home-v2 .rz-hero-search {
        gap: 8px;
    }

    .rz-home-v2 .rz-search-field .hero-search-input,
    .rz-home-v2 .rz-search-field select,
    .rz-home-v2 .rz-search-submit {
        height: 42px;
        font-size: 0.9rem;
    }

    .rz-home-v2 .rz-search-field:first-child .hero-search-input {
        height: 50px;
    }

    .rz-home-v2 .hp-section-head h2 {
        font-size: 1.72rem;
    }

    .rz-home-v2 .pop-scroll .pop-card {
        flex-basis: min(232px, 74vw);
        max-width: min(232px, 74vw);
    }
}

[data-theme="dark"] .rz-home-v2 .rz-hero-copy h1,
[data-theme="dark"] .rz-home-v2 .rz-hero-copy .lead {
    text-shadow: 0 8px 24px rgba(1, 10, 22, 0.55);
}

/* ════════════════════════════════════════════════════════
   MOBILE HERO STRUCTURE (Requested HTML mapping)
   Boje nisu prioritet; fokus je na rasporedu elemenata.
   ════════════════════════════════════════════════════════ */
.rz-home-v2 .rz-hero-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 14px;
    padding: 8px 14px;
    border-radius: 999px;
    font-size: 0.84rem;
    font-weight: 700;
}

.rz-home-v2 .rz-hero-label::before {
    content: '';
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: currentColor;
    opacity: 0.7;
}

@media (max-width: 768px) {
    .rz-home-v2 .hp-hero.hp-full-bleed {
        width: calc(100% - 20px);
        max-width: calc(100% - 20px);
        margin: 0 auto;
        border-radius: 24px;
        left: auto;
        transform: none;
        overflow: hidden;
    }

    .rz-home-v2 .hp-hero {
        min-height: unset;
        align-items: center;
    }

    .rz-home-v2 .hp-hero-inner {
        width: 100%;
        max-width: 100%;
        margin: 0;
        padding: 42px 20px;
        justify-content: center;
    }

    .rz-home-v2 .rz-hero-top {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .rz-home-v2 .rz-hero-copy,
    .rz-home-v2 .rz-hero-copy .lead {
        width: 100%;
        max-width: 100%;
    }

    .rz-home-v2 .rz-hero-copy h1 {
        font-size: clamp(2.3rem, 10.8vw, 3.15rem);
        line-height: 0.94;
        letter-spacing: -0.04em;
        margin-bottom: 14px;
    }

    .rz-home-v2 .rz-hero-copy .lead {
        font-size: 1.05rem;
        line-height: 1.45;
        margin-bottom: 18px;
    }

    .rz-home-v2 .rz-hero-actions {
        display: flex;
        flex-direction: column;
        gap: 10px;
        margin-bottom: 18px;
    }

    .rz-home-v2 .hero-cta-btn,
    .rz-home-v2 .hero-cta-btn.btn-outline {
        width: 100%;
        min-height: 56px;
        justify-content: center;
        padding: 0 18px;
        border-radius: 14px;
    }

    .rz-home-v2 .rz-hero-stats {
        display: none;
    }

    .rz-home-v2 .rz-hero-search {
        margin-top: 0;
        grid-template-columns: 1fr;
        gap: 10px;
        border-radius: 18px;
        padding: 12px;
    }

    .rz-home-v2 .rz-search-field {
        gap: 4px;
    }

    .rz-home-v2 .rz-search-field label {
        display: block;
        font-size: 0.8rem;
        font-weight: 600;
    }

    .rz-home-v2 .rz-search-field .hero-search-input,
    .rz-home-v2 .rz-search-field select,
    .rz-home-v2 .rz-search-submit {
        height: 52px;
        border-radius: 12px;
        font-size: 0.95rem;
    }

    .rz-home-v2 .rz-search-submit {
        width: 100%;
        justify-self: stretch;
    }
}

@media (max-width: 480px) {
    .rz-home-v2 .hp-hero.hp-full-bleed {
        width: calc(100% - 12px);
        max-width: calc(100% - 12px);
        border-radius: 20px;
    }

    .rz-home-v2 .hp-hero-inner {
        padding: 34px 16px;
    }

    .rz-home-v2 .rz-hero-copy h1 {
        font-size: clamp(2rem, 10.2vw, 2.7rem);
    }

    .rz-home-v2 .rz-hero-copy .lead {
        font-size: 0.96rem;
    }
}

/* Final mobile overrides: remove hero label/search and show only 4 upcoming cards */
@media (max-width: 768px) {
    .rz-home-v2 .hp-hero {
        min-height: unset;
        align-items: center;
    }

    .rz-home-v2 .hp-hero-inner {
        width: 100%;
        max-width: 100%;
        margin: 0;
        padding: 42px 20px;
    }

    .rz-home-v2 .rz-hero-top {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .rz-home-v2 .rz-hero-actions {
        display: flex;
        flex-direction: column;
        gap: 10px;
        margin-bottom: 18px;
    }

    .rz-home-v2 .hero-cta-btn,
    .rz-home-v2 .hero-cta-btn.btn-outline {
        width: 100%;
        min-height: 56px;
        justify-content: center;
        padding: 0 18px;
        border-radius: 14px;
    }

    .rz-home-v2 .rz-hero-label,
    .rz-home-v2 .rz-hero-search {
        display: none !important;
    }

    .rz-home-v2 #popScroll.pop-scroll {
        display: grid;
        grid-template-columns: 1fr;
        gap: 12px;
        overflow: visible;
        padding-bottom: 0;
    }

    .rz-home-v2 #popScroll.pop-scroll .pop-card {
        width: 100%;
        max-width: 100%;
        flex: initial;
        aspect-ratio: 2 / 1;
    }

    .rz-home-v2 #popScroll.pop-scroll .pop-card:nth-child(n+5) {
        display: none;
    }
}

@media (max-width: 768px) {
    :root:not([data-theme="dark"]) .rz-home-v2 .hp-hero,
    [data-theme="dark"] .rz-home-v2 .hp-hero {
        background-image:
            linear-gradient(122deg, rgba(3, 10, 20, 0.92) 0%, rgba(3, 10, 20, 0.58) 48%, rgba(3, 10, 20, 0.24) 100%),
            url('/images/hp-hero-mobile.jpg') !important;
        background-position: 56% center !important;
        background-size: cover !important;
    }
}

@media (max-width: 768px) {
    :root:not([data-theme="dark"]) .rz-home-v2 .hp-hero,
    [data-theme="dark"] .rz-home-v2 .hp-hero {
        align-items: flex-end !important;
        background-image: url('/images/hp-hero-mobile.jpg') !important;
        background-position: 56% center !important;
        background-size: cover !important;
    }

    .rz-home-v2 .hp-hero::before,
    .rz-home-v2 .hp-hero::after {
        display: none !important;
        background: none !important;
    }

    .rz-home-v2 .hp-hero-inner {
        justify-content: flex-end !important;
        padding: 42px 20px 20px !important;
    }

    .rz-home-v2 .rz-hero-actions {
        display: grid !important;
        grid-template-columns: 1fr 1fr !important;
        gap: 10px !important;
        margin-bottom: 0 !important;
    }

    .rz-home-v2 .hero-cta-btn,
    .rz-home-v2 .hero-cta-btn.btn-outline {
        width: 100% !important;
        min-height: 52px !important;
        justify-content: center !important;
        padding: 0 12px !important;
        border-radius: 14px !important;
        font-size: 0.92rem !important;
    }
}
