.ah-events-calendar {
    max-width: 1000px;
    margin: 0 auto;
}

.ah-events-year-title {
    margin: 0 0 2rem;
    text-align: center;
    font-size: clamp(1.8rem, 3vw, 2.6rem);
    line-height: 1.1;
}

.ah-events-month {
    margin-bottom: 2.75rem;
}

.ah-events-month-title {
    margin: 0 0 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid currentColor;
    font-size: clamp(1.35rem, 2vw, 1.8rem);
}

.ah-event-card {
    display: grid;
    grid-template-columns: 110px minmax(0, 1fr);
    gap: 1.2rem;
    padding: 1rem;
    margin-bottom: 1rem;
    border: 1px solid rgba(0, 0, 0, 0.12);
    border-radius: 16px;
    background: #fff;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.04);
}

.ah-event-date {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 90px;
    border-radius: 12px;
    background: rgba(0, 0, 0, 0.05);
    text-align: center;
}

.ah-event-weekday {
    font-size: 0.85rem;
    font-weight: 600;
    opacity: 0.75;
}

.ah-event-day {
    display: block;
    margin-top: 0.15rem;
    font-size: 2rem;
    font-weight: 800;
    line-height: 1;
}

.ah-event-title {
    margin: 0 0 0.45rem;
    font-size: 1.2rem;
    line-height: 1.25;
}

.ah-event-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.35rem 1rem;
    margin-bottom: 0.65rem;
    font-size: 0.95rem;
    opacity: 0.8;
}

.ah-event-description > *:first-child {
    margin-top: 0;
}

.ah-event-description > *:last-child {
    margin-bottom: 0;
}

.ah-event-link {
    display: inline-block;
    margin-top: 0.75rem;
    font-weight: 700;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.ah-events-empty {
    text-align: center;
    opacity: 0.75;
}

@media (max-width: 640px) {
    .ah-event-card {
        grid-template-columns: 1fr;
    }

    .ah-event-date {
        align-items: flex-start;
        min-height: auto;
        padding: 0.85rem;
        text-align: left;
    }
}
