    /* ================================================================
   Ateneu Events – Frontend Styles
   Matches the dark-navy / white design from the mockup
================================================================ */
    
     :root {
        --ae-dark: #0e1624;
        --ae-dark-mid: #162033;
        --ae-accent: #1a6ef5;
        --ae-accent-h: #155ed4;
        --ae-text: #1a1a2e;
        --ae-muted: #6b7280;
        --ae-border: #e5e7eb;
        --ae-radius: 10px;
        --ae-font: inherit;
    }
    /* ── Container ─────────────────────────────────── */
    
    .ae-container {
        max-width: 1100px;
        margin-inline: auto;
        padding-inline: 24px;
    }
    /* ── Buttons ───────────────────────────────────── */
    
    .ae-btn {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        padding: 12px 28px;
        border-radius: 50px;
        font-weight: 600;
        font-size: 16px;
        cursor: pointer;
        text-decoration: none;
        border: none;
        transition: background 0.2s, transform 0.1s;
    }
    
    .ae-btn:active {
        transform: scale(0.97);
    }
    
    .ae-btn--primary {
        background: var(--ae-accent);
        color: #fff;
    }
    
    .ae-btn--primary:hover {
        background: var(--ae-accent-h);
        color: #fff;
    }
    
    .ae-btn--block {
        width: 100%;
        margin-top: 18px;
    }

    /* ── Sidebar widgets (archive info + fise) ─────── */

    .ae-sidebar-widget {
        background: #fff;
        border: 1px solid var(--ae-border, #e5e7eb);
        border-radius: var(--ae-radius, 12px);
        padding: 24px;
        margin-bottom: 20px;
        box-shadow: 0 4px 24px rgba(0, 0, 0, 0.07);
    }

    .ae-sidebar-widget__title {
        font-size: 13px;
        font-weight: 700;
        letter-spacing: .08em;
        text-transform: uppercase;
        color: var(--ae-muted, #6b7280);
        margin: 0 0 16px;
        padding-bottom: 12px;
        border-bottom: 1px solid var(--ae-border, #e5e7eb);
    }

    .ae-sidebar-fise__buttons {
        display: flex;
        flex-direction: column;
        gap: 10px;
    }

    .ae-sidebar-fise__btn {
        display: flex;
        align-items: center;
        gap: 10px;
        padding: 12px 16px;
        border: 1.5px solid var(--ae-border, #e5e7eb);
        border-radius: 8px;
        background: #fff;
        color: var(--ae-dark, #111827);
        font-size: 14px;
        font-weight: 600;
        text-decoration: none;
        transition: border-color .15s, background .15s, color .15s;
    }

    .ae-sidebar-fise__btn svg {
        width: 18px;
        height: 18px;
        flex-shrink: 0;
        color: var(--ae-primary, #b91c1c);
    }

    .ae-sidebar-fise__btn:hover {
        border-color: var(--ae-primary, #b91c1c);
        background: rgba(185, 28, 28, .04);
        color: var(--ae-primary, #b91c1c);
    }

    /* ── Ascunde page-title al temei pe paginile single eveniment ── */

    .single-eveniment .uicore-page-title {
        display: none !important;
    }

    /* ── Hero ──────────────────────────────────────── */
    
    .ae-hero {
        min-height: 500px;
        display: flex;
        align-items: center;
        background: #1A1D29;
        color: #fff;
        padding-top: 105px;
    }
    
    .ae-hero__inner {
        width: 100%;
        display: grid;
        grid-template-columns: minmax(0, 520px) minmax(0, 560px);
        align-items: center;
        justify-content: space-between;
        gap: 44px;
        padding-block: 48px;
    }
    
    .ae-hero__content {
        max-width: 520px;
    }
    
    .ae-hero__location {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        font-size: 14px;
        letter-spacing: 0.06em;
        text-transform: uppercase;
        color: #a0aec0;
        margin-bottom: 10px;
    }
    
    .ae-hero__location-icon {
        width: 14px;
        height: 14px;
        background-color: #fff;
        -webkit-mask-image: url('../images/location_pin.svg');
        -webkit-mask-repeat: no-repeat;
        -webkit-mask-position: center;
        -webkit-mask-size: contain;
        mask-image: url('../images/location_pin.svg');
        mask-repeat: no-repeat;
        mask-position: center;
        mask-size: contain;
        flex-shrink: 0;
    }
    
    .ae-hero__title {
        font-size: clamp(32px, 5vw, 52px);
        font-weight: 800;
        line-height: 1.1;
        color: #fff;
        margin: 0 0 18px;
    }
    
    .ae-hero__excerpt {
        font-size: 16px;
        line-height: 1.65;
        color: #cbd5e0;
        margin-bottom: 28px;
    }
    /* Gallery mosaic (right side of hero) */
    
    .ae-hero__gallery {
        display: grid;
        grid-template-columns: 1.65fr 0.85fr;
        gap: 12px;
        width: 100%;
        max-width: 560px;
        justify-self: end;
    }
    
    .ae-hero__gallery-item {
        overflow: hidden;
        border-radius: 14px;
        position: relative;
        min-height: 170px;
    }
    
    .ae-hero__gallery-main {
        min-height: 380px;
    }
    
    .ae-hero__gallery-item img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }
    
    .ae-hero__gallery-side {
        display: grid;
        grid-template-rows: 1fr 1fr;
        gap: 12px;
    }
    
    .ae-hero__gallery-item--more::after {
        content: '';
        position: absolute;
        inset: 0;
        background: rgba(0, 0, 0, 0.45);
    }
    
    .ae-hero__gallery-more {
        position: absolute;
        inset: 0;
        z-index: 2;
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: center;
        color: #fff;
        font-size: 13px;
        font-weight: 600;
        gap: 8px;
        border: 0;
        width: 100%;
        background: transparent;
        cursor: pointer;
    }
    
    .ae-hero__gallery-more svg {
        width: 18px;
        height: 18px;
    }
    
    .ae-hero__gallery-more:hover {
        background: #0051E5 !important;
    }
    
    .ae-hero__gallery-item--placeholder {
        background: rgba(14, 22, 36, 0.22);
    }
    /* YouTube thumbnail side item */
    
    .ae-hero__gallery-item--video {
        cursor: pointer;
    }
    
    .ae-hero__gallery-item--video .ae-hero__gallery-play {
        position: absolute;
        inset: 0;
        z-index: 1;
        display: flex;
        align-items: center;
        justify-content: center;
        pointer-events: none;
    }
    
    .ae-hero__gallery-item--video .ae-hero__gallery-play svg {
        width: 36px;
        height: 36px;
        color: #fff;
        filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.55));
    }
    /* YouTube iframe in gallery modal */
    
    .ae-gallery-modal__slide--video iframe {
        width: 100%;
        height: 100%;
        border: 0;
        display: block;
    }
    /* ── Stats bar ─────────────────────────────────── */
    
    .ae-stats-bar {
        background: #fff;
        border-bottom: 1px solid var(--ae-border);
        padding-block: 14px;
    }
    
    .ae-stats-bar__inner {
        display: flex;
        flex-wrap: wrap;
        gap: 24px;
        align-items: center;
    }
    
    .ae-stat {
        display: flex;
        align-items: center;
        gap: 8px;
        font-size: 14px;
        color: var(--ae-text);
    }
    
    .ae-stat__icon {
        width: 18px;
        height: 18px;
        color: var(--ae-accent);
        flex-shrink: 0;
    }
    
    .ae-stat a {
        color: inherit;
        text-decoration: none;
    }
    
    .ae-stat a:hover {
        text-decoration: underline;
    }
    /* ── Layout ────────────────────────────────────── */
    
    .ae-layout {
        display: grid;
        grid-template-columns: 1fr 390px;
        gap: 40px;
        padding-block: 48px;
        align-items: start;
    }
    /* ── About section ─────────────────────────────── */
    
    .ae-about {
        display: flex;
        gap: 20px;
        margin-bottom: 36px;
    }
    
    .ae-about__thumbnail img {
        width: 90px;
        height: 90px;
        object-fit: cover;
        border-radius: var(--ae-radius);
    }
    
    .ae-about__body h2 {
        font-size: 20px;
        font-weight: 700;
        margin: 0 0 10px;
    }
    
    .ae-about__text {
        font-size: 16px;
        line-height: 1.7;
        color: #374151;
    }
    
    .ae-read-more-content[hidden] {
        display: none !important;
    }
    /* Content body — collapsed shows ~5 lines with fade */
    
    .ae-content-body--collapsed {
        max-height: 250px;
        overflow: hidden;
        -webkit-mask-image: linear-gradient(to bottom, black 50%, transparent 100%);
        mask-image: linear-gradient(to bottom, black 50%, transparent 100%);
    }
    
    .ae-read-more-btn {
        display: inline-flex;
        align-items: center;
        gap: 6px;
        margin-top: 12px;
        background: none;
        border: none;
        padding: 0;
        font-size: 15px;
        font-weight: 600;
        color: var(--ae-accent);
        cursor: pointer;
        text-decoration: none;
        transition: color 0.2s;
    }
    
    .ae-read-more-btn:hover {
        color: var(--ae-accent-h);
    }
    
    .ae-read-more-btn__icon {
        width: 16px;
        height: 16px;
        transition: transform 0.25s;
        flex-shrink: 0;
    }
    
    .ae-read-more-btn[aria-expanded="true"] .ae-read-more-btn__icon {
        transform: rotate(180deg);
    }
    /* ── Meta grid ─────────────────────────────────── */
    
    .ae-meta-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 24px 32px;
        margin-bottom: 32px;
    }
    
    .ae-meta-item {
        display: flex;
        gap: 12px;
        align-items: flex-start;
    }
    
    .ae-meta-item svg {
        width: 20px;
        height: 20px;
        color: var(--ae-muted);
        flex-shrink: 0;
        margin-top: 2px;
    }
    
    .ae-meta-item strong {
        display: block;
        font-size: 13px;
        text-transform: uppercase;
        letter-spacing: 0.05em;
        color: var(--ae-muted);
        margin-bottom: 4px;
    }
    
    .ae-meta-item p {
        margin: 0;
        font-size: 15px;
    }
    
    .ae-meta-item a {
        color: var(--ae-accent);
        text-decoration: none;
    }
    
    .ae-meta-item a:hover {
        text-decoration: underline;
    }
    /* Tags */
    
    .ae-tags {
        display: flex;
        flex-wrap: wrap;
        gap: 6px;
        margin: 0;
    }
    
    .ae-tag {
        background: #f0f4ff;
        color: var(--ae-accent);
        border-radius: 50px;
        padding: 3px 12px;
        font-size: 13px;
        font-weight: 500;
        text-decoration: none;
    }
    
    .ae-tag:hover {
        background: #dbeafe;
    }
    /* ── Production note ───────────────────────────── */
    
    .ae-production-note {
        display: flex;
        gap: 12px;
        background: #f3f4f6;
        border: 1px solid #e5e7eb;
        border-radius: var(--ae-radius);
        padding: 16px 18px;
        font-size: 15px;
        color: #1f2937 !important;
    }
    
    .ae-production-note svg {
        width: 20px;
        height: 20px;
        flex-shrink: 0;
        margin-top: 2px;
        color: #ef4444;
    }
    
    .ae-production-note strong {
        display: block;
        margin-bottom: 4px;
        color: #111827 !important;
        font-size: 15px !important;
    }
    
    .ae-production-note p {
        margin: 0;
        line-height: 1.6;
        color: #374151 !important;
        font-size: 15px !important;
    }
    /* ── Ticket widget ─────────────────────────────── */
    
    .ae-ticket-widget {
        background: #fff;
        border: 1px solid var(--ae-border);
        border-radius: var(--ae-radius);
        padding: 28px;
        font-size: 16px;
        position: sticky;
        top: 24px;
        box-shadow: 0 4px 24px rgba(0, 0, 0, 0.07);
    }
    
    .ae-ticket-widget__header {
        display: flex;
        align-items: center;
        justify-content: flex-start;
        margin-bottom: 20px;
    }
    
    .ae-ticket-widget__header h3 {
        font-size: 18px;
        font-weight: 700;
        margin: 0;
    }
    /* Date list */
    
    .ae-date-list {
        display: flex;
        flex-direction: column;
        gap: 8px;
    }
    
    .ae-date-option {
        display: flex;
        align-items: center;
        gap: 12px;
        border: 1.5px solid var(--ae-border);
        border-radius: var(--ae-radius);
        padding: 12px 14px;
        cursor: pointer;
        transition: border-color 0.2s, background 0.2s;
    }
    
    .ae-date-option input[type="radio"] {
        display: none;
    }
    
    .ae-date-option:hover,
    .ae-date-option--selected {
        border-color: var(--ae-accent);
        background: #f0f7ff;
    }
    
    .ae-date-card {
        display: flex;
        flex-direction: column;
        align-items: center;
        background: var(--ae-dark-mid);
        color: #fff;
        border-radius: 6px;
        padding: 6px 10px;
        min-width: 44px;
        text-align: center;
    }
    
    .ae-date-card__month {
        font-size: 11px;
        font-weight: 700;
        letter-spacing: 0.08em;
        text-transform: uppercase;
        color: #90b3f8;
    }
    
    .ae-date-card__day {
        font-size: 22px;
        font-weight: 800;
        line-height: 1;
    }
    
    .ae-date-info {
        flex: 1;
        display: flex;
        flex-direction: column;
        gap: 2px;
    }
    
    .ae-date-info__label {
        font-size: 14px;
        font-weight: 600;
    }
    
    .ae-date-info__sala {
        font-size: 13px;
        color: var(--ae-muted);
    }
    
    .ae-date-price {
        font-weight: 700;
        font-size: 16px;
        white-space: nowrap;
        margin-left: auto;
    }
    /* Guarantees */
    
    .ae-ticket-widget__guarantees {
        margin-top: 20px;
        display: flex;
        flex-direction: column;
        gap: 12px;
    }
    
    .ae-guarantee {
        display: flex;
        gap: 12px;
        font-size: 13px;
        line-height: 1.5;
        color: #374151;
    }
    
    .ae-guarantee svg {
        width: 18px;
        height: 18px;
        flex-shrink: 0;
        color: var(--ae-accent);
        margin-top: 2px;
    }
    
    .ae-guarantee strong {
        display: block;
    }
    
    .ae-guarantee p {
        margin: 0;
        color: var(--ae-muted);
    }
    /* ── Archive widget fields (echipa, gen) ──────── */

    .ae-archive-widget__fields {
        display: flex;
        flex-direction: column;
        gap: 16px;
    }

    .ae-archive-widget__field strong {
        display: block;
        font-size: 11px;
        text-transform: uppercase;
        letter-spacing: 0.07em;
        color: var(--ae-muted);
        margin-bottom: 4px;
    }

    .ae-archive-widget__field p {
        margin: 0;
        font-size: 15px;
        color: var(--ae-text);
        line-height: 1.5;
    }

    .ae-archive-widget__actions {
        display: flex;
        flex-direction: column;
        gap: 10px;
    }

    /* ── Gallery modal ────────────────────────────── */
    
    .ae-gallery-modal {
        position: fixed;
        inset: 0;
        z-index: 9999;
    }
    
    .ae-gallery-modal__backdrop {
        position: absolute;
        inset: 0;
        background: rgba(10, 13, 20, 0.82);
    }
    
    .ae-gallery-modal__dialog {
        position: relative;
        width: min(92vw, 980px);
        max-height: min(86vh, 700px);
        min-height: 280px;
        margin: 7vh auto;
        display: grid;
        grid-template-columns: 56px 1fr 56px;
        align-items: center;
        background: #111827;
        border-radius: 14px;
        overflow: hidden;
        box-shadow: 0 24px 70px rgba(0, 0, 0, 0.5);
    }
    
    .ae-gallery-modal__close {
        position: absolute;
        top: 14px;
        right: 14px;
        width: 38px;
        height: 38px;
        border: 0;
        border-radius: 50%;
        font-size: 28px;
        line-height: 1;
        color: #fff;
        background: rgba(255, 255, 255, 0.2);
        cursor: pointer;
        z-index: 5;
    }
    
    .ae-gallery-modal__close:hover {
        background: rgba(255, 255, 255, 0.3);
    }
    
    .ae-gallery-modal__slides {
        position: relative;
        width: 100%;
        height: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .ae-gallery-modal__slide {
        display: none;
        width: 100%;
        height: 100%;
        margin: 0;
        text-align: center;
    }
    
    .ae-gallery-modal__slide.is-active {
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .ae-gallery-modal__slide img {
        width: auto;
        height: auto;
        max-width: 100%;
        max-height: calc(86vh - 112px);
        object-fit: contain;
        background: #111827;
    }
    
    .ae-gallery-modal__slide--video iframe {
        max-width: 100%;
        max-height: calc(86vh - 112px);
        aspect-ratio: 16 / 9;
    }
    
    .ae-gallery-modal__nav {
        height: 100%;
        border: 0;
        color: #fff;
        font-size: 34px;
        cursor: pointer;
        background: rgba(255, 255, 255, 0.06);
    }
    
    .ae-gallery-modal__nav:hover {
        background: rgba(255, 255, 255, 0.15);
    }
    /* ── Events calendar shortcode ─────────────────── */
    
    .ae-calendar {
        max-width: 1240px;
        margin: 0 auto;
        padding: 26px 24px 34px;
    }
    
    .ae-calendar__head {
        display: flex;
        align-items: flex-start;
        justify-content: space-between;
        gap: 18px;
        margin-bottom: 22px;
    }
    
    .ae-calendar__intro h2 {
        margin: 0;
        font-size: clamp(34px, 3.8vw, 52px);
        line-height: 1.05;
        color: #1f2937;
    }
    
    .ae-calendar__intro p {
        margin: 8px 0 0;
        color: #6b7280;
        font-size: 16px;
    }
    
    .ae-calendar__filters {
        display: flex;
        align-items: center;
        gap: 14px;
        flex-wrap: wrap;
        justify-content: flex-end;
    }
    
    .ae-calendar__period-wrap {
        position: relative;
    }
    
    .ae-calendar__period-select {
        appearance: none;
        border: 1px solid #e5e7eb;
        background: #f5f6fb;
        color: #111827;
        border-radius: 999px;
        min-width: 160px;
        padding: 11px 36px 11px 14px;
        font-size: 14px;
        font-weight: 600;
        cursor: pointer;
    }
    
    .ae-calendar__period-wrap::after {
        content: '\25BE';
        position: absolute;
        right: 14px;
        top: 50%;
        transform: translateY(-50%);
        font-size: 10px;
        color: #6b7280;
        pointer-events: none;
    }
    
    .ae-calendar__cats {
        display: flex;
        align-items: center;
        gap: 10px;
        flex-wrap: wrap;
    }
    
    .ae-calendar__cat-btn {
        border: 0;
        background: transparent;
        border-radius: 999px;
        padding: 10px 12px;
        font-size: 14px;
        color: #6b7280;
        cursor: pointer;
        font-weight: 600;
    }
    
    .ae-calendar__cat-btn:hover {
        color: #1f2937;
        background: #f3f4f6;
    }
    
    .ae-calendar__cat-btn.is-active {
        background: #111827;
        color: #fff;
    }
    
    .ae-calendar__grid {
        display: grid;
        grid-template-columns: repeat(4, minmax(0, 1fr));
        gap: 16px;
    }
    
    .ae-cal-card {
        background: #fff;
        border: 1px solid #e5e7eb;
        border-radius: 14px;
        overflow: hidden;
        display: flex;
        flex-direction: column;
    }
    
    .ae-cal-card__media {
        position: relative;
        display: block;
        aspect-ratio: 1 / 1;
        background: #111827;
        overflow: hidden;
    }
    
    .ae-cal-card__media img,
    .ae-cal-card__media-fallback {
        width: 100%;
        height: 100%;
        position: absolute;
        inset: 0;
        object-fit: cover;
        display: block;
    }
    
    .ae-cal-card__media-fallback {
        background: linear-gradient(135deg, #1f2937, #374151);
    }
    
    .ae-cal-card__badge {
        display: inline-block;
        align-self: flex-start;
        background: #eef4ff;
        color: #1e40af;
        border-radius: 999px;
        padding: 4px 10px;
        font-size: 11px;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 0.04em;
    }
    
    .ae-cal-card__datetime {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        font-size: 12px;
        font-weight: 600;
        color: #6b7280;
    }
    
    .ae-cal-card__date {
        background: #0051e5;
        color: #fff;
        border-radius: 4px;
        padding: 3px 7px;
        font-size: 12px;
    }
    
    .ae-cal-card__time {
        color: #6b7280;
    }
    
    .ae-cal-card__content {
        padding: 14px 14px 16px;
        display: flex;
        flex-direction: column;
        gap: 10px;
        flex: 1;
    }
    
    .ae-cal-card__content h3 {
        margin: 0;
        font-size: 18px;
        line-height: 1.2;
        color: #111827;
        min-height: 2.4em;
    }
    
    .ae-cal-card__content h3 a {
        display: -webkit-box;
        color: inherit;
        text-decoration: none;
        overflow: hidden;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 2;
        line-clamp: 2;
    }
    
    .ae-cal-card__content h3 a:hover {
        text-decoration: underline;
    }
    
    .ae-cal-card__location {
        margin: 0;
        color: #9ca3af;
        font-size: 13px;
        display: inline-flex;
        align-items: center;
        gap: 6px;
    }
    
    .ae-cal-card__meta {
        margin-top: auto;
        display: flex;
        flex-direction: column;
        gap: 10px;
    }
    
    .ae-cal-card__location-icon {
        width: 12px;
        height: 12px;
        background-color: #9ca3af;
        -webkit-mask-image: url('../images/location_pin.svg');
        -webkit-mask-repeat: no-repeat;
        -webkit-mask-position: center;
        -webkit-mask-size: contain;
        mask-image: url('../images/location_pin.svg');
        mask-repeat: no-repeat;
        mask-position: center;
        mask-size: contain;
        flex-shrink: 0;
    }
    
    .ae-cal-card__footer {
        display: flex;
        align-items: flex-end;
        justify-content: space-between;
        gap: 10px;
    }
    
    .ae-cal-card__price-label {
        display: block;
        text-transform: uppercase;
        letter-spacing: 0.08em;
        font-size: 10px;
        color: #9ca3af;
        font-weight: 700;
        margin-bottom: 3px;
    }
    
    .ae-cal-card__footer strong {
        color: #111827;
        font-size: 16px;
        font-weight: 700;
    }
    
    .ae-cal-card__arrow {
        width: 30px;
        height: 30px;
        border-radius: 50%;
        border: 0;
        background: #edf2ff;
        color: #0051e5;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        text-decoration: none;
        font-weight: 700;
    }
    
    .ae-cal-card__arrow:hover {
        background: #dbe8ff;
    }
    
    .ae-calendar__empty {
        margin: 16px 0 0;
        color: #6b7280;
    }
    
    .ae-calendar__sentinel {
        width: 100%;
        height: 1px;
        margin-top: 1px;
    }
    
    .ae-calendar__bottom {
        display: flex;
        justify-content: center;
        margin-top: 34px;
    }
    
    .ae-calendar__cta {
        border: 2px solid #1f2937;
        color: #1f2937;
        text-decoration: none;
        border-radius: 12px;
        padding: 12px 22px;
        font-weight: 700;
        font-size: 14px;
    }
    
    .ae-calendar__cta:hover {
        background: #f3f4f6;
    }
    /* Strict scope overrides for shortcode pages */
    
    .ae-calendar[data-ae-calendar],
    .ae-calendar[data-ae-calendar] * {
        box-sizing: border-box;
    }
    
    .ae-calendar[data-ae-calendar] {
        color: #111827;
    }
    
    .ae-calendar[data-ae-calendar] .ae-calendar__intro h2 {
        font-size: clamp(34px, 3.8vw, 52px) !important;
        line-height: 1.05 !important;
        margin: 0 !important;
        color: #1f2937 !important;
    }
    
    .ae-calendar[data-ae-calendar] .ae-calendar__intro p {
        margin: 8px 0 0 !important;
        font-size: 16px !important;
        color: #6b7280 !important;
    }
    
    .ae-calendar[data-ae-calendar] .ae-cal-card {
        background: #fff !important;
        border: 1px solid #e5e7eb !important;
        display: flex !important;
        flex-direction: column !important;
        overflow: hidden !important;
    }
    
    .ae-cal-card--hidden,
    .ae-cal-card--deferred,
    .ae-calendar[data-ae-calendar] .ae-cal-card.ae-cal-card--hidden,
    .ae-calendar[data-ae-calendar] .ae-cal-card.ae-cal-card--deferred {
        display: none !important;
    }
    
    .ae-calendar[data-ae-calendar] .ae-cal-card__media {
        position: relative !important;
        display: block !important;
        aspect-ratio: 1 / 1 !important;
        height: auto !important;
        min-height: 0 !important;
        overflow: hidden !important;
    }
    
    .ae-calendar[data-ae-calendar] .ae-cal-card__media img {
        position: absolute !important;
        inset: 0 !important;
        width: 100% !important;
        height: 100% !important;
        object-fit: cover !important;
        display: block !important;
        max-width: none !important;
        max-height: none !important;
    }
    
    .ae-calendar[data-ae-calendar] .ae-cal-card__content {
        position: relative !important;
        z-index: 1 !important;
        flex: 1 !important;
    }
    
    .ae-calendar[data-ae-calendar] .ae-cal-card__content h3 {
        margin: 0 !important;
        font-size: 18px !important;
        line-height: 1.2 !important;
        color: #111827 !important;
        min-height: 2.4em !important;
    }
    
    .ae-calendar[data-ae-calendar] .ae-cal-card__content h3 a {
        display: -webkit-box !important;
        color: #111827 !important;
        text-decoration: none !important;
        overflow: hidden !important;
        -webkit-box-orient: vertical !important;
        -webkit-line-clamp: 2 !important;
        line-clamp: 2 !important;
    }
    
    .ae-calendar[data-ae-calendar] .ae-cal-card__location {
        margin: 0 !important;
        font-size: 13px !important;
        color: #9ca3af !important;
    }
    
    .ae-calendar[data-ae-calendar] .ae-cal-card__meta {
        margin-top: auto !important;
        display: flex !important;
        flex-direction: column !important;
        gap: 10px !important;
    }
    
    .ae-calendar[data-ae-calendar] .ae-cal-card__price-label {
        font-size: 10px !important;
        color: #9ca3af !important;
    }
    
    .ae-calendar[data-ae-calendar] .ae-cal-card__footer strong {
        font-size: 16px !important;
        font-weight: 700 !important;
        color: #111827 !important;
    }
    
    .ae-calendar[data-ae-calendar] .ae-cal-card__arrow {
        color: #0051e5 !important;
    }
    /* ── Responsive ────────────────────────────────── */
    
    @media (max-width: 900px) {
        .ae-calendar__head {
            flex-direction: column;
        }
        .ae-calendar__filters {
            justify-content: flex-start;
        }
        .ae-calendar__grid {
            grid-template-columns: repeat(2, minmax(0, 1fr));
        }
        .ae-hero {
            min-height: auto;
        }
        .ae-hero__inner {
            grid-template-columns: 1fr;
            gap: 24px;
            padding-block: 36px;
        }
        .ae-hero__gallery {
            justify-self: stretch;
            max-width: none;
        }
        .ae-hero__gallery-main {
            min-height: 320px;
        }
        .ae-layout {
            grid-template-columns: 1fr;
        }
        .ae-ticket-widget {
            position: static;
        }
        .ae-hero__gallery {
            display: grid;
        }
        .ae-meta-grid {
            grid-template-columns: 1fr;
        }
    }
    
    @media (max-width: 600px) {
        .ae-calendar {
            padding-inline: 14px;
        }
        .ae-calendar__intro h2 {
            font-size: clamp(28px, 9vw, 40px);
        }
        .ae-calendar__grid {
            grid-template-columns: 1fr;
        }
        .ae-hero {
            min-height: auto;
        }
        .ae-hero__content {
            padding-block: 0;
        }
        .ae-hero__gallery {
            grid-template-columns: 1fr;
        }
        .ae-hero__gallery-main {
            min-height: 220px;
        }
        .ae-hero__gallery-side {
            grid-template-columns: 1fr 1fr;
            grid-template-rows: 1fr;
        }
        .ae-hero__gallery-item {
            min-height: 130px;
        }
        .ae-gallery-modal__dialog {
            width: 96vw;
            max-height: 82vh;
            margin: 9vh auto;
            grid-template-columns: 44px 1fr 44px;
        }
        .ae-gallery-modal__slide img,
        .ae-gallery-modal__slide--video iframe {
            max-height: 82vh;
        }
        .ae-gallery-modal__nav {
            font-size: 28px;
        }
        .ae-about {
            flex-direction: column;
        }
        .ae-about__thumbnail img {
            width: 100%;
            height: 160px;
        }
    }
    /* ── Carousel shortcode ────────────────────────── */
    
    .ae-carousel-section {
        padding: 48px 0 56px;
        overflow: hidden;
    }
    
    .ae-carousel-section .ae-container {
        max-width: 1280px;
        margin: 0 auto;
        padding: 0 24px;
    }
    /* Header row: breadcrumb + buttons */
    
    .ae-carousel__header {
        display: flex;
        align-items: center;
        justify-content: space-between;
        margin-bottom: 28px;
    }
    
    .ae-carousel__breadcrumb {
        color: rgba(255, 255, 255, 0.55);
        font-size: 13px;
        font-weight: 500;
        letter-spacing: 0.04em;
        display: flex;
        align-items: center;
        gap: 6px;
    }
    
    .ae-carousel__breadcrumb a.ae-carousel__breadcrumb-home {
        color: #fff !important;
        text-decoration: underline !important;
        text-underline-offset: 3px;
    }
    
    .ae-carousel__breadcrumb-sep {
        opacity: 0.45;
    }
    
    .ae-carousel__controls {
        display: flex;
        gap: 8px;
    }
    /* Prev / Next buttons */
    
    .ae-carousel__btn {
        width: 38px;
        height: 38px;
        border-radius: 50%;
        border: 1px solid rgba(255, 255, 255, 0.25);
        background: rgba(255, 255, 255, 0.08);
        color: #fff;
        font-size: 16px;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: background 0.2s, border-color 0.2s;
        line-height: 1;
    }
    
    .ae-carousel__btn:hover {
        background: rgba(255, 255, 255, 0.18);
        border-color: rgba(255, 255, 255, 0.5);
    }
    
    .ae-carousel__btn:disabled {
        opacity: 0.3;
        cursor: not-allowed;
        pointer-events: none;
    }
    /* Track */
    
    .ae-carousel__viewport {
        overflow: hidden;
    }
    
    .ae-carousel__track {
        display: flex;
        gap: 16px;
        transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        will-change: transform;
    }
    
    .ae-carousel__slide {
        flex: 0 0 calc(25% - 12px);
        min-width: 0;
    }
    /* Card — full image, overlaid content */
    
    .ae-carousel__card {
        position: relative;
        height: 320px;
        border-radius: 14px;
        overflow: hidden;
        background: #1a1d29 center/cover no-repeat;
        display: flex;
        flex-direction: column;
        justify-content: flex-end;
        text-decoration: none;
    }
    /* Dark gradient overlay */
    
    .ae-carousel__card-overlay {
        position: absolute;
        inset: 0;
        background: linear-gradient( to bottom, rgba(0, 0, 0, 0) 30%, rgba(0, 0, 0, 0.75) 100%);
        pointer-events: none;
    }
    /* Category badge (top-left) */
    
    .ae-carousel__badge {
        position: absolute;
        top: 14px;
        left: 14px;
        background: rgba(200, 155, 55, 0.88);
        color: #fff;
        font-size: 12px;
        font-weight: 700;
        border-radius: 999px;
        padding: 5px 12px;
        line-height: 1.4;
        max-width: calc(100% - 28px);
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        backdrop-filter: blur(4px);
        -webkit-backdrop-filter: blur(4px);
    }
    /* Bottom content */
    
    .ae-carousel__card-body {
        position: relative;
        z-index: 1;
        padding: 16px;
        display: flex;
        flex-direction: column;
        justify-content: flex-end;
        min-height: 100%;
    }
    
    .ae-carousel__card-title {
        margin: 0;
        font-size: 20px;
        font-weight: 700;
        line-height: 1.2;
        color: #fff !important;
        transition: transform 0.28s cubic-bezier(0.4, 0, 0.2, 1);
    }
    
    .ae-carousel__card-title a {
        color: #fff !important;
        text-decoration: none !important;
    }
    /* CTA button: hidden by default, shown on active slide */
    
    .ae-carousel__card-cta {
        display: block;
        position: absolute;
        right: 16px;
        bottom: 16px;
        left: 16px;
        background: #0051e5;
        color: #fff !important;
        text-decoration: none !important;
        font-size: 14px;
        font-weight: 600;
        border-radius: 8px;
        padding: 10px 0;
        text-align: center;
        transition: background 0.2s, opacity 0.2s, transform 0.2s;
        opacity: 0;
        transform: translateY(6px);
        pointer-events: none;
    }
    
    .ae-carousel__card-cta:hover {
        background: #0040c0;
    }
    
    .ae-carousel__card:hover .ae-carousel__card-cta {
        opacity: 1;
        transform: translateY(0);
        pointer-events: auto;
    }
    
    .ae-carousel__card:hover .ae-carousel__card-title {
        transform: translateY(-54px);
    }
    /* Responsive */
    
    @media (max-width: 1100px) {
        .ae-carousel__slide {
            flex: 0 0 calc(33.333% - 11px);
        }
    }
    
    @media (max-width: 768px) {
        .ae-carousel__slide {
            flex: 0 0 calc(50% - 8px);
        }
        .ae-carousel__card {
			height: auto;
            aspect-ratio: 724 / 1024;
            background-size: contain;
        }
    }
    
    @media (max-width: 480px) {
        .ae-carousel__slide {
            flex: 0 0 100%;
        }
        .ae-carousel__card {
            height: auto;
            aspect-ratio: 724 / 1024;
            background-size: contain;
        }
    }