/**
 * EventHub Single Event Styling
 *
 * Typ A Events (Punkt-Events mit optionaler Wiederholung).
 * Hero-Bereich, Info-Blöcke, FAQ-Akkordeon, Weitere Termine.
 *
 * Phase 7.5
 *
 * @package EventHub
 * @since 1.0.0
 */

/* ==========================================================================
   HERO BEREICH
   ========================================================================== */

.eventhub-event-hero {
    margin-bottom: var(--eventhub-spacing-xl);
}

.eventhub-event-hero__image-wrapper {
    position: relative;
    margin-bottom: var(--eventhub-spacing-lg);
    overflow: hidden;
    border-radius: var(--eventhub-border-radius);
}

.eventhub-event-hero__image {
    display: block;
    width: 100%;
    height: auto;
    max-height: var(--eventhub-hero-image-height);
    object-fit: cover;
}

.eventhub-event-hero__badges {
    position: absolute;
    top: var(--eventhub-spacing-md);
    left: var(--eventhub-spacing-md);
    display: flex;
    flex-wrap: wrap;
    gap: var(--eventhub-spacing-xs);
}

/* Kostenlos-Badge im Bild (rechts unten) */
.eventhub-event-hero__free-badge {
    position: absolute;
    bottom: var(--eventhub-spacing-md);
    right: var(--eventhub-spacing-md);
}

/* Status prominent im Header */
.eventhub-event-hero__status {
    margin-bottom: var(--eventhub-spacing-md);
}

.eventhub-status-badge--large {
    font-size: var(--eventhub-font-size-lg);
    padding: var(--eventhub-spacing-sm) var(--eventhub-spacing-md);
}

.eventhub-event-hero__title {
    margin: 0 0 var(--eventhub-spacing-md);
    font-family: inherit;
    line-height: var(--eventhub-line-height);
}

.eventhub-event-hero__meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: var(--eventhub-spacing-sm);
    margin-bottom: var(--eventhub-spacing-md);
    font-size: var(--eventhub-font-size-lg);
    color: var(--eventhub-color-text);
}

/* Linke Seite der Meta-Zeile: Datum, Zeit, Countdown */
.eventhub-event-hero__meta-left {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: var(--eventhub-spacing-sm);
}

.eventhub-event-hero__meta-separator {
    color: var(--eventhub-color-text-muted);
}

.eventhub-event-hero__series {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: var(--eventhub-spacing-sm);
    margin-bottom: var(--eventhub-spacing-md);
    font-size: var(--eventhub-font-size-base);
    color: var(--eventhub-color-text-muted);
}

.eventhub-event-hero__series-icon {
    flex-shrink: 0;
}

.eventhub-event-hero__series-links {
    display: flex;
    flex-wrap: wrap;
    gap: var(--eventhub-spacing-xs);
}

.eventhub-event-hero__series-links a {
    /* Links erben Farbe vom Theme */
}

.eventhub-event-hero__actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: var(--eventhub-spacing-md);
    margin-top: var(--eventhub-spacing-lg);
}

/* Share-Icons Container: Inline-Flex für die Icon-Reihe */
.eventhub-share-icons {
    display: flex;
    align-items: center;
    gap: var(--eventhub-spacing-sm, 0.5rem);
}

/* ==========================================================================
   STATUS BADGES (Abgesagt, Verschoben, Ausverkauft)
   ========================================================================== */

.eventhub-status-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--eventhub-spacing-xs);
    padding: var(--eventhub-spacing-xs) var(--eventhub-spacing-sm);
    font-size: var(--eventhub-font-size-sm);
    font-weight: var(--eventhub-font-weight-semibold);
    text-transform: uppercase;
    letter-spacing: 0.02em;
    border-radius: var(--eventhub-border-radius);
    background: var(--eventhub-color-text-muted);
    color: var(--eventhub-color-text-light);
}

.eventhub-status-badge--cancelled {
    background: var(--eventhub-color-cancelled);
}

.eventhub-status-badge--postponed {
    background: var(--eventhub-color-postponed);
}

.eventhub-status-badge--soldout {
    background: var(--eventhub-color-soldout);
}

/* ==========================================================================
   TICKET BUTTON & KOSTENLOS BADGE
   ========================================================================== */

.eventhub-ticket-button {
    display: inline-flex;
    align-items: center;
    gap: var(--eventhub-spacing-xs);
    padding: var(--eventhub-spacing-sm) var(--eventhub-spacing-lg);
    font-family: inherit;
    font-size: var(--eventhub-font-size-base);
    font-weight: var(--eventhub-font-weight-semibold);
    text-decoration: none;
    background: var(--eventhub-color-primary);
    color: var(--eventhub-color-text-light);
    border: none;
    border-radius: var(--eventhub-border-radius);
    cursor: pointer;
    transition: opacity var(--eventhub-transition);
}

.eventhub-ticket-button:hover,
.eventhub-ticket-button:focus {
    opacity: 0.9;
    color: var(--eventhub-color-text-light);
    text-decoration: none;
}

.eventhub-free-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--eventhub-spacing-xs);
    padding: var(--eventhub-spacing-xs) var(--eventhub-spacing-sm);
    font-size: var(--eventhub-font-size-sm);
    font-weight: var(--eventhub-font-weight-semibold);
    background: var(--eventhub-color-free);
    color: var(--eventhub-color-text-light);
    border-radius: var(--eventhub-border-radius);
}

/* ==========================================================================
   PREIS BADGE
   ========================================================================== */

.eventhub-price-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--eventhub-spacing-xs);
    padding: var(--eventhub-spacing-xs) var(--eventhub-spacing-sm);
    font-size: var(--eventhub-font-size-sm);
    font-weight: 500;
    background: var(--eventhub-color-bg-alt);
    border: 1px solid var(--eventhub-color-border);
    border-radius: var(--eventhub-border-radius);
}

/* ==========================================================================
   CONTENT BEREICH
   ========================================================================== */

/* Termin-Hinweis (aus Instance-Overrides) */
.eventhub-occurrence-note {
    margin: var(--eventhub-spacing-md) 0;
    color: var(--eventhub-text-muted);
}

.eventhub-event-content {
    margin-bottom: var(--eventhub-spacing-xl);
}

.eventhub-event-content > :first-child {
    margin-top: 0;
}

.eventhub-event-content > :last-child {
    margin-bottom: 0;
}

/* ==========================================================================
   INFO BLÖCKE CONTAINER
   ========================================================================== */

.eventhub-event-info-blocks {
    display: flex;
    flex-direction: column;
    gap: var(--eventhub-spacing-lg);
    margin-bottom: var(--eventhub-spacing-xl);
}

.eventhub-event-info-blocks .eventhub-info-block {
    margin-bottom: 0;
}

/* Info-Block Titel für Event-Kontext */
.eventhub-event-info-blocks .eventhub-info-block__title {
    margin-bottom: var(--eventhub-spacing-sm);
    padding-bottom: var(--eventhub-spacing-xs);
    border-bottom: 1px solid var(--eventhub-color-border);
    font-size: var(--eventhub-font-size-base);
    font-weight: 600;
}

/* ==========================================================================
   FAQ AKKORDEON
   ========================================================================== */

.eventhub-event-faq {
    /* Wrapper-Klasse für Kontext, wenn FAQ im Event-Template eingebettet ist */
    /* Erbt alle Stile von .eventhub-faq aus eventhub-base.css */
}

/* ==========================================================================
   WEITERE TERMINE LISTE
   ========================================================================== */

.eventhub-event-dates {
    margin-bottom: var(--eventhub-spacing-xl);
}

/* .eventhub-event-dates__title - Styling in eventhub-base.css Section-Titel */

.eventhub-dates-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: var(--eventhub-spacing-xs);
}

.eventhub-dates-list__item {
    padding: var(--eventhub-spacing-xs) var(--eventhub-spacing-sm);
    background: var(--eventhub-color-bg-alt);
    border: 1px solid var(--eventhub-color-border);
    border-radius: var(--eventhub-border-radius);
    transition: background var(--eventhub-transition);
    font-size: var(--eventhub-font-size-sm);
}

.eventhub-dates-list__item:hover {
    background: var(--eventhub-color-bg);
}

.eventhub-dates-list__item--current {
    background: var(--eventhub-color-primary);
    border-color: var(--eventhub-color-primary);
    color: var(--eventhub-color-text-light);
}

.eventhub-dates-list__item--current:hover {
    background: var(--eventhub-color-primary);
}

.eventhub-dates-list__link {
    display: inline;
    text-decoration: none;
    color: inherit;
}

.eventhub-dates-list__link:hover {
    text-decoration: underline;
}

.eventhub-dates-list__more {
    padding: var(--eventhub-spacing-sm) var(--eventhub-spacing-md);
    font-size: var(--eventhub-font-size-sm);
    color: var(--eventhub-color-text-muted);
    font-style: italic;
}

/* ==========================================================================
   EINZELTERMIN HINWEIS
   ========================================================================== */

.eventhub-occurrence-notice {
    display: flex;
    align-items: flex-start;
    gap: var(--eventhub-spacing-sm);
    margin-bottom: var(--eventhub-spacing-lg);
    padding: var(--eventhub-spacing-md);
    background: var(--eventhub-color-bg-alt);
    border: 1px solid var(--eventhub-color-border);
    border-radius: var(--eventhub-border-radius);
}

.eventhub-occurrence-notice__icon {
    flex-shrink: 0;
    font-size: var(--eventhub-font-size-lg);
}

.eventhub-occurrence-notice__content {
    flex: 1;
}

.eventhub-occurrence-notice__date {
    display: block;
    font-weight: 600;
    margin-bottom: var(--eventhub-spacing-xs);
}

.eventhub-occurrence-notice__override {
    display: block;
    font-size: var(--eventhub-font-size-sm);
    color: var(--eventhub-color-text-muted);
    font-style: italic;
    margin-bottom: var(--eventhub-spacing-xs);
}

.eventhub-occurrence-notice__link {
    font-size: var(--eventhub-font-size-sm);
}

/* ==========================================================================
   CHILD EVENTS SEKTION
   ========================================================================== */

.eventhub-child-events {
    margin-bottom: var(--eventhub-spacing-xl);
}

/* .eventhub-child-events__title - Styling in eventhub-base.css Section-Titel */

/* ==========================================================================
   PARENT EVENT HINWEIS
   ========================================================================== */

.eventhub-parent-notice {
    display: flex;
    align-items: center;
    gap: var(--eventhub-spacing-sm);
    margin-bottom: var(--eventhub-spacing-lg);
    padding: var(--eventhub-spacing-md);
    background: var(--eventhub-color-bg-alt);
    border: 1px solid var(--eventhub-color-border);
    border-radius: var(--eventhub-border-radius);
    font-size: var(--eventhub-font-size-sm);
}

.eventhub-parent-notice__icon {
    flex-shrink: 0;
}

/* ==========================================================================
   TYP B FALLBACK HINWEIS
   ========================================================================== */

.eventhub-type-b-notice {
    padding: var(--eventhub-spacing-lg);
    background: var(--eventhub-color-bg-alt);
    border: 1px solid var(--eventhub-color-border);
    border-radius: var(--eventhub-border-radius);
    text-align: center;
    color: var(--eventhub-color-text-muted);
    font-style: italic;
}

/* ==========================================================================
   RESPONSIVE ANPASSUNGEN
   ========================================================================== */

@media (min-width: 768px) {
    .eventhub-event-hero__image {
        max-height: 500px;
    }
}

/* Info Blocks: 2 Spalten ab 577px, 3 Spalten ab 1025px */
@media (min-width: 577px) {
    .eventhub-event-info-blocks {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: var(--eventhub-spacing-lg);
    }

    /* Wenn 3 Blöcke: volle Breite für den dritten */
    .eventhub-event-info-blocks--three > :nth-child(3) {
        grid-column: 1 / -1;
    }
}

@media (min-width: 1025px) {
    .eventhub-event-hero__image {
        max-height: 550px;
    }

    .eventhub-event-info-blocks--three {
        grid-template-columns: repeat(3, 1fr);
    }

    .eventhub-event-info-blocks--three > :nth-child(3) {
        grid-column: auto;
    }
}

/* ==========================================================================
   TYP B: ZEITRAUM-EVENTS (Ausstellungen, Festivals)
   ========================================================================== */

/* Zeitraum-Anzeige im Hero */
.eventhub-event-hero__date-range {
    display: inline-flex;
    align-items: center;
    flex-wrap: wrap;
    gap: var(--eventhub-spacing-xs);
}

.eventhub-event-hero__date-range-separator {
    color: var(--eventhub-color-text-muted);
}

/* Countdown im Hero */
.eventhub-event-hero__countdown {
    display: inline-flex;
    align-items: center;
    margin-left: var(--eventhub-spacing-sm);
    padding: var(--eventhub-spacing-xs) var(--eventhub-spacing-sm);
    font-size: var(--eventhub-font-size-sm);
    font-weight: 500;
    background: var(--eventhub-color-bg-alt);
    border-radius: var(--eventhub-border-radius);
    color: var(--eventhub-color-text-muted);
}

.eventhub-event-hero__countdown--last-day {
    background: var(--eventhub-color-postponed);
    color: #fff;
}

/* ==========================================================================
   "HEUTE"-STATUS-BANNER
   ========================================================================== */

.eventhub-today-status {
    display: flex;
    align-items: center;
    gap: var(--eventhub-spacing-sm);
    margin-bottom: var(--eventhub-spacing-lg);
    padding: var(--eventhub-spacing-md);
    border-radius: var(--eventhub-border-radius);
    font-size: var(--eventhub-font-size-base);
}

/* CSS-Punkt statt Emoji-Icon */
.eventhub-today-status::before {
    content: '';
    display: inline-block;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    flex-shrink: 0;
    background-color: var(--eventhub-color-text-muted);
}

/* Icon-Container ausblenden (Emojis werden nicht mehr verwendet) */
.eventhub-today-status__icon {
    display: none;
}

.eventhub-today-status__text {
    flex: 1;
}

.eventhub-today-status__text strong {
    font-weight: 600;
}

.eventhub-today-status__text em {
    font-style: italic;
    color: var(--eventhub-color-text-muted);
    margin-left: var(--eventhub-spacing-xs);
}

/* Status-Varianten - Hintergrund/Border */
.eventhub-today-status--open {
    background: color-mix(
        in srgb,
        var(--eventhub-color-planned) 15%,
        transparent
    );
    border: 1px solid var(--eventhub-color-planned);
}

/* Grüner Punkt für "open" */
.eventhub-today-status--open::before {
    background-color: var(--eventhub-color-planned);
    box-shadow: 0 0 6px
        color-mix(in srgb, var(--eventhub-color-planned) 60%, transparent);
}

.eventhub-today-status--modified {
    background: color-mix(
        in srgb,
        var(--eventhub-color-postponed) 15%,
        transparent
    );
    border: 1px solid var(--eventhub-color-postponed);
}

/* Oranger Punkt für "modified" */
.eventhub-today-status--modified::before {
    background-color: var(--eventhub-color-postponed);
    box-shadow: 0 0 6px
        color-mix(in srgb, var(--eventhub-color-postponed) 50%, transparent);
}

.eventhub-today-status--closed {
    background: color-mix(
        in srgb,
        var(--eventhub-color-cancelled) 15%,
        transparent
    );
    border: 1px solid var(--eventhub-color-cancelled);
}

/* Roter Punkt für "closed" */
.eventhub-today-status--closed::before {
    background-color: var(--eventhub-color-cancelled);
    box-shadow: 0 0 6px
        color-mix(in srgb, var(--eventhub-color-cancelled) 50%, transparent);
}

.eventhub-today-status--upcoming {
    background: var(--eventhub-color-bg-alt);
    border: 1px solid var(--eventhub-color-border);
    color: var(--eventhub-color-text-muted);
}

/* Grauer Punkt für "upcoming" */
.eventhub-today-status--upcoming::before {
    background-color: var(--eventhub-color-text-muted);
    box-shadow: none;
}

/* Fallback für Browser ohne color-mix() */
@supports not (background: color-mix(in srgb, #000 50%, transparent)) {
    .eventhub-today-status--open {
        background: rgba(40, 167, 69, 0.15);
    }

    .eventhub-today-status--open::before {
        box-shadow: 0 0 6px rgba(40, 167, 69, 0.6);
    }

    .eventhub-today-status--modified {
        background: rgba(253, 126, 20, 0.15);
    }

    .eventhub-today-status--modified::before {
        box-shadow: 0 0 6px rgba(253, 126, 20, 0.5);
    }

    .eventhub-today-status--closed {
        background: rgba(220, 53, 69, 0.15);
    }

    .eventhub-today-status--closed::before {
        box-shadow: 0 0 6px rgba(220, 53, 69, 0.5);
    }
}

/* ==========================================================================
   ÖFFNUNGSZEITEN-BLOCK
   ========================================================================== */

.eventhub-opening-hours {
    margin-bottom: var(--eventhub-spacing-xl);
    padding: var(--eventhub-spacing-lg);
    background: var(--eventhub-color-bg-alt);
    border: 1px solid var(--eventhub-color-border);
    border-radius: var(--eventhub-border-radius);
}

/* .eventhub-opening-hours h2 - Styling in eventhub-base.css Section-Titel */

.eventhub-opening-hours h3 {
    margin: var(--eventhub-spacing-md) 0 var(--eventhub-spacing-sm);
    font-size: var(--eventhub-font-size-sm);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    color: var(--eventhub-color-text-muted);
}

.eventhub-opening-hours__regular h3:first-child {
    margin-top: 0;
}

/* Öffnungszeiten-Liste */
.eventhub-hours-list {
    display: flex;
    flex-direction: column;
    gap: var(--eventhub-spacing-xs);
    margin: 0;
}

.eventhub-hours-list__row {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    padding: var(--eventhub-spacing-xs) 0;
    border-bottom: 1px solid var(--eventhub-color-border);
}

.eventhub-hours-list__row:last-child {
    border-bottom: none;
}

.eventhub-hours-list__row dt {
    font-weight: 500;
    flex-shrink: 0;
}

.eventhub-hours-list__row dd {
    margin: 0;
    text-align: right;
}

.eventhub-hours-list__note {
    font-weight: 400;
    color: var(--eventhub-color-text-muted);
    font-size: var(--eventhub-font-size-sm);
}

/* Sonderöffnungszeiten Modifier */
.eventhub-hours-list__row--modified dt,
.eventhub-hours-list__row--modified dd {
    color: var(--eventhub-color-postponed);
}

.eventhub-hours-list__row--closed dt,
.eventhub-hours-list__row--closed dd {
    color: var(--eventhub-color-cancelled);
}

.eventhub-hours-list__row--closed dd {
    font-weight: 500;
}

/* Sonderöffnungszeiten-Sektion Abstand */
.eventhub-opening-hours__special {
    margin-top: var(--eventhub-spacing-md);
    padding-top: var(--eventhub-spacing-md);
    border-top: 1px solid var(--eventhub-color-border);
}

/* ==========================================================================
   GOOGLE MAP
   ========================================================================== */

.eventhub-map {
    margin: var(--eventhub-spacing-lg) 0;
}

.eventhub-map__iframe {
    display: block;
    width: 100%;
    height: var(--eventhub-map-height);
    border: 0;
    border-radius: var(--eventhub-border-radius);
}

.eventhub-map__link {
    display: inline-block;
    padding: var(--eventhub-spacing-sm) var(--eventhub-spacing-md);
    background: var(--eventhub-color-surface);
    border-radius: var(--eventhub-border-radius);
    text-decoration: none;
}

.eventhub-map__link:hover,
.eventhub-map__link:focus {
    background: var(
        --eventhub-color-surface-hover,
        var(--eventhub-color-border)
    );
}

/* ==========================================================================
   TYP B RESPONSIVE
   ========================================================================== */

@media (max-width: 480px) {
    .eventhub-event-hero__actions {
        flex-direction: column;
        align-items: flex-start;
    }

    .eventhub-event-hero__countdown {
        display: block;
        margin-left: 0;
        margin-top: var(--eventhub-spacing-sm);
    }

    .eventhub-hours-list__row {
        flex-direction: column;
        gap: var(--eventhub-spacing-xs);
    }

    .eventhub-hours-list__row dd {
        text-align: left;
    }
}

/* Google Map Responsive */
@media (max-width: 576px) {
    .eventhub-map__iframe {
        height: var(--eventhub-map-height-mobile);
    }
}

/* ==========================================================================
   VIDEO EINBETTUNG
   ========================================================================== */

.eventhub-video {
    margin-bottom: var(--eventhub-spacing-xl);
    width: 100%;
    max-width: 100%;
}

.eventhub-video__container {
    position: relative;
    width: 100%;
    max-width: 100%;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    height: 0;
    overflow: hidden;
    border-radius: var(--eventhub-border-radius);
    background: var(--eventhub-color-surface);
}

.eventhub-video__iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100% !important;
    height: 100% !important;
    border: 0;
    max-width: none;
}

.eventhub-video__provider {
    margin-top: var(--eventhub-spacing-sm);
    font-size: var(--eventhub-font-size-sm);
    color: var(--eventhub-color-text-muted);
    text-align: right;
}

/* Fallback für nicht einbettbare Videos (fb.watch) */
.eventhub-video__fallback {
    display: flex;
    align-items: center;
    gap: var(--eventhub-spacing-sm);
    padding: var(--eventhub-spacing-md);
    background: var(--eventhub-color-surface);
    border-radius: var(--eventhub-border-radius);
}

.eventhub-video__icon {
    font-size: 1.5rem;
}

.eventhub-video__link {
    font-weight: var(--eventhub-font-weight-medium, 500);
}

/* ==========================================================================
   SOCIAL SHARING BUTTONS
   ========================================================================== */

.eventhub-share {
    display: flex;
    align-items: center;
    margin: var(--eventhub-spacing-xs, 0.25rem) 0
        var(--eventhub-spacing-md, 1rem);
}

.eventhub-share__buttons {
    display: flex;
    gap: var(--eventhub-spacing-sm, 0.5rem);
    flex-wrap: wrap;
    align-items: center;
}

.eventhub-share__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border: none;
    border-radius: var(--eventhub-border-radius);
    background: transparent;
    color: var(--eventhub-color-text-muted);
    cursor: pointer;
    transition:
        color 0.2s,
        background-color 0.2s;
    text-decoration: none;
}

.eventhub-share__button:hover,
.eventhub-share__button:focus {
    background: var(--eventhub-color-surface);
    color: var(--eventhub-color-text);
}

.eventhub-share__button:focus {
    outline: 2px solid var(--eventhub-color-primary);
    outline-offset: 2px;
}

.eventhub-share__icon {
    width: 18px;
    height: 18px;
}

/* Einheitlicher Hover für alle Share-Buttons */
.eventhub-share__button:hover,
.eventhub-share__button:focus {
    color: var(--eventhub-color-primary, #4da6d9);
    background: var(--eventhub-color-surface, rgba(0, 0, 0, 0.04));
}

/* Kopiert-Status */
.eventhub-share__button--copy.is-copied {
    color: var(--eventhub-color-featured);
}

/* ==========================================================================
   KALENDER-LINKS - Einzelseiten-spezifische Styles
   (Basis-Styles sind in eventhub-calendar.css zentralisiert)
   ========================================================================== */

/* Buttons-Container für Einzelevents */
.eventhub-calendar-links__buttons {
    display: flex;
    flex-wrap: wrap;
    gap: var(--eventhub-spacing-xs);
}

/* ==========================================================================
   ÄHNLICHE VERANSTALTUNGEN
   ========================================================================== */

.eventhub-similar-events {
    margin-top: var(--eventhub-spacing-xl, 2rem);
    margin-bottom: var(--eventhub-spacing-xl, 2rem);
}

.eventhub-similar-events__title {
    margin: 0 0 var(--eventhub-spacing-lg, 1.5rem) 0;
    font-size: var(--eventhub-font-size-lg, 1.25rem);
    font-weight: 600;
    font-family: inherit;
    color: var(--eventhub-color-text, inherit);
}

/* Grid: 3 Spalten Desktop, 2 Tablet, 1 Mobile */
.eventhub-similar-events__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--eventhub-grid-gap, 1.5rem);
}

@media (max-width: 1024px) {
    .eventhub-similar-events__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .eventhub-similar-events__grid {
        grid-template-columns: 1fr;
    }

    .eventhub-similar-events {
        margin-top: var(--eventhub-spacing-lg, 1.5rem);
        padding-top: var(--eventhub-spacing-lg, 1.5rem);
    }
}
