.events-page {
    display: flex;
    gap: 2.5rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 0;
    align-items: flex-start;
}

.events-sidebar {
    width: 230px;
    flex-shrink: 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.2s ease;
}

.events-sidebar.loaded {
    opacity: 1;
    visibility: visible;
}

.events-content {
    flex: 1;
    min-width: 0;
}

.calendar-section {
    margin-bottom: 4rem;
}

.calendar-icon {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 1rem;
}

.calendar-icon a {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none !important;
    border: none !important;
}

.calendar-icon a:hover {
    text-decoration: none !important;
}

.calendar-icon .mcc-icon-calendar {
    font-size: 100px;
    color: #a03040;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.calendar-icon .mcc-icon-calendar::before {
    color: #a03040;
}

.calendar-icon a:hover .mcc-icon-calendar,
.calendar-icon a:hover .mcc-icon-calendar::before {
    color: #333;
}

.calendar-icon .calendar-label {
    font-size: 16px;
    color: #333;
    text-decoration: none !important;
    border-bottom: none !important;
    white-space: nowrap;
}

.calendar {
    width: 100%;
    border: none;
    background: transparent;
    padding: 0;
}

.calendar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.25rem;
    padding: 0;
}

.calendar-header button {
    background: transparent;
    border: 1px solid #999;
    width: 28px;
    height: 28px;
    cursor: pointer;
    font-size: 0.85rem;
    color: #333;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.calendar-header button:hover {
    background: rgba(0, 0, 0, 0.05);
}

.calendar-title {
    font-weight: 400;
    font-size: 0.9rem;
    color: #333;
    text-align: center;
    flex: 1;
    padding: 0 1rem;
}

.calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 2px;
    background: transparent;
}

.calendar-dayname {
    text-align: center;
    padding: 0.25rem 0;
    font-size: 0.75rem;
    font-weight: 700;
    color: #333;
    background: transparent;
}

.calendar-day {
    text-align: center;
    padding: 0.35rem 0;
    font-size: 0.8rem;
    color: #333;
    background: #fff;
}

.calendar-day.disabled {
    background: transparent;
}

.calendar-day.no-events {
    cursor: default;
    color: #333;
    font-weight: 400;
}

.calendar-day.has-events {
    background: #ffc846;
    color: #333;
    font-weight: 600;
    cursor: pointer;
}

.calendar-day.has-events:hover {
    background: #fff;
    outline: 2px solid #a03040;
    color: #a03040;
}

.filter-facets h3 {
    padding: 0.5rem 0;
    margin: 0 0 0.5rem 0;
    font-size: 0.95rem;
    font-weight: 400;
    color: #333;
}

.filter-group {
    margin-bottom: 6px;
}

.filter-group:last-of-type {
    margin-bottom: 0;
}

.filter-header {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.6rem 0.75rem;
    background: #404040;
    color: #fff;
    border: none;
    cursor: pointer;
    font-size: 16px;
    font-weight: 400;
    text-align: left;
    outline: none;
}

.filter-header:hover {
    background: #333;
}

.filter-group.open .filter-header {
    background: #fff;
    color: #333;
}

.filter-header.focused {
    outline: 2px solid #a03040;
    outline-offset: 3px;
}

.filter-toggle {
    font-size: 0.8rem;
}

.filter-options {
    padding: 0;
    background: #fff;
    border: none;
    display: block;
}

.filter-group.collapsed .filter-options {
    display: none;
}

.filter-options label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 0.75rem;
    cursor: pointer;
    font-size: 0.85rem;
    border: none;
    margin: 0;
}

.filter-options input[type="radio"],
.filter-options input[type="checkbox"] {
    margin: 0;
    width: 16px;
    height: 16px;
    accent-color: #333;
}

.filter-buttons {
    display: flex;
    gap: 0.5rem;
    justify-content: flex-end;
    margin-top: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #ddd;
}

.filter-buttons .btn-clear {
    padding: 0.7rem 1.25rem;
    background: #fff;
    border: 1px solid #333;
    color: #333;
    font-size: 15.4px;
    cursor: pointer;
}

.filter-buttons .btn-clear:hover {
    background: #f5f5f5;
}

.filter-buttons .btn-update {
    padding: 0.7rem 1.25rem;
    background: #a03040;
    border: none;
    color: #fff;
    font-size: 15.4px;
    cursor: pointer;
}

.filter-buttons .btn-update:hover {
    background: #8a2535;
}

.events-no-results {
    padding: 1rem 0;
}

.events-no-results p {
    font-size: 14px;
    color: #333;
    margin: 0;
}

.events-content h1.events-page-title {
    font-size: 2.25rem;
    color: #333;
    margin: 0 0 0.5rem 0;
    font-weight: 300;
    font-style: normal;
}

.events-content h1.events-page-title.date-selected {
    font-size: 28px !important;
}

.events-item h2 {
    margin: 0 0 0.5rem 0;
}

.events-page .events-content .events-item h2 a,
.events-page .event-list .events-item h2 a,
.event-list article.events-item h2 a,
.events-page .events-content .events-item h2 a:link,
.events-page .event-list .events-item h2 a:link,
.event-list article.events-item h2 a:link,
.events-page .events-content .events-item h2 a:visited,
.events-page .event-list .events-item h2 a:visited,
.event-list article.events-item h2 a:visited {
    text-decoration: none !important;
    border-bottom: none !important;
    color: #2B5E80 !important;
}

.events-page .events-content .events-item h2 a:hover,
.events-page .event-list .events-item h2 a:hover,
.event-list article.events-item h2 a:hover,
.events-page .events-content .events-item h2 a:focus,
.events-page .event-list .events-item h2 a:focus,
.event-list article.events-item h2 a:focus {
    text-decoration: underline !important;
    border-bottom: none !important;
    color: #2B5E80 !important;
}

.events-item .event-meta {
    margin: 0.75rem 0;
}

.events-item .event-meta p {
    margin: 0 0 0.25rem 0;
    font-size: 0.95rem;
    color: #333;
}

.events-item .event-meta strong {
    font-weight: 700;
}

.events-item .event-description {
    margin: 0.75rem 0 0 0;
    font-size: 0.95rem;
    color: #333;
}

.events-page .events-content .event-list-container,
.events-page .events-content .event-list,
.events-page .events-content .events-item,
.events-page .events-content article.events-item {
    padding-left: 0 !important;
    padding-right: 0 !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
}

.events-page article,
.event-list article,
.event-list-container article {
    padding: 1rem 0 !important;
    margin: 0 !important;
    border-bottom: 1px solid #ddd;
}

.events-page article:last-child,
.event-list article:last-child {
    border-bottom: none;
}

.events-page .events-content,
.events-page .event-list-container,
.events-page .event-list {
    max-width: none;
    width: 100%;
}

@media (max-width: 768px) {
    .events-page {
        flex-direction: column;
        padding: 1rem;
    }
    
    .events-sidebar {
        width: 100%;
        max-width: 280px;
    }
}