#symposiumHero{
    background-image: url('../img/2059290305_3a8de39a1a_c.jpg');
}

#agendaGrid{
    display: grid; 
    grid-template-columns: 15% 30%;
    justify-content: center;
    row-gap: 10px;
}

#agendaGrid div {
    padding: 10px 20px;
    border: 1px solid;
    min-height: 4rem;
    display: flex;
    align-items: center;
}

#agendaGrid div:nth-child(odd) {
    background-color: var(--silvernail-grey);
    border-right: 0;
    font-weight: 700;
    justify-content: right;
}

#agendaGrid div:nth-child(even) {
    border-left: 0;
}

@media (max-width:991px){
    #agendaGrid{
        grid-template-columns: 40% 60%;
        padding: 0 20px;
    }
}