.musees__horaires {
font-size: 22px;
width: 100%;
max-width: var(--maxwidth);
border-collapse: collapse;
table-layout: fixed;
}
.musees__horaires tr:first-child {
background-color: var(--red);
color: white;
}
.musees__horaires th[scope="col"]:first-child {
width: 35%;
}
.musees__horaires th,
.musees__horaires td {
padding: 8px 16px;
}
.musees__horaires th[scope="row"],
.musees__horaires th[scope="rowgroup"] {
text-align: left;
}
.musees__horaires th[scope="row"],
.musees__horaires th[scope="row"] + td,
.musees__horaires th[scope="rowgroup"] {
border-bottom: 1px solid var(--red);
}
.musees__horaires caption {
text-align: center;
padding: 12px 16px;
font-style: italic;
caption-side: bottom;
}
@media screen and (max-width: 900px) {
table.musees__horaires  {
overflow-x: auto;
display: block;
white-space: nowrap;
}
}