.oana-events {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 100%;
}

.oana-event {
    width: 100%;
    background: #fdfdfd;
    border: 1px solid #e7e7e7;
    border-radius: 0px;
    overflow: hidden;
    transition: background-color 0.2s ease, border-color 0.2s ease;
}

.oana-event-link {
    display: grid;
    grid-template-columns: 90px minmax(0, 1fr);
    gap: 24px;
    align-items: center;
    width: 100%;
    padding: 16px 18px;
    color: inherit;
    text-decoration: none;
}

.oana-event-date {
    width: 90px;
    height: 90px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    background: #FBF5EE;
    border: 1px solid #e9dfd2;
    border-radius: 0px;
    line-height: 1;
}

.oana-event-month {
    margin-bottom: 6px;
    font-size: 13px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: orange;
}

.oana-event-day {
    font-size: 42px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: -0.04em;
}

.oana-event-content {
    min-width: 0;
}

.oana-event-title {
    margin: 0;
    font-size: 26px;
    font-weight: 600;
    line-height: 1.2;
}

.oana-event-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 6px 16px;
    margin-top: 7px;
    font-size: 14px;
    line-height: 1.4;
    color: #777;
}

.oana-event-time,
.oana-event-location {
    display: inline-block;
}

.oana-event-time::after {
    content: "·";
    margin-left: 16px;
}

.oana-event:hover {
    background: #f7f7f7;
    border-color: #d8d8d8;
}

.oana-event-link:hover,
.oana-event-link:hover .oana-event-title {
    text-decoration: none;
}


/* Mobile */

@media (max-width: 640px) {

    .oana-events {
        gap: 8px;
    }

    .oana-event-link {
        grid-template-columns: 65px minmax(0, 1fr);
        gap: 16px;
        padding: 12px;
    }

    .oana-event-date {
        width: 65px;
        height: 65px;
        border-radius: 8px;
    }

    .oana-event-month {
        margin-bottom: 4px;
        font-size: 10px;
    }

    .oana-event-day {
        font-size: 30px;
    }

    .oana-event-title {
        font-size: 20px;
    }

    .oana-event-meta {
        margin-top: 5px;
        font-size: 13px;
    }
}
