/**
 * ColdLife EventBrain — Frontend Styles
 * All classes prefixed cleb- to avoid theme conflicts.
 * Mobile-first, inherits theme fonts.
 */

/* ==========================================================================
   Custom Properties
   ========================================================================== */

:root {
    /* Muted palette (customer: "nicht so bunt") — designer restyles later */
    --cleb-primary: #1d3557;
    --cleb-primary-hover: #14263f;
    /* Customizable accents (settings page) — default to the base palette */
    --cleb-date-badge: var(--cleb-secondary);
    --cleb-date-badge-text: #ffffff;
    --cleb-button: var(--cleb-primary);
    --cleb-button-text: #ffffff;
    --cleb-link: var(--cleb-primary);
    --cleb-icon: var(--cleb-primary);
    --cleb-secondary: #1d3557;
    --cleb-text: #1a1a2e;
    --cleb-text-muted: #6c757d;
    --cleb-bg: #ffffff;
    --cleb-bg-alt: #f8f9fa;
    --cleb-border: #e2e8f0;
    --cleb-radius: 8px;
    --cleb-radius-sm: 4px;
    --cleb-shadow: 0 1px 3px rgba(0, 0, 0, 0.08), 0 1px 2px rgba(0, 0, 0, 0.06);
    --cleb-shadow-md: 0 4px 12px rgba(0, 0, 0, 0.1);
    --cleb-transition: 0.2s ease;

    /* Badge colors */
    /* Status hues: tinted chips (light bg + toned text), distinct but quiet */
    --cleb-soldout: #a12f2f;
    --cleb-soldout-bg: #fbeaea;
    --cleb-postponed: #9a6700;
    --cleb-postponed-bg: #faf1dc;
    --cleb-cancelled: #57606a;
    --cleb-cancelled-bg: #eff1f3;
    --cleb-relocated: #3a5e8c;
    --cleb-relocated-bg: #e9f0f9;
}

/* ==========================================================================
   Theme Override — Neuros decorative body-lines overlay blocks all clicks
   ========================================================================== */

.body-lines {
    display: none !important;
}

.cleb-page .cleb-wrap,
.cleb-page .cleb-single-event,
.cleb-page .cleb-single-artist,
.cleb-page .cleb-hero {
    position: relative;
    z-index: 1;
}

/* ==========================================================================
   Theme Override — Elementor/Neuros resets a { color: inherit; text-decoration: none }
   which makes all our links invisible. Force clickable appearance.
   ========================================================================== */

.cleb-page a[href].cleb-btn,
.cleb-page a[href].cleb-event-card__title-link,
.cleb-page a[href].cleb-artist-card,
.cleb-page a[href].cleb-social-link,
.cleb-page a[href].cleb-sidebar-link {
    cursor: pointer !important;
    pointer-events: auto !important;
}

/* Links inside content/venue/info sections */
.cleb-page .cleb-info-bar__text a[href],
.cleb-page .cleb-venue-details a[href],
.cleb-page .cleb-content a[href] {
    color: var(--cleb-link) !important;
    text-decoration: underline !important;
    cursor: pointer !important;
}

.cleb-page .cleb-info-bar__text a[href]:hover,
.cleb-page .cleb-venue-details a[href]:hover,
.cleb-page .cleb-content a[href]:hover {
    color: color-mix(in srgb, var(--cleb-link) 85%, #000) !important;
}

/* ==========================================================================
   Base / Layout
   ========================================================================== */

.cleb-wrap {
    font-family: inherit;
    color: var(--cleb-text);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    min-height: 60vh;
}

.cleb-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Archive/single templates sit inside Neuros' .content-wrapper > .content, which
   owns width, side padding and the 90/120/150px top+bottom rhythm - same as every
   Elementor page. Our container must not add a second box on top of that. */
.content.cleb-container {
    max-width: none;
    padding: 0;
}

.cleb-section:last-child {
    margin-bottom: 0;
}

.cleb-section {
    margin: 0 0 2.5rem;
}

.cleb-section__title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--cleb-secondary);
    margin: 0 0 1.25rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--cleb-primary);
    display: inline-block;
}

.cleb-content {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--cleb-text);
}

.cleb-content p {
    margin: 0 0 1rem;
}

.cleb-content a {
    color: var(--cleb-primary);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.cleb-no-results {
    text-align: center;
    color: var(--cleb-text-muted);
    padding: 3rem 1rem;
    font-size: 1.125rem;
}

/* ==========================================================================
   Buttons
   ========================================================================== */

.cleb-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.625rem 1.25rem;
    border-radius: var(--cleb-radius-sm);
    font-weight: 600;
    font-size: 0.875rem;
    text-decoration: none !important;
    transition: all var(--cleb-transition);
    cursor: pointer !important;
    border: none;
    line-height: 1.4;
}

.cleb-btn svg {
    flex-shrink: 0;
}

.cleb-btn--ticket {
    background: var(--cleb-button) !important;
    color: var(--cleb-button-text) !important;
}

.cleb-btn--ticket:hover,
.cleb-btn--ticket:focus {
    background: color-mix(in srgb, var(--cleb-button) 85%, #000) !important;
    color: var(--cleb-button-text) !important;
    text-decoration: none !important;
    box-shadow: var(--cleb-shadow-md);
}

.cleb-btn--lg {
    padding: 0.875rem 1.75rem;
    font-size: 1rem;
    border-radius: var(--cleb-radius);
}

.cleb-btn--lg small {
    font-weight: 400;
    opacity: 0.9;
}

.cleb-btn--outline {
    background: transparent !important;
    color: var(--cleb-secondary) !important;
    border: 1px solid var(--cleb-border) !important;
}

.cleb-btn--outline:hover {
    background: var(--cleb-bg-alt) !important;
    border-color: var(--cleb-secondary) !important;
    text-decoration: none !important;
    color: var(--cleb-secondary) !important;
}

.cleb-btn--ticket-vendor {
    background: var(--cleb-bg) !important;
    color: var(--cleb-text) !important;
    border: 1px solid var(--cleb-border) !important;
    padding: 0.75rem 1.25rem;
    border-radius: var(--cleb-radius);
}

.cleb-btn--ticket-vendor:hover {
    border-color: var(--cleb-primary) !important;
    color: var(--cleb-primary) !important;
    text-decoration: none !important;
}

.cleb-btn--info {
    background: transparent !important;
    color: var(--cleb-text-muted) !important;
    border: 1px solid var(--cleb-border) !important;
}

.cleb-btn--info:hover,
.cleb-btn--info:focus {
    border-color: var(--cleb-primary) !important;
    color: var(--cleb-primary) !important;
    text-decoration: none !important;
}

.cleb-ticket-vendors {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.cleb-btn--presskit {
    background: var(--cleb-secondary) !important;
    color: #fff !important;
    margin-top: 0.75rem;
}

.cleb-btn--presskit:hover,
.cleb-btn--presskit:focus {
    background: var(--cleb-primary) !important;
    color: #fff !important;
    text-decoration: none !important;
    box-shadow: var(--cleb-shadow-md);
}

/* ==========================================================================
   Status Badges
   ========================================================================== */

.cleb-status-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
    padding-top: 1rem;
}

.cleb-badge {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    border-radius: 2rem;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    line-height: 1.4;
}

.cleb-badge--sm {
    padding: 0.125rem 0.5rem;
    font-size: 0.625rem;
    vertical-align: middle;
    margin-left: 0.375rem;
}

.cleb-badge--soldout { background: var(--cleb-soldout-bg); color: var(--cleb-soldout); border: 1px solid color-mix(in srgb, var(--cleb-soldout) 25%, transparent); }
.cleb-badge--postponed { background: var(--cleb-postponed-bg); color: var(--cleb-postponed); border: 1px solid color-mix(in srgb, var(--cleb-postponed) 25%, transparent); }
.cleb-badge--cancelled { background: var(--cleb-cancelled-bg); color: var(--cleb-cancelled); border: 1px solid color-mix(in srgb, var(--cleb-cancelled) 25%, transparent); }
.cleb-badge--relocated { background: var(--cleb-relocated-bg); color: var(--cleb-relocated); border: 1px solid color-mix(in srgb, var(--cleb-relocated) 25%, transparent); }

/* ==========================================================================
   Show Table (artist single — compact scannable list)
   ========================================================================== */

.cleb-show-table-wrap {
    overflow-x: auto; /* small screens scroll the table instead of breaking layout */
}

.cleb-show-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.9375rem;
}

.cleb-show-table th {
    text-align: left;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--cleb-text-muted);
    padding: 0.5rem 0.75rem;
    border-bottom: 2px solid var(--cleb-border);
    white-space: nowrap;
}

.cleb-show-table td {
    padding: 0.625rem 0.75rem;
    border-bottom: 1px solid var(--cleb-border);
    vertical-align: middle;
    color: var(--cleb-text);
}

.cleb-show-table tbody tr:hover {
    background: var(--cleb-bg-alt);
}

.cleb-show-table__date {
    white-space: nowrap;
    font-variant-numeric: tabular-nums;
}

.cleb-show-table__date a {
    color: var(--cleb-link);
    font-weight: 700;
    text-decoration: none;
}

.cleb-show-table__date a:hover {
    text-decoration: underline;
}

/* Stadt/Venue link to the event page but read as plain text */
.cleb-show-table__link {
    color: var(--cleb-text);
    text-decoration: none;
}

.cleb-show-table tbody tr:hover .cleb-show-table__link {
    text-decoration: underline;
}

.cleb-show-table__ticket,
.cleb-show-table th.cleb-show-table__ticket {
    text-align: center;
    white-space: nowrap;
    width: 1px; /* shrink-to-fit: column hugs the button, heading centers over it */
}

.cleb-show-table__na {
    color: var(--cleb-text-muted);
}

.cleb-show-table__row--cancelled td {
    opacity: 0.55;
    text-decoration: line-through;
}

.cleb-show-table__row--cancelled td.cleb-show-table__ticket {
    text-decoration: none;
}

/* ==========================================================================
   Event Card (archive + artist page)
   ========================================================================== */

/* Shows grid layout (Einstellungen -> Darstellung: Grid) */
.cleb-event-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.cleb-event-grid-card {
    background: var(--cleb-bg);
    border: 1px solid var(--cleb-border);
    border-radius: var(--cleb-radius);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: box-shadow var(--cleb-transition), transform var(--cleb-transition);
}

.cleb-event-grid-card:hover {
    box-shadow: var(--cleb-shadow-md);
    transform: translateY(-2px);
}

.cleb-event-grid-card--past {
    opacity: 0.5;
}

.cleb-event-grid-card--past .cleb-event-card__date {
    background: var(--cleb-text-muted);
}

.cleb-event-grid-card__image {
    display: block;
    position: relative;
    aspect-ratio: 3 / 2;
    background: var(--cleb-bg-alt);
}

.cleb-event-grid-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* Press photos are mostly portrait — crop from the top so faces survive */
    object-position: center 25%;
    display: block;
}

.cleb-event-grid-card__placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    color: var(--cleb-text-muted);
}

.cleb-event-grid-card__placeholder svg {
    width: 2rem;
    height: 2rem;
}

.cleb-event-grid-card__date {
    position: absolute;
    top: 0.75rem;
    left: 0.75rem;
}

.cleb-event-grid-card__content {
    display: flex;
    flex-direction: column;
    gap: 0.375rem;
    padding: 1rem 1.25rem 1.25rem;
    flex: 1;
}

.cleb-event-grid-card__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: auto;
    padding-top: 0.75rem;
}

@media (min-width: 480px) {
    .cleb-event-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .cleb-event-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Doppelte Liste: list cards 2-up on desktop, single column on mobile */
.cleb-event-list.cleb-event-list--2col {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    background: none;
    border-radius: 0;
    overflow: visible;
}

.cleb-event-list--2col .cleb-event-card {
    border: 1px solid var(--cleb-border);
    border-radius: var(--cleb-radius);
    overflow: hidden;
}

@media (min-width: 768px) {
    /* Must match the base rule's double-class specificity, or the
       1-column base declaration wins and 2 columns never activate */
    .cleb-event-list.cleb-event-list--2col {
        grid-template-columns: 1fr 1fr;
    }

    /* Half-width cards: buttons in a right-side column, stacked
       vertically (Tickets over Infos) */
    .cleb-event-list--2col .cleb-event-card__row {
        grid-template-columns: auto 1fr auto;
    }

    .cleb-event-list--2col .cleb-event-card__actions {
        display: flex;
        flex-direction: column;
        gap: 0.5rem;
        align-items: stretch;
        justify-content: center;
    }

    .cleb-event-list--2col .cleb-event-card__actions .cleb-btn {
        justify-content: center;
    }
}

.cleb-event-list {
    display: flex;
    flex-direction: column;
    gap: 1px;
    background: var(--cleb-border);
    border-radius: var(--cleb-radius);
    overflow: hidden;
    box-shadow: var(--cleb-shadow);
}

.cleb-event-card {
    background: var(--cleb-bg);
    position: relative;
}

/* Row layout — replaces old __link (now a div, not <a>) */
.cleb-event-card__row {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 1rem;
    padding: 1rem 1.25rem;
    color: inherit;
    transition: background var(--cleb-transition);
    align-items: center;
}

/* Date tile + artist thumb joined as one block: [][] — equal heights.
   min-height gives the block presence; content stays vertically centered. */
.cleb-event-card__lead {
    display: flex;
    align-items: stretch;
    min-height: 6rem;
}

.cleb-event-card__lead .cleb-event-card__date:not(:only-child) {
    border-radius: var(--cleb-radius-sm) 0 0 var(--cleb-radius-sm);
}

.cleb-event-card__row:hover {
    background: var(--cleb-bg-alt);
}

/* Stretched link: title link covers entire card */
.cleb-event-card__title-link {
    text-decoration: none !important;
    color: inherit !important;
}

.cleb-event-card__title-link::after {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 0;
}

/* Grid cards: no stretched link — only image, title, tickets and Infos are clickable */
.cleb-event-grid-card .cleb-event-card__title-link::after {
    content: none;
}

.cleb-event-card__row:hover .cleb-event-card__title-link {
    color: var(--cleb-primary) !important;
}

/* Date block */
.cleb-event-card__date {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    background: var(--cleb-date-badge);
    color: var(--cleb-date-badge-text);
    border-radius: var(--cleb-radius-sm);
    padding: 0.5rem 0.375rem;
    line-height: 1.2;
    min-width: 4.5rem;
    justify-content: center;
}

.cleb-event-card__day {
    font-size: 1.5rem;
    font-weight: 800;
    line-height: 1;
}

/* Vertical variant: 3-letter weekday rotated bottom-to-top beside the date column.
   Double class beats the base min-width (incl. the mobile 3.5rem override) —
   width comes from content, not from the stacked-variant sizing. */
.cleb-event-card__date.cleb-event-card__date--vertical {
    flex-direction: row;
    align-items: center;
    gap: 0.25rem;
    padding: 0.5rem 0.625rem;
    min-width: 0;
}

.cleb-event-card__weekday-vert {
    writing-mode: vertical-rl;
    transform: rotate(180deg);
    font-size: 0.6875rem;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 0.08em;
    line-height: 1;
    opacity: 0.8;
}

.cleb-event-card__date-col {
    display: flex;
    flex-direction: column;
    align-items: center;
    line-height: 1.2;
}

.cleb-event-card__month {
    font-size: 0.75rem;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 0.05em;
}

.cleb-event-card__year {
    font-size: 0.625rem;
    opacity: 0.7;
}

/* Content */
.cleb-event-card__content {
    min-width: 0;
}

.cleb-event-card__title {
    font-size: 1.1rem;
    font-weight: 700;
    margin: 0 !important;
    padding: 0 !important;
    color: var(--cleb-text);
    line-height: 1.3;
}

.cleb-event-card__subtitle {
    display: block;
    font-size: 0.85rem;
    color: var(--cleb-text-muted);
    margin: 0;
    line-height: 1.3;
}

.cleb-event-card__program-subtitle {
    display: block;
    font-size: 0.75rem;
    color: var(--cleb-text-muted);
    margin: 0;
    line-height: 1.3;
}

.cleb-event-card__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 0;
    font-size: 0.9rem;
    color: var(--cleb-text);
}

.cleb-event-card__meta span {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
}

.cleb-event-card__meta svg {
    width: 14px;
    height: 14px;
    opacity: 0.5;
    flex-shrink: 0;
}

/* Venue can wrap to two lines — keep the pin icon on the first line
   instead of floating vertically centered between both */
.cleb-event-card__meta .cleb-event-card__venue {
    align-items: flex-start;
}

.cleb-event-card__venue svg {
    margin-top: 0.22em;
}

/* Actions column — ticket buttons above stretched link */
.cleb-event-card__actions {
    display: none;
    position: relative;
    z-index: 1;
    gap: 0.375rem;
}

.cleb-btn--ticket-sm {
    padding: 0.375rem 0.875rem;
    font-size: 0.75rem;
}

/* Past events */
.cleb-event-card--past {
    opacity: 0.5;
}

.cleb-event-card--past .cleb-event-card__date {
    background: var(--cleb-text-muted);
}

/* Cancelled */
.cleb-event-card--cancelled .cleb-event-card__title {
    text-decoration: line-through;
    text-decoration-color: var(--cleb-cancelled);
}

/* ==========================================================================
   Hero (Single Event)
   ========================================================================== */

.cleb-hero {
    background-color: var(--cleb-secondary);
    background-size: cover;
    background-position: center;
    position: relative;
    min-height: 280px;
    display: flex;
    align-items: flex-end;
}

.cleb-hero__overlay {
    width: 100%;
    padding: 3rem 0 2rem;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.4) 60%, transparent 100%);
}

.cleb-hero__title {
    font-size: 2rem;
    font-weight: 800;
    color: #fff;
    margin: 0;
    line-height: 1.2;
}

.cleb-hero__title--cancelled {
    text-decoration: line-through;
    text-decoration-color: var(--cleb-cancelled);
}

.cleb-hero__subtitle {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.85);
    margin: 0.5rem 0 0;
}

/* ==========================================================================
   Info Bar (Single Event)
   ========================================================================== */

.cleb-info-bar {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    padding: 1.25rem 0;
    margin: 0 0 1rem;
    border-bottom: 1px solid var(--cleb-border);
}

.cleb-info-bar__item {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    font-size: 0.9rem;
}

.cleb-info-bar__icon {
    color: var(--cleb-icon);
    flex-shrink: 0;
    margin-top: 2px;
}

.cleb-info-bar__icon svg {
    width: 18px;
    height: 18px;
}

.cleb-info-bar__date {
    font-size: 1.1rem;
}

.cleb-info-bar__badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.375rem;
    margin-top: 0.25rem;
}

.cleb-info-bar__text {
    display: flex;
    flex-direction: column;
    gap: 0.125rem;
}

.cleb-info-bar__address {
    font-size: 0.85rem;
    color: var(--cleb-text-muted);
}

.cleb-info-bar__text span {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
}

.cleb-info-bar__text svg {
    width: 14px;
    height: 14px;
    opacity: 0.5;
}

.cleb-info-bar__text a {
    color: var(--cleb-text);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.cleb-info-bar__text a:hover {
    color: var(--cleb-link);
}

.cleb-info-bar__item--cta {
    margin-left: auto;
}

/* Past event single */
.cleb-single-event--past .cleb-info-bar__item--cta {
    display: none;
}

/* ==========================================================================
   Tour Name
   ========================================================================== */

.cleb-tour-name {
    font-size: 1rem;
    font-weight: 600;
    color: var(--cleb-secondary);
    margin: 0;
}

/* ==========================================================================
   Event Single — Two-Column Layout
   ========================================================================== */

.cleb-event-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
}

/* Grid items default to min-width:auto and refuse to shrink below the show
   table's width — without this the table overflows the viewport instead of
   scrolling inside .cleb-show-table-wrap */
.cleb-event-main,
.cleb-event-sidebar {
    min-width: 0;
}

.cleb-event-sidebar {
    display: flex;
    flex-direction: column;
    gap: 1.75rem;
}

.cleb-artist-grid--sidebar {
    grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
    gap: 0.75rem;
}

/* Artist display variants on the show detail page (Darstellung setting) */
.cleb-artist-grid--style-karte,
.cleb-artist-grid--style-banner,
.cleb-artist-grid--style-liste {
    grid-template-columns: 1fr;
}

/* Banner: text block above the wide image — Name / Genre / [Bild].
   Double class beats the base card's 1:1 aspect-ratio defined later in the file */
.cleb-artist-archive-card.cleb-artist-archive-card--banner {
    display: flex;
    flex-direction: column;
    aspect-ratio: auto;
    background: none;
}

.cleb-artist-archive-card--banner .cleb-artist-archive-card__overlay {
    position: static;
    order: -1;
    background: none;
    padding: 0 0 0.5rem;
}

.cleb-artist-archive-card--banner .cleb-artist-archive-card__name {
    color: var(--cleb-text) !important;
}

.cleb-artist-archive-card--banner .cleb-artist-archive-card__genres {
    color: var(--cleb-text-muted);
}

.cleb-artist-archive-card--banner .cleb-artist-archive-card__image {
    aspect-ratio: 5 / 2;
    height: auto;
    border-radius: var(--cleb-radius);
    overflow: hidden;
}

.cleb-artist-row {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem;
    border-radius: var(--cleb-radius);
    background: var(--cleb-bg-alt);
    text-decoration: none !important;
    color: inherit !important;
    transition: background var(--cleb-transition);
}

.cleb-artist-row:hover {
    background: var(--cleb-border);
}

.cleb-artist-row__image {
    display: block;
    width: 3rem;
    height: 3rem;
    border-radius: var(--cleb-radius-sm);
    overflow: hidden;
    flex-shrink: 0;
    background: var(--cleb-border);
}

.cleb-artist-row__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.cleb-artist-row__name {
    display: block;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--cleb-text);
}

.cleb-artist-row__genres {
    display: block;
    font-size: 0.75rem;
    color: var(--cleb-text-muted);
    margin-top: 0.125rem;
}

/* ==========================================================================
   Venue Details
   ========================================================================== */

.cleb-venue-details {
    font-size: 0.95rem;
    line-height: 1.8;
}

.cleb-venue-details p {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin: 0.375rem 0;
}

.cleb-venue-details svg {
    flex-shrink: 0;
    color: var(--cleb-text-muted);
}

.cleb-venue-details__address {
    font-weight: 600;
    font-size: 1rem;
}

.cleb-venue-details a {
    color: var(--cleb-text);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.cleb-venue-details a:hover {
    color: var(--cleb-link);
}

/* ==========================================================================
   Social Links
   ========================================================================== */

.cleb-social-links {
    display: flex;
    flex-wrap: wrap;
    gap: 0.625rem;
    margin: 1.5rem 0;
}

.cleb-social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    background: var(--cleb-bg-alt) !important;
    color: var(--cleb-text-muted) !important;
    transition: all var(--cleb-transition);
    text-decoration: none !important;
    cursor: pointer !important;
}

.cleb-social-link:hover {
    background: var(--cleb-secondary) !important;
    color: #fff !important;
    text-decoration: none !important;
    transform: translateY(-2px);
}

.cleb-social-link svg {
    width: 18px;
    height: 18px;
}

/* ==========================================================================
   Artist Card (on event page)
   ========================================================================== */

.cleb-artist-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 1.25rem;
}

/* Box stays static — on hover only the circle image zooms */
.cleb-artist-card {
    display: block;
    text-decoration: none !important;
    color: inherit !important;
    text-align: center;
    border-radius: var(--cleb-radius);
    padding: 1rem;
    background: var(--cleb-bg-alt);
    cursor: pointer !important;
}

.cleb-artist-card:hover {
    text-decoration: none !important;
    color: inherit !important;
}

.cleb-artist-card__image {
    width: 120px;
    height: 120px;
    margin: 0 auto 0.75rem;
    border-radius: 50%;
    overflow: hidden;
    background: var(--cleb-border);
}

.cleb-artist-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.cleb-artist-card:hover .cleb-artist-card__image img {
    transform: scale(1.08);
}

.cleb-artist-card__placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--cleb-text-muted);
}

.cleb-artist-card__placeholder svg {
    width: 40px;
    height: 40px;
}

.cleb-artist-card__name {
    font-size: 0.9rem;
    font-weight: 600;
    margin: 0;
    color: var(--cleb-text);
}

/* ==========================================================================
   Artist Single — Two-Column Layout
   ========================================================================== */

.cleb-artist-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
    padding-top: 0.5rem;
}

/* Same min-width:auto grid trap as the event layout: without this the show
   table widens the whole column past the viewport on small screens */
.cleb-artist-main,
.cleb-artist-sidebar {
    min-width: 0;
}

.cleb-artist-name {
    font-size: 2rem;
    font-weight: 800;
    color: var(--cleb-secondary);
    margin: 1rem 0 !important;
    padding: 0 !important;
    line-height: 1.2;
}

/* Sidebar */
.cleb-artist-sidebar {
    display: flex;
    flex-direction: column;
    gap: 1.75rem;
}

.cleb-sidebar-section__title {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--cleb-text);
    margin: 0 0 0.5rem;
}

.cleb-sidebar-section__sep {
    width: 40px;
    height: 2px;
    background: var(--cleb-text);
    margin-bottom: 0.75rem;
}

.cleb-sidebar-section .cleb-social-links {
    margin: 0;
}

.cleb-sidebar-link {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    color: var(--cleb-text) !important;
    text-decoration: none !important;
    font-size: 0.9rem;
    font-weight: 500;
    transition: color var(--cleb-transition);
    cursor: pointer !important;
}

.cleb-sidebar-link:hover {
    color: var(--cleb-link) !important;
}

.cleb-sidebar-link svg {
    width: 14px;
    height: 14px;
    flex-shrink: 0;
    opacity: 0.6;
}

.cleb-sidebar-links {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.cleb-sidebar-section .cleb-btn--presskit {
    margin-top: 0;
}

/* ==========================================================================
   Video Embeds
   ========================================================================== */

.cleb-video-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.cleb-video-wrap {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 */
    height: 0;
    overflow: hidden;
    border-radius: var(--cleb-radius);
    background: #000;
}

.cleb-video-wrap iframe,
.cleb-video-wrap object,
.cleb-video-wrap embed {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* Usercentrics Smart Data Protector swaps the iframe for a consent card div
   with a fixed measured width/height - let the card size the box instead:
   16:9 like the video, but at least tall enough for text + 2 buttons on
   narrow screens (explicit width, so min-height doesn't transfer to width) */
.cleb-video-wrap:has(.uc-embedding-container) {
    height: auto;
    padding-bottom: 0;
}

.cleb-video-wrap .uc-embedding-container {
    position: relative;
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
    min-height: 420px;
    max-height: none;
}

/* Neuros restyles every <button> inside .body-container (transparent pill,
   big padding, gradient :after ring) - give the card buttons their SDP look back */
.cleb-video-wrap .uc-embedding-wrapper .uc-embedding-buttons button {
    padding: 0;
    line-height: 40px;
    min-width: 0;
    border: 0;
    border-radius: 4px;
    background: #f5f5f5;
    color: #303030;
    font-weight: 700;
}

.cleb-video-wrap .uc-embedding-wrapper .uc-embedding-buttons button:after {
    display: none;
}

.cleb-video-wrap .uc-embedding-wrapper .uc-embedding-buttons button.uc-embedding-accept {
    background: #0045a5;
    color: #fff;
}

/* Reviews styling */
.cleb-content--reviews {
    font-style: italic;
    border-left: 3px solid var(--cleb-primary);
    padding-left: 1.25rem;
}

/* ==========================================================================
   Artist Archive Grid (/artists/) — 3 desktop / 2 tablet / 1 mobile
   ========================================================================== */

.cleb-artist-archive-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
}

.cleb-artist-archive-card {
    display: block;
    position: relative;
    border-radius: var(--cleb-radius);
    overflow: hidden;
    aspect-ratio: 1 / 1;
    background: var(--cleb-bg-alt);
    text-decoration: none !important;
    color: inherit !important;
    cursor: pointer !important;
    /* Soft ease-out — snappy start, gentle settle */
    transition: transform 0.45s cubic-bezier(0.22, 0.61, 0.36, 1), box-shadow 0.45s cubic-bezier(0.22, 0.61, 0.36, 1);
}

/* Hover-Effekt presets (Einstellungen -> Darstellung): aus | dezent | zoom | voll */
.cleb-artist-archive-grid--hover-voll .cleb-artist-archive-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}

.cleb-artist-archive-card__image {
    width: 100%;
    height: 100%;
}

.cleb-artist-archive-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.cleb-artist-archive-grid--hover-zoom .cleb-artist-archive-card:hover img,
.cleb-artist-archive-grid--hover-zoomtext .cleb-artist-archive-card:hover img,
.cleb-artist-archive-grid--hover-zoomtextdunkel .cleb-artist-archive-card:hover img,
.cleb-artist-archive-grid--hover-voll .cleb-artist-archive-card:hover img {
    transform: scale(1.05);
}

.cleb-artist-archive-card__placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--cleb-border);
    color: var(--cleb-text-muted);
}

.cleb-artist-archive-card__placeholder svg {
    width: 48px;
    height: 48px;
}

.cleb-artist-archive-card__overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1.5rem 1rem 1rem;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, transparent 100%);
    transition: background 0.45s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.cleb-artist-archive-card__overlay > * {
    transition: transform 0.45s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.cleb-artist-archive-grid--hover-dezent .cleb-artist-archive-card:hover .cleb-artist-archive-card__overlay,
.cleb-artist-archive-grid--hover-zoom .cleb-artist-archive-card:hover .cleb-artist-archive-card__overlay,
.cleb-artist-archive-grid--hover-zoomtextdunkel .cleb-artist-archive-card:hover .cleb-artist-archive-card__overlay,
.cleb-artist-archive-grid--hover-voll .cleb-artist-archive-card:hover .cleb-artist-archive-card__overlay {
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.2) 70%, transparent 100%);
}

.cleb-artist-archive-grid--hover-zoomtext .cleb-artist-archive-card:hover .cleb-artist-archive-card__overlay > *,
.cleb-artist-archive-grid--hover-zoomtextdunkel .cleb-artist-archive-card:hover .cleb-artist-archive-card__overlay > *,
.cleb-artist-archive-grid--hover-voll .cleb-artist-archive-card:hover .cleb-artist-archive-card__overlay > * {
    transform: translateY(-0.25rem);
}

.cleb-artist-archive-card__name {
    font-size: 1.05rem;
    font-weight: 700;
    color: #fff !important;
    margin: 0;
    line-height: 1.3;
}

.cleb-artist-archive-card__genres {
    display: block;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.75);
    margin-top: 0.125rem;
    line-height: 1.3;
}

/* ==========================================================================
   Pagination
   ========================================================================== */

.cleb-pagination,
.navigation.pagination {
    margin: 2rem 0;
    text-align: center;
}

.navigation.pagination .nav-links {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.375rem;
}

.navigation.pagination .page-numbers {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 2.25rem;
    height: 2.25rem;
    padding: 0 0.625rem;
    border: 1px solid var(--cleb-border);
    border-radius: var(--cleb-radius-sm);
    color: var(--cleb-text);
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 500;
    transition: all var(--cleb-transition);
}

.navigation.pagination .page-numbers:hover {
    border-color: var(--cleb-primary);
    color: var(--cleb-primary);
    text-decoration: none;
}

.navigation.pagination .page-numbers.current {
    background: var(--cleb-primary);
    border-color: var(--cleb-primary);
    color: #fff;
}

/* ==========================================================================
   Responsive — Tablet (480px+)
   ========================================================================== */

@media (min-width: 480px) {
    .cleb-artist-archive-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ==========================================================================
   Responsive — Desktop (768px+)
   ========================================================================== */

@media (min-width: 768px) {

    .cleb-container {
        padding: 0 2rem;
    }

    /* Event card: add actions column */
    .cleb-event-card__row {
        grid-template-columns: auto 1fr auto;
        padding: 1.125rem 1.5rem;
    }

    .cleb-event-card__actions {
        display: flex;
        align-items: center;
    }

    .cleb-event-card__title {
        font-size: 1.2rem;
    }

    /* Hero */
    .cleb-hero {
        min-height: 400px;
    }

    .cleb-hero__title {
        font-size: 3rem;
    }

    .cleb-hero__subtitle {
        font-size: 1.35rem;
    }

    /* Info bar */
    .cleb-info-bar {
        gap: 2rem;
        padding: 1.5rem 0;
    }

    /* Video grid: keep single column on all sizes */

    /* Artist grid (on event page) */
    .cleb-artist-grid {
        grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    }

    /* Artist archive grid: 3 columns */
    .cleb-artist-archive-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    /* Event single: two-column layout */
    .cleb-event-layout {
        grid-template-columns: 2fr 1fr;
    }

    .cleb-event-sidebar {
        position: sticky;
        top: 2rem;
        align-self: start;
    }

    /* Artist single: two-column layout */
    .cleb-artist-layout {
        grid-template-columns: 2fr 1fr;
    }

    .cleb-artist-name {
        font-size: 2.5rem;
    }

    .cleb-artist-sidebar {
        position: sticky;
        top: 2rem;
        align-self: start;
    }
}

/* ==========================================================================
   Responsive — Small screens (<480px)
   ========================================================================== */

@media (max-width: 479px) {

    .cleb-event-card__row {
        grid-template-columns: auto 1fr;
        gap: 0.75rem;
        padding: 0.875rem 1rem;
    }

    .cleb-event-card__date {
        min-width: 3.75rem;
        padding: 0.5rem 0.375rem;
    }

    .cleb-event-card__day {
        font-size: 1.25rem;
    }

    .cleb-event-card__meta {
        gap: 0.5rem;
        font-size: 0.75rem;
    }

    /* Info bar stack */
    .cleb-info-bar {
        flex-direction: column;
        gap: 0.75rem;
    }

    .cleb-info-bar__item--cta {
        margin-left: 0;
    }

    .cleb-btn--lg {
        width: 100%;
        justify-content: center;
    }

    .cleb-hero__title {
        font-size: 1.5rem;
    }
}

/* ==========================================================================
   Screen Reader Utilities
   ========================================================================== */

.screen-reader-text {
    border: 0;
    clip: rect(1px, 1px, 1px, 1px);
    clip-path: inset(50%);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
    word-wrap: normal !important;
}

/* ==========================================================================
   Feedback-Runde 2026-07: weekday, artist thumb, notice box, venue website
   ========================================================================== */

/* Weekday in date block */
.cleb-event-card__weekday {
    font-size: 0.625rem;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 0.05em;
    opacity: 0.8;
}

/* Artist thumb on event cards — matches date tile height, flush right of it */
.cleb-event-card__thumb {
    display: block;
    width: 4.5rem;
    border-radius: 0 var(--cleb-radius-sm) var(--cleb-radius-sm) 0;
    overflow: hidden;
    position: relative;
    z-index: 1;
}

.cleb-event-card__thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

@media (max-width: 479px) {
    .cleb-event-card__thumb {
        width: 3.5rem;
    }
}

/* Wichtige Hinweise box (single event) */
.cleb-notice {
    background: var(--cleb-bg-alt);
    border: 1px solid var(--cleb-border);
    border-radius: var(--cleb-radius);
    padding: 1.25rem 1.5rem;
    margin-bottom: 1.5rem;
}

.cleb-notice__title {
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--cleb-text-muted);
    margin: 0 0 0.5rem !important;
    padding: 0 !important;
    border: none !important;
}

.cleb-notice__text {
    font-size: 0.95rem;
}

.cleb-notice__text p:last-child {
    margin-bottom: 0;
}

/* Venue website under maps link (single event info bar) */
.cleb-info-bar__venue-site {
    display: block;
    font-size: 0.85rem;
}

/* ==========================================================================
   Shows Slider — [coldlife_upcoming_shows layout="slider"]
   Native CSS scroll-snap track; frontend.js adds arrows/markers logic.
   ========================================================================== */

.cleb-shows-slider {
    /* ponytail: fractional count on mobile = peek of the next card as swipe affordance */
    --cleb-slides: 1.4;
    --cleb-slide-gap: 1rem;
    position: relative;
}

.cleb-shows-slider__track {
    display: flex;
    gap: var(--cleb-slide-gap);
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding: 0.25rem 0.25rem 0.5rem;
}

.cleb-shows-slider__track::-webkit-scrollbar {
    display: none;
}

.cleb-shows-slider__track:focus-visible {
    outline: 2px solid var(--cleb-link);
    outline-offset: 2px;
}

@media (min-width: 640px) {
    .cleb-shows-slider { --cleb-slides: 3; }
}

@media (min-width: 900px) {
    .cleb-shows-slider { --cleb-slides: 4; }
}

@media (min-width: 1200px) {
    .cleb-shows-slider { --cleb-slides: 5; }
}

/* Card */

.cleb-show-slide {
    flex: 0 0 calc((100% - (var(--cleb-slides) - 1) * var(--cleb-slide-gap)) / var(--cleb-slides));
    scroll-snap-align: start;
    display: block;
    color: var(--cleb-text);
    text-decoration: none;
    cursor: pointer;
}

.cleb-show-slide--cancelled {
    opacity: 0.55;
}

.cleb-show-slide__media {
    position: relative;
    aspect-ratio: 3 / 4;
    border-radius: var(--cleb-radius);
    overflow: hidden;
    background: var(--cleb-bg-alt);
    box-shadow: var(--cleb-shadow);
}

.cleb-show-slide__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform var(--cleb-transition);
}

.cleb-show-slide:hover .cleb-show-slide__media img {
    transform: scale(1.04);
}

.cleb-show-slide__placeholder {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--cleb-text-muted);
}

.cleb-show-slide__placeholder svg {
    width: 42px;
    height: 42px;
    opacity: 0.4;
}

/* Stacked DD / MM / YY overlay */

.cleb-show-slide__date {
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.15rem;
    padding: 0.5rem 0.55rem;
    background: var(--cleb-date-badge);
    color: var(--cleb-date-badge-text);
    border-bottom-right-radius: var(--cleb-radius);
    font-weight: 800;
    font-size: 1.05rem;
    line-height: 1;
}

.cleb-show-slide__badge {
    position: absolute;
    top: 0.5rem;
    right: 0.5rem;
}

/* Text below the image */

.cleb-show-slide__body {
    padding: 0.6rem 0.15rem 0;
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
}

.cleb-show-slide__artist {
    margin: 0;
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.25;
}

.cleb-show-slide__tour {
    font-size: 0.85rem;
    color: var(--cleb-text-muted);
    line-height: 1.3;
}

.cleb-show-slide__venue {
    font-size: 0.85rem;
    color: var(--cleb-text-muted);
    line-height: 1.3;
}

/* Arrows */

/* ponytail: !important on every prop — Neuros skins ALL buttons via
   ".body-container button:not(...)" (0,2,1) incl. position/top/transform/display,
   which knocked the arrows into normal flow. Only opacity stays free for :disabled. */
.cleb-shows-slider__arrow {
    position: absolute !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    z-index: 2 !important;
    width: 40px !important;
    height: 40px !important;
    min-width: 0 !important;
    min-height: 0 !important;
    display: none !important;
    align-items: center !important;
    justify-content: center !important;
    border: 1px solid var(--cleb-border) !important;
    border-radius: 50% !important;
    background: var(--cleb-bg) !important;
    color: var(--cleb-icon) !important;
    box-shadow: var(--cleb-shadow-md) !important;
    cursor: pointer;
    padding: 0 !important;
    margin: 0 !important;
    transition: opacity var(--cleb-transition) !important;
}

.cleb-shows-slider__arrow::before,
.cleb-shows-slider__arrow::after,
.cleb-shows-slider__dot::before,
.cleb-shows-slider__dot::after {
    content: none !important;
}

.cleb-shows-slider__arrow svg {
    fill: none !important;
    stroke: currentColor !important;
}

.cleb-shows-slider__arrow--prev { left: -0.5rem !important; right: auto !important; }
.cleb-shows-slider__arrow--next { right: -0.5rem !important; left: auto !important; }

.cleb-shows-slider__arrow:disabled {
    opacity: 0.35;
    pointer-events: none;
}

/* Touch devices swipe; arrows are a desktop affordance */
@media (min-width: 640px) {
    .cleb-shows-slider:not(.cleb-shows-slider--static) .cleb-shows-slider__arrow {
        display: flex !important;
    }
}

/* Page markers */

.cleb-shows-slider__dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 0.75rem;
}

.cleb-shows-slider--static .cleb-shows-slider__dots {
    display: none;
}

.cleb-shows-slider__dot {
    width: 9px !important;
    height: 9px !important;
    min-width: 0 !important;
    min-height: 0 !important;
    border-radius: 50% !important;
    border: none !important;
    padding: 0 !important;
    margin: 0 !important;
    background: var(--cleb-border) !important;
    box-shadow: none !important;
    cursor: pointer;
    transition: background var(--cleb-transition);
}

.cleb-shows-slider__dot.is-active {
    background: var(--cleb-button) !important;
}

/* ==========================================================================
   Elementor compat — ".elementor img{height:auto}" ties specificity (0,1,1)
   with the per-slot rules above and loads later, collapsing cover-cropped
   images to their natural ratio when a shortcode sits inside an Elementor
   page (e.g. homepage). Archive/single templates have no .elementor
   ancestor, which is why they look right without this.
   ========================================================================== */

.cleb-event-grid-card__image img,
.cleb-artist-row__image img,
.cleb-artist-card__image img,
.cleb-artist-archive-card__image img,
.cleb-event-card__thumb img,
.cleb-show-slide__media img {
    height: 100% !important;
}


/* ==========================================================================
   Site-wide vertical rhythm (overrides Neuros: 90/120/150 -> 60/80/100)
   Applies to every page block (.content-wrapper) and the gap between
   Elementor sections, so plugin pages and Elementor pages shrink together.
   Neuros' remove-top/bottom-margin page options still win (they use !important).
   ========================================================================== */
body .content-wrapper {
    margin-top: 60px;
    margin-bottom: 60px;
}
body .elementor-section + .elementor-section {
    margin-top: 60px;
}
@media (min-width: 768px) {
    body .content-wrapper {
        margin-top: 80px;
        margin-bottom: 80px;
    }
    body .elementor-section + .elementor-section {
        margin-top: 80px;
    }
}
@media (min-width: 992px) {
    body .content-wrapper {
        margin-top: 100px;
        margin-bottom: 100px;
    }
}
@media (min-width: 1280px) {
    body .elementor-section + .elementor-section {
        margin-top: 100px;
    }
}
