.webinarGrid {
    width: 100%;
    display: grid;
    gap: 1.7rem;
    grid-template-columns: 1fr;
}

.webinarGrid .info .date {
    font-size: 20px;
    margin-bottom: -7px;
    margin: 0;
}

.webinarGrid .youtube {
    position: relative;
    border-radius: 10px;
    width: 100%;
    aspect-ratio: 16/9;
    overflow: hidden;
}

.webinarGrid .youtube iframe {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
}

#agenda {
    position: relative;
    grid-row: 2;
    height: fit-content;
    padding: 1rem 0.6rem;
    padding-right: 1rem;
    background-color: var(--veryLightBlue);
    border: 1px solid var(--lightBlue);
}

#agenda :first-child {
    margin-top: 0;
}

#agenda img {
    width: 100%;
    height: auto;
    border-radius: 10px;
}

@media only screen and (min-width: 900px) {
    .webinarGrid {
        grid-template-columns: 1fr 300px;
        grid-template-rows: auto 1fr;
    }
    #agenda {
        grid-row: span 2;
    }
}