.alc-plateaux {
    --alc-orange: #f85903;
    --alc-orange-dark: #e35703;
    --alc-black: #171717;
    --alc-border: #e8e8e8;
    width: 100%;
    margin: 28px 0;
    font-family: "Roboto", sans-serif;
}

.alc-plateaux * {
    box-sizing: border-box;
}

.alc-plateaux__shell {
    overflow: hidden;
    border: 1px solid rgba(248, 89, 3, .16);
    border-radius: 22px;
    background: #fff;
    box-shadow: 0 14px 38px rgba(0, 0, 0, .08);
}

.alc-plateaux__heading {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 18px 22px;
    border-bottom: 4px solid var(--alc-orange);
    background: var(--alc-black);
    color: #fff;
}

.alc-plateaux__heading h2 {
    margin: 0 !important;
    color: #fff !important;
    font-family: "Roboto Slab", serif;
    font-size: clamp(21px, 2.4vw, 30px) !important;
    font-weight: 900;
    line-height: 1.15 !important;
    text-transform: uppercase;
}

.alc-plateaux__season {
    flex: 0 0 auto;
    padding: 7px 10px;
    border: 1px solid rgba(255, 255, 255, .24);
    border-radius: 999px;
    color: #fff;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .04em;
    text-transform: uppercase;
}

.alc-plateaux__table {
    width: 100%;
    border-collapse: collapse;
    table-layout: fixed;
}

.alc-plateaux__table th {
    padding: 15px 18px 12px;
    border-bottom: 2px solid var(--alc-black);
    background: #fff;
    color: var(--alc-black);
    font-size: 13px;
    font-weight: 900;
    text-align: left;
    text-transform: uppercase;
}

.alc-plateaux__table th:nth-child(1) { width: 31%; }
.alc-plateaux__table th:nth-child(2) { width: 31%; }
.alc-plateaux__table th:nth-child(3) { width: 38%; }

.alc-plateaux__row td {
    padding: 17px 18px;
    border-bottom: 1px solid var(--alc-border);
    background: #fff;
    color: var(--alc-black);
    vertical-align: middle;
}

.alc-plateaux__row:nth-child(even) td {
    background: #f6f6f6;
}

.alc-plateaux__row:last-child td {
    border-bottom: 0;
}

.alc-plateaux__date,
.alc-plateaux__host,
.alc-plateaux__venue {
    display: block;
    font-size: 16px;
    font-weight: 800;
    line-height: 1.25;
}

.alc-plateaux__label,
.alc-plateaux__city {
    display: block;
    margin-top: 4px;
    color: #555;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.3;
}

.alc-plateaux__row.is-home td {
    background: #fff6f0;
}

.alc-plateaux__row.is-home .alc-plateaux__date,
.alc-plateaux__row.is-home .alc-plateaux__label,
.alc-plateaux__row.is-home .alc-plateaux__host,
.alc-plateaux__row.is-home .alc-plateaux__venue,
.alc-plateaux__row.is-home .alc-plateaux__city {
    color: var(--alc-orange-dark);
    font-weight: 900;
}

.alc-plateaux__home-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    margin-top: 7px;
    padding: 4px 7px;
    border-radius: 999px;
    background: var(--alc-orange);
    color: #fff;
    font-size: 10px;
    font-weight: 900;
    line-height: 1;
    text-transform: uppercase;
}

.alc-plateaux__empty {
    padding: 28px 20px;
    color: #777;
    text-align: center;
}

@media (max-width: 700px) {
    .alc-plateaux__heading {
        align-items: flex-start;
        flex-direction: column;
        padding: 16px;
    }

    .alc-plateaux__table,
    .alc-plateaux__table tbody,
    .alc-plateaux__table tr,
    .alc-plateaux__table td {
        display: block;
        width: 100%;
    }

    .alc-plateaux__table thead {
        display: none;
    }

    .alc-plateaux__table tbody {
        display: grid;
        gap: 12px;
        padding: 12px;
        background: #f5f5f5;
    }

    .alc-plateaux__row {
        overflow: hidden;
        border: 1px solid #e4e4e4;
        border-radius: 14px;
        background: #fff;
    }

    .alc-plateaux__row td,
    .alc-plateaux__row:nth-child(even) td,
    .alc-plateaux__row.is-home td {
        position: relative;
        padding: 12px 14px 12px 112px;
        border: 0;
        border-bottom: 1px solid #ededed;
        background: #fff;
    }

    .alc-plateaux__row.is-home td {
        background: #fff6f0;
    }

    .alc-plateaux__row td:last-child {
        border-bottom: 0;
    }

    .alc-plateaux__row td::before {
        position: absolute;
        top: 13px;
        left: 14px;
        width: 86px;
        color: #777;
        font-size: 10px;
        font-weight: 900;
        letter-spacing: .03em;
        text-transform: uppercase;
    }

    .alc-plateaux__row td:nth-child(1)::before { content: "Date"; }
    .alc-plateaux__row td:nth-child(2)::before { content: "Recevant"; }
    .alc-plateaux__row td:nth-child(3)::before { content: "Lieu"; }

    .alc-plateaux__date,
    .alc-plateaux__host,
    .alc-plateaux__venue {
        font-size: 15px;
    }
}
