:root {
    --primary-background: #111111;
    --surface-background: #1a1a1a;
    --surface-elevated: #242424;
    --accent-olive: #78866B;
    --accent-beige: #C7B89A;
    --accent-beige-hover: #D8CBB2;
    --text-primary: #F2F0E9;
    --text-secondary: #B8B5AD;
    --text-muted: #85827A;
    --border-color: #2E2E2E;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    padding: 0;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 1rem;
    line-height: 1.6;
    background-color: var(--primary-background);
    color: var(--text-primary);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Oswald', sans-serif;
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    margin-top: 0;
    margin-bottom: 0.75rem;
}

h1 {
    font-size: clamp(2.25rem, 5vw, 4rem);
}

h2 {
    font-size: clamp(1.75rem, 3.5vw, 2.75rem);
}

h3 {
    font-size: clamp(1.25rem, 2.5vw, 1.75rem);
}

h4 {
    font-size: 1.25rem;
}

h5 {
    font-size: 1.125rem;
}

h6 {
    font-size: 1rem;
}

p {
    margin-top: 0;
    margin-bottom: 1rem;
}

a,
a:hover,
a:focus {
    text-decoration: none;
    transition: color 0.2s ease-in-out, background-color 0.2s ease-in-out, border-color 0.2s ease-in-out;
}

a:focus-visible,
button:focus-visible {
    outline: 2px solid var(--accent-beige);
    outline-offset: 2px;
}

button {
    cursor: pointer;
    border: none;
    font-family: inherit;
    transition: background-color 0.2s ease-in-out, color 0.2s ease-in-out, border-color 0.2s ease-in-out, transform 0.1s ease-in-out;
}

button:active {
    transform: translateY(1px);
}

ul,
ol {
    list-style: none;
    padding: 0;
    margin: 0;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

@media (max-width: 768px) {
    h1 {
        font-size: 2rem;
        word-break: break-word;
    }

    h2 {
        font-size: 1.625rem;
        word-break: break-word;
    }

    h3 {
        font-size: 1.3rem;
        word-break: break-word;
    }

    h4 {
        font-size: 1.125rem;
    }

    h5 {
        font-size: 1rem;
    }

    a,
    span,
    p {
        overflow-wrap: break-word;
        word-break: break-word;
    }
}

/* ===== site_header ===== */
.oasis-header {
    background-color: var(--primary-background);
    border-bottom: 1px solid var(--border-color);
    z-index: 100;
    overflow: hidden
}

.oasis-logo {
    max-width: 48px;
    height: auto;
    object-fit: contain
}

.oasis-brand-text {
    font-size: 0.95rem;
    letter-spacing: 0.05em;
    color: var(--text-primary)
}

@media(max-width:767.98px) {
    .oasis-brand-text {
        font-size: 0.75rem
    }
}

.oasis-nav-link {
    color: var(--text-secondary);
    font-size: 0.95rem;
    transition: color .2s ease-in-out;
    position: relative;
    padding: 0.25rem 0
}

.oasis-nav-link:hover,
.oasis-nav-link:focus {
    color: var(--accent-beige)
}

.oasis-nav-divider {
    width: 1px;
    height: 24px;
    background-color: var(--border-color)
}

.oasis-cta-btn {
    background-color: var(--accent-beige);
    color: var(--primary-background);
    border: 1px solid var(--accent-beige);
    padding: 0.5rem 1.25rem;
    border-radius: 4px;
    transition: all .2s ease-in-out
}

.oasis-cta-btn:hover,
.oasis-cta-btn:focus {
    background-color: var(--accent-beige-hover);
    border-color: var(--accent-beige-hover);
    color: var(--primary-background)
}

.navbar-toggler {
    background-color: var(--surface-elevated);
    cursor: pointer;
    line-height: 1
}

.text-primary-custom {
    color: var(--text-primary)
}

.oasis-mobile-menu {
    background-color: var(--surface-background);
    border-top: 1px solid var(--border-color);
    max-height: 0;
    overflow: hidden;
    transition: max-height .3s ease-in-out
}

.oasis-mobile-menu.open {
    max-height: 360px
}

.oasis-mobile-nav-link {
    color: var(--text-primary);
    min-height: 44px;
    display: flex;
    align-items: center;
    transition: background-color .2s ease, color .2s ease
}

.oasis-mobile-nav-link:hover,
.oasis-mobile-nav-link:focus {
    background-color: var(--surface-elevated);
    color: var(--accent-beige)
}

/* ===== hero_section ===== */
#hero {
    overflow: hidden;
    min-height: 85vh;
    background-color: var(--primary-background);
    color: var(--text-primary);
}

.hero-bg-wrapper {
    z-index: 1;
    pointer-events: none;
}

.hero-bg-img {
    object-fit: cover;
    object-position: center 30%;
}

.hero-overlay {
    background: linear-gradient(180deg, rgba(17, 17, 17, 0.75) 0%, rgba(17, 17, 17, 0.9) 85%, #111111 100%);
    z-index: 2;
}

#hero .container {
    z-index: 3;
}

.hero-badge {
    background-color: rgba(120, 134, 107, 0.25);
    border: 1px solid var(--accent-olive);
}

.hero-badge-icon {
    color: var(--accent-beige);
    font-size: 0.875rem;
}

.hero-badge-text {
    color: var(--accent-beige);
    font-size: 0.8125rem;
    letter-spacing: 0.05em;
    font-weight: 600;
    text-transform: uppercase;
}

.hero-title {
    color: var(--text-primary);
    font-size: 2.75rem;
    line-height: 1.15;
    letter-spacing: -0.02em;
    hyphens: auto;
}

.hero-description {
    color: var(--text-secondary);
    max-width: 760px;
    font-size: 1.125rem;
    line-height: 1.6;
}

.hero-btn-primary {
    background-color: var(--accent-beige);
    color: #111111;
    border: 1px solid var(--accent-beige);
    border-radius: 4px;
    transition: background-color 0.2s ease, transform 0.2s ease;
}

.hero-btn-primary:hover,
.hero-btn-primary:focus {
    background-color: var(--accent-beige-hover);
    color: #111111;
    border-color: var(--accent-beige-hover);
}

.hero-btn-secondary {
    background-color: transparent;
    color: var(--text-primary);
    border: 1px solid var(--accent-olive);
    border-radius: 4px;
    transition: background-color 0.2s ease, border-color 0.2s ease;
}

.hero-btn-secondary:hover,
.hero-btn-secondary:focus {
    background-color: rgba(120, 134, 107, 0.2);
    color: var(--text-primary);
    border-color: var(--accent-beige);
}

.hero-stat-box {
    background-color: rgba(26, 26, 26, 0.8);
    border: 1px solid var(--border-color);
}

.hero-stat-val {
    color: var(--accent-beige);
    font-size: 1rem;
}

.hero-stat-lbl {
    color: var(--text-secondary);
    font-size: 0.75rem;
}

@media (max-width: 767.98px) {
    #hero {
        min-height: auto;
    }

    .hero-title {
        font-size: 1.125rem;
        line-height: 1.25;
    }

    .hero-description {
        font-size: 0.875rem;
        line-height: 1.4;
    }

    .hero-badge-text {
        font-size: 0.7rem;
    }

    .hero-btn-primary,
    .hero-btn-secondary {
        width: 100%;
    }
}

/* ===== style_sound_section ===== */
.style-sound-section {
    background-color: var(--surface-background);
    color: var(--text-primary);
    overflow: hidden;
    hyphens: auto;
}

.style-sound-section .card {
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    border: 1px solid var(--border-color) !important;
}

.style-sound-section .card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.style-sound-section .image-wrapper img {
    transition: transform 0.5s ease;
}

.style-sound-section .image-wrapper:hover img {
    transform: scale(1.02);
}

.style-sound-section h2 {
    line-height: 1.2;
}

.style-sound-section h3 {
    line-height: 1.2;
}

@media(max-width:767.98px) {
    .style-sound-section h2 {
        font-size: 1rem;
        line-height: 1.2;
    }

    .style-sound-section h3 {
        font-size: 0.875rem;
        line-height: 1.2;
    }

    .style-sound-section .lead {
        font-size: 0.875rem;
    }

    .style-sound-section .image-wrapper img {
        height: 320px !important;
        min-height: 320px !important;
    }
}

/* ===== manchester_origin_section ===== */
.manchester-section {
    background-color: var(--surface-background);
    color: var(--text-primary);
    hyphens: auto;
}

.text-primary-custom {
    color: var(--text-primary) !important;
}

.text-secondary-custom {
    color: var(--text-secondary) !important;
}

.text-muted-custom {
    color: var(--text-muted) !important;
}

.text-accent-olive {
    color: var(--accent-olive) !important;
}

.text-accent-beige {
    color: var(--accent-beige) !important;
}

.manchester-badge {
    background-color: var(--surface-elevated);
    border: 1px solid var(--accent-olive);
    width: fit-content;
}

.manchester-quote-card {
    background-color: var(--surface-elevated);
    border-left: 4px solid var(--accent-olive);
    border-top: 1px solid var(--border-color);
    border-right: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.manchester-stat-box {
    background-color: var(--surface-elevated);
    border: 1px solid var(--border-color);
}

.manchester-image-frame {
    border: 1px solid var(--border-color);
    background-color: var(--surface-elevated);
}

.manchester-main-img {
    height: 440px;
    min-height: 320px;
    transition: transform 0.4s ease;
}

.manchester-image-frame:hover .manchester-main-img {
    transform: scale(1.02);
}

.manchester-floating-tag {
    position: absolute;
    bottom: 24px;
    left: 24px;
    background-color: rgba(26, 26, 26, 0.92);
    border: 1px solid var(--accent-olive);
    backdrop-filter: blur(8px);
}

@media (max-width: 767.98px) {
    .manchester-section h2 {
        font-size: 1rem !important;
        line-height: 1.25;
    }

    .manchester-section .lead {
        font-size: 0.9rem;
    }

    .manchester-main-img {
        height: 280px;
    }
}

/* ===== big_stage_eras_section ===== */
#buehnen-aera {
    background-color: var(--primary-background);
    overflow: hidden;
    hyphens: auto
}

#buehnen-aera .eras-kicker {
    color: var(--accent-beige);
    letter-spacing: .08em;
    font-size: .875rem
}

#buehnen-aera .eras-title {
    color: var(--text-primary);
    letter-spacing: -.02em
}

#buehnen-aera .eras-subtitle {
    color: var(--text-secondary);
    max-width: 700px;
    font-size: 1rem;
    line-height: 1.6
}

#buehnen-aera .eras-card {
    background-color: var(--surface-background);
    border: 1px solid var(--border-color);
    transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease
}

#buehnen-aera .eras-card:hover {
    transform: translateY(-4px);
    border-color: var(--accent-olive);
    box-shadow: 0 12px 24px rgba(0, 0, 0, .4)
}

#buehnen-aera .eras-badge {
    background-color: var(--surface-elevated);
    color: var(--accent-beige);
    font-size: .875rem;
    padding: .35rem .75rem;
    border: 1px solid var(--border-color)
}

#buehnen-aera .eras-icon-wrap {
    width: 42px;
    height: 42px;
    background-color: var(--surface-elevated);
    border: 1px solid var(--border-color)
}

#buehnen-aera .eras-icon {
    color: var(--accent-beige);
    font-size: 1.15rem
}

#buehnen-aera .eras-card-title {
    color: var(--text-primary);
    font-size: 1.25rem;
    line-height: 1.3
}

#buehnen-aera .eras-venue {
    color: var(--accent-olive);
    font-size: .85rem
}

#buehnen-aera .eras-venue-icon {
    color: var(--accent-olive);
    font-size: .85rem
}

#buehnen-aera .eras-venue-text {
    color: var(--accent-olive)
}

#buehnen-aera .eras-card-desc {
    color: var(--text-secondary);
    font-size: .925rem;
    line-height: 1.55
}

#buehnen-aera .eras-card-bottom {
    border-top: 1px dashed var(--border-color)
}

#buehnen-aera .eras-fact {
    font-size: .825rem
}

#buehnen-aera .eras-fact-icon {
    color: var(--accent-beige);
    font-size: .9rem
}

#buehnen-aera .eras-fact-text {
    color: var(--text-muted);
    font-weight: 500
}

@media(max-width:767.98px) {
    #buehnen-aera .eras-title {
        font-size: 1rem;
        line-height: 1.2
    }

    #buehnen-aera .eras-card-title {
        font-size: .875rem;
        line-height: 1.2
    }

    #buehnen-aera .eras-subtitle {
        font-size: .875rem;
        line-height: 1.4
    }

    #buehnen-aera .eras-card-desc {
        font-size: .85rem;
        line-height: 1.45
    }
}

/* ===== why_remembered_section ===== */
#legende-oasis {
    overflow: hidden;
}

#legende-oasis .js-feature-card {
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    width: 100%;
}

#legende-oasis .js-feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.45);
}

@media (max-width: 767.98px) {
    #legende-oasis h2 {
        font-size: 1rem !important;
        line-height: 1.25;
        hyphens: auto;
    }

    #legende-oasis h3 {
        font-size: 0.875rem !important;
        line-height: 1.2;
        hyphens: auto;
    }
}

/* ===== oasis_return_section ===== */
.oasis-return-section {
    background-color: var(--primary-background);
    color: var(--text-primary);
    border-bottom: 1px solid var(--border-color);
}

.oasis-return-section hyphens: auto;

.oasis-section-title {
    color: var(--text-primary);
    font-weight: 700;
    line-height: 1.25;
    font-size: 2.25rem;
}

@media (max-width: 767.98px) {
    .oasis-section-title {
        font-size: 1rem;
        line-height: 1.2;
    }

    .oasis-narrative-text {
        font-size: 0.875rem;
    }

    .oasis-quote-text {
        font-size: 0.85rem;
    }
}

.oasis-tag {
    background-color: var(--surface-elevated);
    color: var(--accent-beige);
    border: 1px solid var(--accent-beige);
    border-radius: 4px;
    font-size: 0.75rem;
    letter-spacing: 0.08em;
    display: inline-block;
}

.oasis-narrative-text {
    color: var(--text-secondary);
    line-height: 1.7;
    font-size: 1rem;
}

.oasis-image-frame {
    border: 2px solid var(--accent-beige);
    padding: 8px;
    border-radius: 8px;
    background-color: var(--surface-background);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.oasis-image-frame img {
    height: 440px;
    object-fit: cover;
    display: block;
    border-radius: 4px;
}

@media (max-width: 991.98px) {
    .oasis-image-frame img {
        height: 320px;
    }
}

.oasis-quote-card {
    background-color: var(--surface-background);
    border-left: 4px solid var(--accent-beige);
    border-top: 1px solid var(--border-color);
    border-right: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    border-radius: 0 8px 8px 0;
}

.oasis-quote-icon {
    color: var(--accent-beige);
    line-height: 1;
}

.oasis-quote-text {
    color: var(--text-primary);
    font-size: 1.05rem;
    line-height: 1.5;
}

.oasis-quote-author {
    color: var(--accent-beige);
    font-size: 0.85rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

/* ===== tour_geography_section ===== */
#tour-geografie {
    overflow: hidden;
    width: 100%;
}

#tour-geografie .card {
    transition: transform 0.25s ease, border-color 0.25s ease;
}

#tour-geografie .card:hover {
    transform: translateY(-4px);
    border-color: var(--accent-olive) !important;
}

#tour-geografie .js-stage-item:hover {
    border-color: var(--accent-beige) !important;
    transform: translateY(-2px);
}

@media (max-width: 767.98px) {
    #tour-geografie h2 {
        font-size: 1rem !important;
        line-height: 1.25;
        hyphens: auto;
    }

    #tour-geografie h3 {
        font-size: 0.875rem !important;
        line-height: 1.2;
        hyphens: auto;
    }

    #tour-geografie p.lead {
        font-size: 0.9rem !important;
    }
}

/* ===== tour_calendar_section ===== */
.tour-calendar-section {
    width: 100%;
    hyphens: auto;
}

.custom-filter-btn {
    background-color: var(--surface-background);
    border: 1px solid var(--border-color);
    font-weight: 500;
    padding: 0.5rem 1.25rem;
    border-radius: 30px;
    transition: all 0.3s ease;
}

.custom-filter-btn:hover {
    background-color: var(--surface-elevated);
    border-color: var(--accent-beige);
    color: var(--text-primary);
}

.custom-filter-btn.active {
    background-color: var(--accent-olive);
    border-color: var(--accent-olive);
    color: #ffffff !important;
}

.custom-tour-card {
    transition: transform 0.2s ease, border-color 0.2s ease;
}

.custom-tour-card:hover {
    transform: translateY(-4px);
    border-color: var(--accent-olive) !important;
}

.custom-badge-status {
    font-size: 0.75rem;
    font-weight: 600;
}

@media (max-width: 767.98px) {
    .tour-calendar-section h2 {
        font-size: 1rem !important;
        line-height: 1.2;
    }

    .tour-calendar-section h3 {
        font-size: 0.875rem !important;
        line-height: 1.2;
    }

    .custom-filter-btn {
        font-size: 0.85rem;
        padding: 0.4rem 0.9rem;
    }
}

/* ===== legendary_moments_section ===== */
.legendary-moments-section {
    background-color: #1a1a1a;
    color: #F2F0E9
}

.history-badge {
    background-color: #242424;
    border: 1px solid #2E2E2E
}

.text-beige {
    color: #C7B89A
}

.icon-beige {
    color: #C7B89A
}

.text-olive {
    color: #78866B
}

.icon-olive {
    color: #78866B
}

.text-secondary {
    color: #B8B5AD
}

.tracking-wider {
    letter-spacing: .08em
}

.history-card {
    background-color: #242424;
    border: 1px solid #2E2E2E;
    transition: transform .3s ease, box-shadow .3s ease
}

.history-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, .45);
    border-color: #78866B
}

.card-img-wrapper {
    height: 220px;
    overflow: hidden;
    background-color: #111111
}

.moment-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .5s ease
}

.history-card:hover .moment-img {
    transform: scale(1.05)
}

.year-tag {
    background-color: #C7B89A;
    box-shadow: 0 2px 6px rgba(0, 0, 0, .3);
    font-size: .85rem;
    line-height: 1.2
}

.year-tag span {
    color: #111111
}

.special-banner {
    height: 220px;
    background: radial-gradient(circle at center, #2E2E2E 0, #111111 100%)
}

.special-icon-box {
    width: 56px;
    height: 56px;
    background-color: #242424;
    border: 1px solid #C7B89A
}

@media (max-width:767.98px) {
    .legendary-moments-section h2 {
        font-size: 1rem !important;
        line-height: 1.2 !important;
        hyphens: auto
    }

    .legendary-moments-section h3 {
        font-size: .875rem !important;
        line-height: 1.2 !important;
        hyphens: auto
    }

    .card-img-wrapper,
    .special-banner {
        height: 190px
    }
}

/* ===== cities_waiting_section ===== */
#tour-staedte {
    overflow: hidden;
}

#tour-staedte .card {
    transition: transform 0.25s ease, border-color 0.25s ease;
    width: 100%;
}

#tour-staedte .card:hover {
    transform: translateY(-4px);
    border-color: var(--accent-olive) !important;
}

#tour-staedte .js-modal-trigger:hover {
    background-color: var(--accent-beige-hover) !important;
    color: var(--primary-background) !important;
}

#tour-staedte .modal-content {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
}

@media (max-width: 767.98px) {
    #tour-staedte h2 {
        font-size: 1rem !important;
        line-height: 1.25;
        hyphens: auto;
    }

    #tour-staedte h3 {
        font-size: 0.875rem !important;
        line-height: 1.2;
        hyphens: auto;
    }
}

/* ===== ticket_categories_section ===== */
#ticket-kategorien {
    width: 100%;
    box-sizing: border-box;
}

#ticket-kategorien h2,
#ticket-kategorien h3,
#ticket-kategorien p {
    hyphens: auto;
}

@media (max-width: 767.98px) {
    #ticket-kategorien .section-title {
        font-size: 1rem !important;
        line-height: 1.2 !important;
    }

    #ticket-kategorien .status-banner-heading,
    #ticket-kategorien .category-card-title {
        font-size: 0.875rem !important;
        line-height: 1.25 !important;
    }

    #ticket-kategorien .category-card {
        padding: 1.25rem !important;
    }
}

.category-card:hover {
    border-color: var(--accent-olive) !important;
}

/* ===== concert_atmosphere_section ===== */
#konzert-atmosphaere .js-atmosphere-card {
    transition: transform 0.25s ease, border-color 0.25s ease;
    width: 100%;
}

#konzert-atmosphaere .js-atmosphere-card:hover {
    transform: translateY(-4px);
    border-color: var(--accent-beige) !important;
}

/* ===== tour_experience_section ===== */
#das-erlebnis {
    overflow: hidden;
    hyphens: auto;
}

#das-erlebnis .js-experience-card:hover {
    transform: translateY(-4px);
    border-color: var(--accent-olive) !important;
}

@media(max-width:767.98px) {
    #das-erlebnis h2 {
        font-size: 1rem;
        line-height: 1.2;
    }

    #das-erlebnis h3 {
        font-size: 0.875rem;
        line-height: 1.2;
    }

    #das-erlebnis p {
        font-size: 0.875rem;
        line-height: 1.4;
    }
}

/* ===== site_footer ===== */
#footer {
    position: relative;
    width: 100%;
    hyphens: auto
}

.footer-logo-img {
    max-width: 50px;
    height: auto;
    object-fit: cover;
    border-radius: 4px
}

.text-olive {
    color: #78866B
}

.text-muted-custom {
    color: #85827A
}

.footer-link {
    transition: color .2s ease-in-out
}

.footer-link:hover {
    color: #C7B89A !important
}

.tracking-wider {
    letter-spacing: .05em
}

.map-container iframe {
    filter: grayscale(80%) invert(90%) contrast(85%)
}

@media(max-width:767.98px) {
    #footer h3 {
        font-size: .875rem !important;
        line-height: 1.2
    }
}

/* ===== legal_pages ===== */
.legal-page-main h1 {
    font-size: clamp(1.5rem, 3vw, 2.1rem);
    line-height: 1.25;
}

.legal-page-main h2 {
    font-size: clamp(1.05rem, 2vw, 1.4rem);
    line-height: 1.3;
}

.legal-page-main h3 {
    font-size: clamp(0.95rem, 1.6vw, 1.15rem);
    line-height: 1.3;
}

@media (max-width: 767.98px) {
    .legal-page-main h1 {
        font-size: 1.35rem;
    }

    .legal-page-main h2 {
        font-size: 1rem;
    }

    .legal-page-main h3 {
        font-size: 0.9rem;
    }
}

/* ===== stage_tracker_mobile_fix ===== */
@media (max-width: 767.98px) {
    #tour-geografie .js-stage-item {
        padding: 0.75rem !important;
        overflow-wrap: anywhere;
    }

    #tour-geografie .js-stage-item .badge {
        font-size: 0.68rem;
        white-space: normal;
    }

    #tour-geografie .js-stage-item h4 {
        font-size: 0.8rem !important;
        line-height: 1.25;
        overflow-wrap: anywhere;
        word-break: break-word;
        hyphens: auto;
    }

    #tour-geografie .js-stage-item p {
        font-size: 0.72rem !important;
        line-height: 1.35;
        overflow-wrap: anywhere;
        word-break: break-word;
    }
}

/* ===== concert_card_labels_mobile_fix ===== */
@media (max-width: 767.98px) {
    .tour-card-head {
        flex-wrap: wrap;
        row-gap: 0.5rem;
        column-gap: 0.5rem;
    }

    .tour-card-head .custom-badge-status {
        font-size: 0.65rem;
        padding: 0.35rem 0.65rem;
        white-space: normal;
        line-height: 1.25;
        text-align: left;
    }

    .tour-card-head .concert-region-label {
        white-space: nowrap;
        flex-shrink: 0;
        margin-left: auto;
        align-self: center;
    }
}