.opening-hours__full,
.opening-hours__specifications,
.opening-hours__today-and-next {
    display: grid;
    grid-template-columns: 1fr;
    column-gap: 1rem;
}

.opening-hours__full .opening-hours__term,
.opening-hours__specifications .opening-hours__term,
.opening-hours__today-and-next .opening-hours__term {
    grid-column: 1;
}

.opening-hours__full .opening-hours__description,
.opening-hours__specifications .opening-hours__description,
.opening-hours__today-and-next .opening-hours__description {
    grid-column: 1;
    margin: 0;
}

@media (max-width: 29.999em) {
    .opening-hours__full .opening-hours__term:not(:first-child),
    .opening-hours__specifications .opening-hours__term:not(:first-child),
    .opening-hours__today-and-next .opening-hours__term:not(:first-child) {
        margin-top: 1rem;
    }
}

@media (min-width: 30em) {
    .opening-hours__full,
    .opening-hours__specifications,
    .opening-hours__today-and-next {
        grid-template-columns: auto 1fr;
        row-gap: 1rem;
    }

    .opening-hours__full .opening-hours__description,
    .opening-hours__specifications .opening-hours__description,
    .opening-hours__today-and-next .opening-hours__description {
        grid-column: 2;
    }
}
