.body--past {
    padding: var(--frame-padding);
}


/*==========================================================================*/
/*------------------------ YEARS BUTTON GRID STYLES ------------------------*/
/*==========================================================================*/

.past__years-buttons-grid {
    width: 100%;
    margin-bottom: 50px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
    grid-template-rows: 1fr;
    justify-items: start;
    gap: 10px;
}

.past__years-buttons-grid a {
    text-decoration: none;
    box-shadow: none;
    padding: 5px 10px;
}


/*===========================================================================*/
/*------------------------------ EVENTS STYLES ------------------------------*/
/*===========================================================================*/

.past__year-section {
    margin-bottom: 50px;
    padding-bottom: 10px;
    border-bottom: 2px solid #AAA;
    border-radius: 10px;
}

.past__year-title {
    margin: 0;
    padding: 10px;
    background-color: #CCC;
    border-radius: 7px;
    font-size: 1.6em;
}

.past__year-event-container {
    margin: 30px 30px 0px 30px;
    padding-bottom: 7px;
    border-bottom: 2px solid #DDD;
}

.past__year-event-container:last-child {
    border: none;
}

.past__year-event-date {
    margin: 0 0 10px 0;
    font-size: 1.4em;
}

.past__year-event-title {
    margin: 0 20px;
    font-size: 1.3em;
}

.past__year-event-description {
    margin: 10px 20px;
    font-size: 1.1em;
}