.gc-directory-department-container {
    width: 100%;
    display: flex;
    justify-content: space-between;
    border: solid 1px rgba(0, 0, 0, .125);
    padding: 1rem;
    margin-bottom: 1rem;
    text-decoration: none;
    color: #003366;
    transition: background-color 0.2s ease-in-out;
    height: 6rem;
}

.gc-directory-department-left {
    display: flex;
    align-items: flex-start;
    flex-direction: column;
}

.gc-directory-department-initials {
    background-color: #006633;
    width: 3rem;
    height: 3rem;
    margin-right: 1rem;
    color: white;
    font-weight: bold;
    display: flex;
    justify-content: center;
    align-items: center;
    text-transform: uppercase;
}

.gc-directory-department-name-position {
    font-family: inherit;
}

.gc-directory-department-name {
    font-weight: bold;
    color: #003366;
    font-size: 1.15rem;
}

.gc-directory-department-position {
    color: #3b3b3b;
    max-width: 28rem;
}

.gc-directory-department-right {
    text-align: right;
    align-self: center;
}

.gc-directory-department-department {
    font-weight: bold;
}

.gc-directory-department-phone {
    font-family: inherit;
}

.gc-directory-department-email {
    font-family: inherit;
}

.gc-directory-department-website {
    font-family: inherit;
}

.gc-directory-department-phone a,
.gc-directory-department-email a,
.gc-directory-department-website a {
    text-decoration: none;
    color: #003366;
}

.gc-directory-department-phone a:hover,
.gc-directory-department-email a:hover,
.gc-directory-department-website a:hover {
    text-decoration: underline;
    color: #003366;
}


@media only screen and (max-width: 70rem) {

    .gc-directory-department-container {
        flex-direction: column;
        gap: 1rem;
        justify-content: center;
    }

    .gc-directory-department-left {
        width: 100%;
        max-width: 100%;
        justify-content: center;
    }

    .gc-directory-department-name {
        width: 100%;
        text-align: center;
    }

    .gc-directory-department-container {
        height: auto;
    }

    .gc-directory-department-campuslocation {
        width: 100%;
        text-align: center;
    }

    .gc-directory-department-right {
        text-align: center;
    }
}