:root {
    --halloween-ink: #211525;
    --halloween-ink-soft: #302039;
    --halloween-purple: #5e3572;
    --halloween-orange: #ef7a2d;
    --halloween-orange-dark: #d86218;
    --halloween-cream: #fff7ef;
    --halloween-lilac: #f6f1f7;
    --halloween-border: #e8dde9;
    --halloween-text: #2b2730;
    --halloween-muted: #716a75;
    --halloween-white: #ffffff;
}

/* ----------------------
   PAGE
---------------------- */

.halloween-hub {
    background: var(--halloween-white);
    color: var(--halloween-text);
}

.halloween-hub h1,
.halloween-hub h2,
.halloween-hub h3 {
    letter-spacing: -0.02em;
}

.halloween-hub p:last-child {
    margin-bottom: 0;
}

.halloween-eyebrow {
    display: inline-block;
    margin-bottom: 0.45rem;
    color: var(--halloween-orange-dark);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

/* ----------------------
   HERO
---------------------- */

.halloween-hero {
    min-height: 500px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--halloween-ink);
}

.halloween-hero-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.halloween-hero-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(20, 10, 24, 0.38) 0%, rgba(20, 10, 24, 0.72) 58%, rgba(20, 10, 24, 0.94) 100%),
        linear-gradient(90deg, rgba(50, 24, 59, 0.45), rgba(0, 0, 0, 0.05));
}

.halloween-hero-content {
    position: relative;
    z-index: 2;
    max-width: 920px;
    padding-top: 5rem;
    padding-bottom: 5rem;
}

.halloween-hero h1 {
    margin: 1rem 0 1rem;
    text-shadow: 0 2px 22px rgba(0, 0, 0, 0.35);
}

.halloween-hero .lead {
    max-width: 780px;
    margin: 0 auto;
    line-height: 1.6;
}

.halloween-status {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.55rem 0.9rem;
    border: 1px solid rgba(255, 255, 255, 0.28);
    border-radius: 999px;
    background: rgba(33, 21, 37, 0.72);
    color: #fff;
    font-size: 0.88rem;
    font-weight: 700;
    backdrop-filter: blur(8px);
}

.halloween-status .material-icons {
    font-size: 1.05rem;
}

.halloween-status.is-live {
    border-color: rgba(239, 122, 45, 0.72);
    box-shadow: 0 0 0 1px rgba(239, 122, 45, 0.12);
}

.halloween-hero-actions {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.8rem;
    margin-top: 1.7rem;
}

/* ----------------------
   BUTTONS
---------------------- */

.halloween-btn {
    border-radius: 999px;
    padding: 0.72rem 1.2rem;
    font-weight: 700;
    transition: transform 0.18s ease, box-shadow 0.18s ease, background-color 0.18s ease, border-color 0.18s ease;
}

.halloween-btn:hover {
    transform: translateY(-1px);
}

.halloween-btn-primary {
    border: 1px solid var(--halloween-orange);
    background: var(--halloween-orange);
    color: #1d111f;
}

.halloween-btn-primary:hover,
.halloween-btn-primary:focus {
    border-color: #ff934f;
    background: #ff934f;
    color: #1d111f;
    box-shadow: 0 8px 22px rgba(239, 122, 45, 0.22);
}

.halloween-btn-secondary {
    border: 1px solid rgba(255, 255, 255, 0.56);
    background: rgba(255, 255, 255, 0.09);
    color: #fff;
    backdrop-filter: blur(8px);
}

.halloween-btn-secondary:hover,
.halloween-btn-secondary:focus {
    border-color: #fff;
    background: rgba(255, 255, 255, 0.16);
    color: #fff;
}

.halloween-btn-dark {
    border: 1px solid var(--halloween-ink);
    background: var(--halloween-ink);
    color: #fff;
}

.halloween-btn-dark:hover,
.halloween-btn-dark:focus {
    border-color: var(--halloween-ink-soft);
    background: var(--halloween-ink-soft);
    color: #fff;
}

.halloween-btn-outline-light {
    border: 1px solid rgba(255, 255, 255, 0.55);
    color: #fff;
}

.halloween-btn-outline-light:hover,
.halloween-btn-outline-light:focus {
    border-color: #fff;
    background: #fff;
    color: var(--halloween-ink);
}

/* ----------------------
   QUICK FACTS
---------------------- */

.halloween-fact-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.35rem;
    padding: 1.35rem 1rem;
    border: 1px solid var(--halloween-border);
    border-radius: 16px;
    background: var(--halloween-white);
    box-shadow: 0 6px 18px rgba(33, 21, 37, 0.05);
}

.halloween-fact-icon {
    margin-bottom: 0.25rem;
    color: var(--halloween-orange) !important;
    font-size: 2rem;
}

.halloween-fact-card strong {
    color: var(--halloween-ink);
    font-size: 1.03rem;
}

.halloween-fact-card span:last-child {
    color: var(--halloween-muted);
    font-size: 0.9rem;
}

/* ----------------------
   INTRO / GENERIC CARDS
---------------------- */

.halloween-intro-card,
.halloween-guide-card,
.halloween-follow-card {
    border: 1px solid var(--halloween-border);
    border-radius: 18px;
    background: var(--halloween-white);
    box-shadow: 0 8px 26px rgba(33, 21, 37, 0.05);
}

.halloween-intro-card {
    padding: clamp(1.4rem, 3vw, 2rem);
    border-left: 5px solid var(--halloween-orange);
}

.halloween-intro-card h2,
.halloween-guide-card h2,
.halloween-follow-card h2 {
    color: var(--halloween-ink);
}

/* ----------------------
   SECTION BACKGROUNDS
---------------------- */

.halloween-soft-section {
    background: var(--halloween-cream);
}

.halloween-dark-section,
.halloween-latest-section {
    background: var(--halloween-ink);
    color: #fff;
}

.halloween-section-heading {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 1.5rem;
    margin-bottom: 1.4rem;
}

.halloween-section-heading h2 {
    margin-bottom: 0.35rem;
    color: var(--halloween-ink);
}

.halloween-section-heading p {
    max-width: 780px;
    margin-bottom: 0;
    color: var(--halloween-muted);
}

.halloween-section-heading-light h2,
.halloween-section-heading-light p {
    color: #fff;
}

.halloween-section-heading-light p {
    opacity: 0.78;
}

.halloween-section-heading-light .halloween-eyebrow {
    color: #ff9a58;
}

/* ----------------------
   EXPERIENCE PICKER
---------------------- */

.halloween-choice-card {
    display: block;
    padding: 1.35rem;
    border: 1px solid rgba(94, 53, 114, 0.16);
    border-radius: 16px;
    background: #fff;
    color: var(--halloween-text);
    text-decoration: none;
    box-shadow: 0 6px 18px rgba(33, 21, 37, 0.04);
    transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.halloween-choice-card:hover,
.halloween-choice-card:focus {
    transform: translateY(-3px);
    border-color: rgba(239, 122, 45, 0.65);
    box-shadow: 0 12px 26px rgba(33, 21, 37, 0.09);
    color: var(--halloween-text);
}

.halloween-choice-card .material-icons {
    width: 44px;
    height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    border-radius: 12px;
    background: var(--halloween-ink);
    color: var(--halloween-orange) !important;
    font-size: 1.55rem;
}

.halloween-choice-card h3 {
    margin-bottom: 0.45rem;
    color: var(--halloween-ink);
    font-size: 1.08rem;
    font-weight: 750;
}

.halloween-choice-card p {
    color: var(--halloween-muted);
    font-size: 0.92rem;
}

/* ----------------------
   PICKS
---------------------- */

.halloween-pick-card {
    padding: 1.4rem;
    border: 1px solid var(--halloween-border);
    border-radius: 18px;
    background: #fff;
    box-shadow: 0 8px 22px rgba(33, 21, 37, 0.05);
}

.halloween-pick-topline {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    margin-bottom: 1rem;
}

.halloween-pick-topline .material-icons {
    color: var(--halloween-orange) !important;
}

.halloween-pick-label {
    color: var(--halloween-purple);
    font-size: 0.76rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.halloween-pick-card h3 {
    color: var(--halloween-ink);
    font-size: 1.2rem;
}

.halloween-pick-card p {
    color: var(--halloween-muted);
}

/* ----------------------
   EVENT CARDS
---------------------- */

.halloween-event-card {
    padding: 1.35rem;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 18px;
    background: var(--halloween-ink-soft);
    color: #fff;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.12);
}

.halloween-event-card-light {
    border-color: var(--halloween-border);
    background: #fff;
    color: var(--halloween-text);
    box-shadow: 0 8px 22px rgba(33, 21, 37, 0.05);
}

.halloween-event-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.9rem;
    font-size: 0.77rem;
    font-weight: 700;
}

.halloween-event-card:not(.halloween-event-card-light) .halloween-event-meta > span:first-child {
    color: rgba(255, 255, 255, 0.7);
}

.halloween-event-card-light .halloween-event-meta > span:first-child {
    color: var(--halloween-muted);
}

.halloween-event-card h3 {
    margin-bottom: 0.9rem;
    color: #fff;
    font-size: 1.18rem;
}

.halloween-event-card-light h3 {
    color: var(--halloween-ink);
}

.halloween-event-card > p {
    margin-top: 0.9rem;
    color: rgba(255, 255, 255, 0.78);
    font-size: 0.93rem;
    line-height: 1.55;
}

.halloween-event-card-light > p {
    color: var(--halloween-muted);
}

.halloween-event-detail {
    display: flex;
    align-items: flex-start;
    gap: 0.45rem;
    margin-top: 0.45rem;
    font-size: 0.86rem;
}

.halloween-event-detail .material-icons {
    color: var(--halloween-orange) !important;
    font-size: 1.05rem;
    line-height: 1.3;
}

.halloween-scare-level {
    display: inline-flex;
    align-items: center;
    padding: 0.28rem 0.58rem;
    border-radius: 999px;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.halloween-scare-level.level-family {
    background: #e7f5ea;
    color: #2f6c3a;
}

.halloween-scare-level.level-mixed {
    background: #fff0d7;
    color: #8b5711;
}

.halloween-scare-level.level-intense {
    background: #f7dfe4;
    color: #8c2338;
}

/* ----------------------
   GUIDE CARDS
---------------------- */

.halloween-guide-card {
    position: relative;
    padding: 1.6rem;
    overflow: hidden;
}

.halloween-guide-icon {
    position: absolute;
    top: 1.2rem;
    right: 1.2rem;
    color: rgba(94, 53, 114, 0.12);
    font-size: 4.5rem;
}

.halloween-guide-card h2,
.halloween-guide-card p,
.halloween-guide-card .halloween-eyebrow {
    position: relative;
    z-index: 1;
}

.halloween-guide-card p {
    color: var(--halloween-muted);
}

.halloween-guide-tip {
    padding: 0.85rem 1rem;
    border-left: 3px solid var(--halloween-orange);
    border-radius: 0 10px 10px 0;
    background: var(--halloween-cream);
    color: var(--halloween-text) !important;
}

/* ----------------------
   LATEST POSTS
---------------------- */

.halloween-post-card {
    overflow: hidden;
    border: 0;
    border-radius: 18px;
    transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.halloween-post-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.2) !important;
}

.halloween-post-card .card-img-top {
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
}

.halloween-post-card .card-body {
    padding: 1.2rem;
}

.halloween-post-date {
    margin-bottom: 0.45rem;
    color: var(--halloween-orange-dark);
    font-size: 0.8rem;
    font-weight: 700;
}

.halloween-post-card .badge {
    margin-right: 0.25rem;
    margin-bottom: 0.25rem;
}

/* ----------------------
   PLANNING
---------------------- */

.halloween-planning-card {
    padding: 1.3rem;
    border: 1px solid var(--halloween-border);
    border-radius: 16px;
    background: #fff;
}

.halloween-planning-card > .material-icons {
    margin-bottom: 0.85rem;
    color: var(--halloween-orange) !important;
    font-size: 1.9rem;
}

.halloween-planning-card h3 {
    color: var(--halloween-ink);
    font-size: 1.04rem;
}

.halloween-planning-card p {
    color: var(--halloween-muted);
    font-size: 0.9rem;
}

.halloween-calendar-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    padding: 1.45rem 1.6rem;
    border: 1px solid var(--halloween-border);
    border-radius: 18px;
    background: var(--halloween-lilac);
}

.halloween-calendar-cta h3 {
    margin-bottom: 0.25rem;
    color: var(--halloween-ink);
}

.halloween-calendar-cta p {
    max-width: 760px;
    color: var(--halloween-muted);
}

/* ----------------------
   FAQ
---------------------- */

.halloween-faq {
    display: grid;
    gap: 0.75rem;
}

.halloween-faq details {
    border: 1px solid var(--halloween-border);
    border-radius: 14px;
    background: #fff;
    overflow: hidden;
}

.halloween-faq summary {
    position: relative;
    padding: 1rem 3rem 1rem 1.1rem;
    color: var(--halloween-ink);
    font-weight: 750;
    cursor: pointer;
    list-style: none;
}

.halloween-faq summary::-webkit-details-marker {
    display: none;
}

.halloween-faq summary::after {
    content: '+';
    position: absolute;
    top: 50%;
    right: 1.15rem;
    transform: translateY(-50%);
    color: var(--halloween-orange-dark);
    font-size: 1.35rem;
    font-weight: 700;
}

.halloween-faq details[open] summary::after {
    content: '−';
}

.halloween-faq details p {
    margin: 0;
    padding: 0 1.1rem 1.1rem;
    color: var(--halloween-muted);
}

/* ----------------------
   FOLLOW CTA
---------------------- */

.halloween-follow-card {
    display: flex;
    align-items: center;
    gap: 1.4rem;
    padding: clamp(1.4rem, 3vw, 2rem);
    border-color: rgba(239, 122, 45, 0.35);
    background: linear-gradient(135deg, var(--halloween-cream), #fff);
}

.halloween-follow-icon {
    flex: 0 0 auto;
    font-size: clamp(3rem, 7vw, 5rem);
    line-height: 1;
}

.halloween-follow-card p {
    color: var(--halloween-muted);
}

/* ----------------------
   ACCESSIBILITY / FOCUS
---------------------- */

.halloween-choice-card:focus-visible,
.halloween-btn:focus-visible,
.halloween-faq summary:focus-visible {
    outline: 3px solid rgba(239, 122, 45, 0.5);
    outline-offset: 3px;
}

/* ----------------------
   RESPONSIVE
---------------------- */

@media (max-width: 991.98px) {
    .halloween-hero {
        min-height: 460px;
    }

    .halloween-section-heading,
    .halloween-calendar-cta {
        align-items: flex-start;
        flex-direction: column;
    }
}

@media (max-width: 767.98px) {
    .halloween-hero {
        min-height: 520px;
    }

    .halloween-hero-content {
        padding-top: 4rem;
        padding-bottom: 4rem;
    }

    .halloween-hero h1 {
        font-size: clamp(2.25rem, 11vw, 3.25rem);
    }

    .halloween-hero .lead {
        font-size: 1rem;
    }

    .halloween-hero-actions {
        flex-direction: column;
        align-items: stretch;
        max-width: 340px;
        margin-left: auto;
        margin-right: auto;
    }

    .halloween-btn {
        width: 100%;
    }

    .halloween-follow-card {
        align-items: flex-start;
        flex-direction: column;
    }
}

@media (prefers-reduced-motion: reduce) {
    .halloween-btn,
    .halloween-choice-card,
    .halloween-post-card {
        transition: none;
    }
}

/* ----------------------
   DARK SECTION TEXT OVERRIDES
   ThrillSense global typography uses !important, so dark areas
   must explicitly opt back into light text.
---------------------- */

.halloween-hero h1,
.halloween-hero h2,
.halloween-hero h3,
.halloween-hero h4,
.halloween-hero h5,
.halloween-hero h6,
.halloween-hero p,
.halloween-hero span {
    color: var(--halloween-white) !important;
}

.halloween-dark-section h1,
.halloween-dark-section h2,
.halloween-dark-section h3,
.halloween-dark-section h4,
.halloween-dark-section h5,
.halloween-dark-section h6,
.halloween-dark-section p,
.halloween-dark-section span {
    color: var(--halloween-white) !important;
}

.halloween-latest-section .halloween-section-heading-light h1,
.halloween-latest-section .halloween-section-heading-light h2,
.halloween-latest-section .halloween-section-heading-light h3,
.halloween-latest-section .halloween-section-heading-light h4,
.halloween-latest-section .halloween-section-heading-light h5,
.halloween-latest-section .halloween-section-heading-light h6,
.halloween-latest-section .halloween-section-heading-light p,
.halloween-latest-section .halloween-section-heading-light span,
.halloween-latest-section > .container > p {
    color: var(--halloween-white) !important;
}

/* Keep Halloween accents visible on dark backgrounds. */
.halloween-dark-section .halloween-eyebrow,
.halloween-latest-section .halloween-section-heading-light .halloween-eyebrow {
    color: #ff9a58 !important;
}

.halloween-dark-section .halloween-event-detail .material-icons {
    color: var(--halloween-orange) !important !important;
}

.halloween-dark-section .halloween-scare-level.level-family {
    color: #2f6c3a !important;
}

.halloween-dark-section .halloween-scare-level.level-mixed {
    color: #8a5700 !important;
}

.halloween-dark-section .halloween-scare-level.level-intense {
    color: #8a2940 !important;
}

/* ----------------------
   DATABASE-DRIVEN EVENT CARDS
---------------------- */

.halloween-event-card {
    display: flex;
    flex-direction: column;
    padding: 0;
    overflow: hidden;
}

.halloween-event-image-link {
    display: block;
    flex: 0 0 auto;
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.06);
}

.halloween-event-image {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.25s ease;
}

.halloween-event-card:hover .halloween-event-image {
    transform: scale(1.025);
}

.halloween-event-card-body {
    display: flex;
    flex: 1 1 auto;
    flex-direction: column;
    padding: 1.35rem;
}

.halloween-event-card h3 a,
.halloween-pick-card h3 a {
    color: inherit !important;
    text-decoration: none;
}

.halloween-event-card h3 a:hover,
.halloween-event-card h3 a:focus,
.halloween-pick-card h3 a:hover,
.halloween-pick-card h3 a:focus {
    text-decoration: underline;
    text-decoration-thickness: 2px;
    text-underline-offset: 3px;
}

.halloween-event-card-body > p {
    margin-top: 0.9rem;
    font-size: 0.93rem;
    line-height: 1.55;
}

.halloween-event-card:not(.halloween-event-card-light) .halloween-event-card-body > p {
    color: rgba(255, 255, 255, 0.78) !important;
}

.halloween-event-card-light .halloween-event-card-body > p {
    color: var(--halloween-muted) !important;
}

.halloween-event-link {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    align-self: flex-start;
    margin-top: auto;
    padding-top: 1rem;
    color: #ff9a58 !important;
    font-size: 0.88rem;
    font-weight: 700;
    text-decoration: none;
}

.halloween-event-card-light .halloween-event-link {
    color: var(--halloween-orange-dark) !important;
}

.halloween-event-link:hover,
.halloween-event-link:focus {
    text-decoration: underline;
    text-underline-offset: 3px;
}

.halloween-event-status {
    display: inline-flex;
    align-items: center;
    padding: 0.3rem 0.58rem;
    border-radius: 999px;
    font-size: 0.7rem;
    font-weight: 700;
    line-height: 1;
    white-space: nowrap;
}

.halloween-event-status.status-live {
    background: #dff4e4;
    color: #276738 !important;
}

.halloween-event-status.status-upcoming {
    background: #fff0d7;
    color: #8b5711 !important;
}

.halloween-event-status.status-tbc {
    background: #ece8f1;
    color: #5e3572 !important;
}

.halloween-pick-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.8rem;
    margin-top: 1rem;
}

.halloween-pick-footer > a {
    color: var(--halloween-orange-dark) !important;
    font-size: 0.84rem;
    font-weight: 700;
    text-decoration: none;
}

.halloween-pick-footer > a:hover,
.halloween-pick-footer > a:focus {
    text-decoration: underline;
    text-underline-offset: 3px;
}

.halloween-empty-state {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1.1rem 1.2rem;
    border: 1px solid var(--halloween-border);
    border-radius: 14px;
    background: var(--halloween-cream);
}

.halloween-empty-state .material-icons {
    color: var(--halloween-orange) !important !important;
}

.halloween-empty-state p {
    margin: 0;
    color: var(--halloween-muted) !important;
}

.halloween-subsection-heading {
    margin-bottom: 1.2rem;
}

@media (prefers-reduced-motion: reduce) {
    .halloween-event-image {
        transition: none;
    }
}

/* ----------------------
   REGION-DRIVEN EVENT SECTIONS
---------------------- */

.halloween-region-count,
.halloween-region-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    border-radius: 999px;
    font-weight: 700;
    line-height: 1;
    white-space: nowrap;
}

.halloween-region-count {
    padding: 0.55rem 0.8rem;
    border: 1px solid var(--halloween-border);
    background: #fff;
    color: var(--halloween-ink) !important;
    font-size: 0.78rem;
}

.halloween-region-count .material-icons {
    font-size: 1rem;
}

.halloween-region-badge {
    padding: 0.3rem 0.58rem;
    font-size: 0.7rem;
    letter-spacing: 0.03em;
    text-transform: uppercase;
}

.halloween-region-count.region-uk,
.halloween-region-badge.region-uk {
    background: #eeeaf7;
    border-color: #d8cee9;
    color: #51356a !important;
}

.halloween-region-count.region-europe,
.halloween-region-badge.region-europe {
    background: #fff0dc;
    border-color: #f2d0a8;
    color: #8a5214 !important;
}

.halloween-region-count.region-international,
.halloween-region-badge.region-international {
    background: #e8f3f4;
    border-color: #c8dfe1;
    color: #2d6267 !important;
}

.halloween-region-count.region-other,
.halloween-region-badge.region-other {
    background: #eeeeef;
    border-color: #d9d9dc;
    color: #5e5b63 !important;
}

.halloween-dark-section .halloween-region-count {
    border-color: rgba(255, 255, 255, 0.18);
}

.halloween-empty-state-dark {
    border-color: rgba(255, 255, 255, 0.15);
    background: rgba(255, 255, 255, 0.08);
}

.halloween-empty-state-dark p {
    color: #fff !important;
}

.halloween-empty-state-dark .material-icons {
    color: var(--halloween-orange) !important !important;
}

.halloween-pick-card {
    display: flex;
    flex-direction: column;
    padding: 0;
    overflow: hidden;
    border: 1px solid var(--halloween-border);
    border-radius: 18px;
    background: #fff;
    box-shadow: 0 8px 22px rgba(33, 21, 37, 0.05);
}

.halloween-pick-image-link {
    position: relative;
    display: block;
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background: #f3f0f5;
}

.halloween-pick-image {
    position: absolute;
    inset: 0;
    display: block;
    width: 100% !important;
    height: 100% !important;
    max-width: none !important;
    object-fit: cover;
    object-position: center;
    transition: transform 0.25s ease;
}

.halloween-pick-card:hover .halloween-pick-image {
    transform: scale(1.025);
}

.halloween-pick-card-body {
    display: flex;
    flex: 1 1 auto;
    flex-direction: column;
    padding: 1.4rem;
}

.halloween-pick-topline {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    margin-bottom: 1rem;
}

.halloween-pick-topline .material-icons {
    color: var(--halloween-orange) !important;
}

.halloween-pick-label {
    color: var(--halloween-purple) !important;
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.halloween-pick-card h3 {
    color: var(--halloween-ink) !important;
    font-size: 1.2rem;
}

.halloween-pick-card-body > p {
    color: var(--halloween-muted) !important;
}

.halloween-pick-footer {
    margin-top: auto;
    padding-top: 1rem;
}



@media (max-width: 767.98px) {
    .halloween-region-count {
        align-self: flex-start;
    }
}

