.events-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    max-width: 1280px;
    margin: 0 auto 40px auto;
}

.events-grid > h2 {
    grid-column: 1 / -1;
    text-align: left;
    margin: 0 0 20px 0;
}

.events-grid .event-item {
    display: flex;
    border-radius: 0px;
    overflow: hidden;
    box-shadow: 0 0px 30px rgba(0,0,0,0.1);
}

.events-grid .date-block {
    background: #051163;
    color: #fff;
    /* padding: 10px; */
    padding: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 60px;
}

.events-grid .date-block .week {
    /* font-size: 0.9rem; */
    font-size: 1.6rem;
    font-weight: bold;
}

.events-grid .date-block .day {
    /* font-size: 1.6rem; */
    font-size: 3.5em;
    line-height: 1;
}

.events-grid .date-block .month {
    /* font-size: 0.9rem; */
    font-size: 1.6rem;
    text-transform: uppercase;
}

.events-grid .details-block {
    background: white;
    /* padding: 10px 15px; */
    padding: 25px 30px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    flex: 1;
}

.events-grid .details-block h3 {
    margin: 0 0 5px;
    font-size: 1.5rem;
}

.events-grid .details-block .event-time {
    margin-bottom: 10px;
}

.events-grid .details-block p {
    margin: 0 0 10px;
    flex: 1;
    font-size: 0.95rem;
    line-height: 1.2;
}

.events-grid .details-block a {
    align-self: flex-start;
    text-decoration: none;
    font-weight: bold;
    color: #051163;
}

.events-grid .details-block a:hover {
    text-decoration: underline;
}

@media (max-width: 980px) { 
    .events-grid {
        grid-template-columns: repeat(1, 1fr);
    }   
}