/**
 * Block Name: programm
 */

section.programm {
    background-color: var(--green-1);
}

section.programm table {
    width: 100%;
    border-collapse: collapse;
    table-layout: fixed;
}

section.programm table th {
    text-align: left;
    vertical-align: bottom;
}

section.programm table thead h4 {
    margin-bottom: 0;
    padding: 30px 0;
}

section.programm table tr {
    border-top: 2px solid var(--green-4);
}

section.programm table tbody tr:last-child {
    border-bottom: 2px solid var(--green-4);
}

section.programm table th:first-child,
section.programm table td.zeit {
    width: 25%;
    padding-right: 30px;
}

section.programm table td {
    padding: 30px 0;
    vertical-align: top;
}

section.programm table td.d-flex {
    display: table-cell !important;
}

section.programm table td p:last-child {
    margin-bottom: 0;
}

section.programm table .btn.btn-primary {
    background-color: var(--green-4);
}

/* Mobile */
@media (max-width: 767.98px) {
    section.programm table {
        table-layout: auto;
    }

    section.programm table thead {
        display: none;
    }

    section.programm table,
    section.programm table tbody,
    section.programm table tr,
    section.programm table td {
        display: block;
        width: 100%;
    }

    section.programm table tr {
        padding: 25px 0;
    }

    section.programm table td,
    section.programm table td.zeit {
        width: 100%;
        padding: 0;
    }

    section.programm table td.zeit {
        margin-bottom: 10px;
    }

    section.programm table td.d-flex {
        display: block !important;
    }
}