﻿#GlobalNavWrapper {
    --hero-image: url(../../assets/images/BuildingSouth1920.jpg);
    --hero-height: calc(100vh - 10px);
}

#Default {
    font-size: 20px;
}

.content-area p {
    text-wrap: balance;
}

.appointment-cta {
    width: 100%;
    text-align: center;
}

.person-grid {
    margin-bottom: 13px;
}

#future-students .table-data > img,
#graduate-team .table-data > img {
    display: block;
    width: 175px;
    height: 200px;
    aspect-ratio: 7 / 8;
    object-fit: cover;
    object-position: center;
}

.faculty-advisors-table {
    border-collapse: collapse;
    border-style: none;
    table-layout: fixed;
    width: 100%;
}

    .faculty-advisors-table th {
        padding-left: 1em;
        padding-top: 0.8em;
    }

        .faculty-advisors-table th:nth-child(3) {
            width: 16%;
        }

        .faculty-advisors-table th:nth-child(4) {
            width: 20%;
        }

    .faculty-advisors-table .advisor-name {
        margin-bottom: 0;
    }

@media screen and (max-width: 950px) {

    h2 {
        text-wrap: balance;
    }

    .table-data, .content-area p {
        text-align: center;
    }

        .table-data img {
            margin: 10px auto;
        }

    #future-students .table,
    #graduate-team .table {
        display: flex;
        flex-direction: column;
        gap: 1.5rem;
    }

    #future-students .table-data,
    #graduate-team .table-data {
        flex-basis: auto;
        width: 100%;
    }

        #future-students .table-data > img,
        #graduate-team .table-data > img {
            margin-bottom: 0.75rem;
        }

    .faculty-advisors-table {
        border-collapse: separate;
        border-spacing: 0 1rem;
        table-layout: auto;
    }

        .faculty-advisors-table tr:first-child {
            display: none;
        }

        .faculty-advisors-table tr {
            display: block;
            padding: 0.75rem;
            border: 1px solid #edf0f1;
            background-color: #fff;
        }

        .faculty-advisors-table td {
            display: grid;
            grid-template-columns: minmax(5.5rem, 32%) 1fr;
            gap: 0.75rem;
            padding: 0.35rem 0;
            border: none;
        }

            .faculty-advisors-table td::before {
                color: #4a4a4a;
                font-weight: 700;
            }

            .faculty-advisors-table td:nth-child(1)::before {
                content: "Area";
            }

            .faculty-advisors-table td:nth-child(2)::before {
                content: "Email";
            }

            .faculty-advisors-table td:nth-child(3)::before {
                content: "Room";
            }

            .faculty-advisors-table td:nth-child(4)::before {
                content: "Phone";
            }

        .faculty-advisors-table p {
            margin: 0 0 0.35rem;
            overflow-wrap: anywhere;
            text-wrap: auto;
        }

            .faculty-advisors-table p:last-child {
                margin-bottom: 0;
            }
}
