/* Event list wrapper */
.cei-events {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

/* Single event row */
.cei-event {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
}

/* Left date block */
.cei-date {
    width: 80px;
    text-align: center;
    flex-shrink: 0;
}

.cei-day {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: #6b7280; /* gray */
}

.cei-num {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1;
    color: #111827; /* almost black */
}

/* Right content */
.cei-content {
    flex: 1;
}

.cei-date-long {
    font-size: 0.9rem;
    color: #6b7280;
    margin-bottom: 0.5rem;
}

.cei-content h3 {
    font-size: 2rem;
    line-height: 1.2;
    margin: 0;
    font-weight: 700;
}

.cei-month-separator {
    border-top: 2px solid #ccc;
    margin: 2rem 0;
}
