/* ─── Блок «Что ждать» ─── */
.events-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.events-list li {
    padding: 18px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    line-height: 1.5;
    display: flex;
    flex-direction: column;
    gap: 8px; 
    align-items: flex-start; 
    justify-content: flex-start;
    text-align: left;
}
[data-theme="light"] .events-list li {
    border-bottom-color: #e3dfd8;
}
.events-list li:first-child {
    padding-top: 4px;
}
.events-list li:last-child {
    border-bottom: none;
    padding-bottom: 4px;
}

.event-when {
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #c9a227;
    font-weight: 700;
    align-items: flex-start; 
    justify-content: flex-start;
    margin: 0;
    opacity: 0.9;
}
[data-theme="light"] .event-when {
    color: #a37b1f;
}

.event-what {
    font-size: 1rem;
    color: #ede7df;
    line-height: 1.45;
    align-items: flex-start; 
    justify-content: flex-start;
    text-decoration: none;
    transition: color 0.2s;
}
[data-theme="light"] .event-what {
    color: #262421;
}
.event-what:hover {
    color: #c9a227;
}