/* ── Concular Events – Frontend Styles ─────────────────────────────────────── */

.ce-event-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin: 24px 0;
    font-family: inherit;
}

.ce-event-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    background: #ffffff;
    border: 1px solid #e4ebe4;
    border-left: 4px solid #4a7c4a;
    border-radius: 8px;
    padding: 18px 22px;
    transition: box-shadow 0.2s ease;
}

.ce-event-item:hover {
    box-shadow: 0 4px 16px rgba(74, 124, 74, 0.12);
}

/* Date block */
.ce-event-date-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-width: 52px;
    background: #4a7c4a;
    color: #ffffff;
    border-radius: 8px;
    padding: 8px 6px;
    line-height: 1.1;
    flex-shrink: 0;
}

.ce-event-date-block .ce-day {
    font-size: 22px;
    font-weight: 700;
}

.ce-event-date-block .ce-month {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    opacity: 0.9;
}

/* Body */
.ce-event-body {
    flex: 1;
    min-width: 0;
}

.ce-event-title {
    font-size: 17px;
    font-weight: 600;
    margin: 0 0 8px;
    color: #1a1a1a;
    line-height: 1.3;
}

.ce-event-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 20px;
    font-size: 14px;
    color: #555;
}

.ce-meta-item {
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

/* Empty state */
.ce-no-events {
    color: #888;
    font-style: italic;
    padding: 16px 0;
}

/* Responsive */
@media ( max-width: 600px ) {
    .ce-event-item {
        flex-direction: column;
        gap: 12px;
    }

    .ce-event-date-block {
        flex-direction: row;
        gap: 6px;
        width: auto;
        align-self: flex-start;
        padding: 6px 12px;
    }

    .ce-event-date-block .ce-day {
        font-size: 16px;
    }

    .ce-event-meta {
        flex-direction: column;
        gap: 6px;
    }
}
