/* swimART Events */
.swimart-events-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin: 1.5rem 0;
}

/* Event-Karte */
.swimart-event-card {
    display: flex;
    gap: 20px;
    background: #fff;
    border: 1px solid #dbeafe;
    border-radius: 14px;
    padding: 24px;
    transition: box-shadow .25s ease, transform .25s ease;
}
.swimart-event-card:hover {
    box-shadow: 0 8px 24px rgba(5, 122, 212, .12);
    transform: translateY(-2px);
}

/* Kalender-Badge */
.swimart-event-badge {
    flex-shrink: 0;
    width: 64px;
    height: 64px;
    background: var(--swim-primary, #057ad4);
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #fff;
    line-height: 1;
}
.swimart-event-badge-month {
    font-size: .7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .5px;
    opacity: .9;
}
.swimart-event-badge-day {
    font-size: 1.6rem;
    font-weight: 800;
    margin-top: 2px;
}

/* Details */
.swimart-event-details {
    flex: 1;
    min-width: 0;
}
.swimart-event-title {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--swim-primary, #057ad4);
    margin: 0 0 8px;
    line-height: 1.3;
}

/* Meta-Zeilen */
.swimart-event-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 6px 20px;
    font-size: .85rem;
    color: #6b7280;
    margin-bottom: 8px;
}
.swimart-event-meta span {
    display: inline-flex;
    align-items: center;
    gap: 5px;
}
.swimart-event-meta svg {
    color: var(--swim-primary, #057ad4);
    flex-shrink: 0;
}

/* Beschreibung */
.swimart-event-description {
    font-size: .9rem;
    color: #374151;
    line-height: 1.6;
    margin-top: 8px;
}
.swimart-event-description p:last-child {
    margin-bottom: 0;
}

/* Leere Meldung */
.swimart-events-empty {
    color: #6b7280;
    font-style: italic;
    padding: 20px;
    text-align: center;
}

/* Responsive */
@media (max-width: 600px) {
    .swimart-event-card {
        flex-direction: column;
        gap: 12px;
        padding: 20px 16px;
    }
    .swimart-event-badge {
        width: 52px;
        height: 52px;
    }
    .swimart-event-badge-day {
        font-size: 1.3rem;
    }
    .swimart-event-meta {
        flex-direction: column;
        gap: 4px;
    }
}
