/************************************************
UNIVERSITY CREDENTIAL TABLE
************************************************/

.university-credentials-table-wrapper{
    width:100%;
    overflow:hidden;
    background:#ffffff;
    border:1px solid #E7E5E4;
    border-radius:22px;
}

.university-credentials-table{
    width:100%;
    margin:0;
    border:0;
    border-collapse:collapse;
    table-layout:fixed;
}

/************************************************
TABLE HEADER
************************************************/

.university-credentials-table thead{
    background:#F5F5F4;
}

.university-credentials-table th{
    padding:22px 28px;
    border:0;
    border-right:1px solid #E7E5E4;
    border-bottom:1px solid #E7E5E4;
    text-align:left;
    vertical-align:middle;
    text-transform:uppercase;
    letter-spacing:.5px;

    font-family:
        var(--e-global-typography-c7b325a-font-family),
        Baskerville;
    font-size:
        var(--e-global-typography-c7b325a-font-size);
    font-weight:600;
    line-height:1.5;
    color:#444444;
}

.university-credentials-table th:first-child{
    width:34%;
}

.university-credentials-table th:last-child{
    width:66%;
    border-right:0;
}

/************************************************
TABLE BODY
************************************************/

.university-credentials-table td{
    padding:26px 28px;
    border:0;
    border-right:1px solid #E7E5E4;
    border-bottom:1px solid #E7E5E4;
    text-align:left;
    vertical-align:top;

    font-family:
        var(--e-global-typography-c7b325a-font-family),
        Baskerville;
    font-size:
        var(--e-global-typography-c7b325a-font-size);
    font-weight:
        var(--e-global-typography-c7b325a-font-weight);
    line-height:1.7;
    color:var(--e-global-color-4e342ee);
    background:#ffffff;
    transition:background-color .25s ease;
}

.university-credentials-table td:last-child{
    border-right:0;
}

.university-credentials-table tbody tr:last-child td{
    border-bottom:0;
}

.university-credentials-table tbody tr:hover td{
    background:#FCFAF6;
}

.university-credentials-table td:first-child{
    color:var(--e-global-color-2ec9704);
}

.university-credentials-table td strong{
    font-weight:600;
}

.university-credentials-table td p{
    margin-top:0;
}

.university-credentials-table td p:last-child,
.university-credentials-table td ul:last-child,
.university-credentials-table td ol:last-child{
    margin-bottom:0;
}

.university-credentials-table td a{
    color:#A7812C;
    text-decoration:underline;
    text-underline-offset:3px;
}

.university-credentials-table td a:hover{
    color:#3B3B3B;
}

/************************************************
TABLET
************************************************/

@media(max-width:991px){

    .university-credentials-table th,
    .university-credentials-table td{
        padding:20px;
    }

    .university-credentials-table th:first-child{
        width:38%;
    }

    .university-credentials-table th:last-child{
        width:62%;
    }
}

/************************************************
MOBILE CARD LAYOUT
************************************************/

@media(max-width:767px){

    .university-credentials-table-wrapper{
        overflow:visible;
        border:0;
        border-radius:8px;
        background:transparent;
    }

    .university-credentials-table,
    .university-credentials-table tbody,
    .university-credentials-table tr,
    .university-credentials-table td{
        display:block;
        width:100%;
    }

    .university-credentials-table thead{
        display:none;
    }

    .university-credentials-table tbody{
        display:flex;
        flex-direction:column;
        gap:16px;
    }

    .university-credentials-table tr{
        overflow:hidden;
        background:#ffffff;
        border:1px solid #E7E5E4;
        border-radius:18px;
        box-shadow:0 6px 20px rgba(0,0,0,.04);
    }

    .university-credentials-table td{
        padding:18px;
        border:0;
        border-bottom:1px solid #E7E5E4;
    }

    .university-credentials-table td:last-child{
        border-bottom:0;
    }

    .university-credentials-table td::before{
        display:block;
        margin-bottom:8px;
        content:attr(data-label);
        text-transform:uppercase;
        letter-spacing:.4px;

        font-family:
            var(--e-global-typography-c7b325a-font-family),
            Baskerville;
        font-size:13px;
        font-weight:600;
        line-height:1.4;
        color:#A7812C;
    }

    .university-credentials-table tbody tr:hover td{
        background:#ffffff;
    }
}