@media only screen and (min-width: 0rem) {
    #about-us {
        z-index: 1;
        position: relative;
        overflow: hidden;
        padding: var(--sectionPadding);
        padding-top: 3.125rem;
        padding-bottom: 9.375rem;
    }

    #about-us .cs-container {
        display: flex;
        flex-direction: column;
        align-items: center;
        margin: auto;
        max-width: 36.5rem;
        width: 100%;
        gap: clamp(3rem, 6vw, 4rem);
    }

    #about-us .cs-content {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        max-width: 39.375rem;
        width: 100%;
        text-align: left;
    }

    #about-us .cs-title {
        max-width: 26ch;
    }

    #about-us .cs-text {
        margin-bottom: 1rem;
    }

    #about-us .cs-text a {
        text-decoration: none;
        color: var(--primary);
    }

    #about-us .cs-text:last-of-type {
        margin-bottom: 1.5rem;
    }

    #about-us h3 {
        color: var(--primary);
    }

    #about-us .cs-image-group {
        position: relative;
        height: 32.5rem;
        max-width: 36.625rem;
        width: 100%;
        overflow: hidden;
    }

    #about-us .cs-background {
        display: block;
        height: 100%;
        width: 100%;
        object-fit: cover;
    }

    #about-us .cs-background img {
        display: block;
        height: 100%;
        width: 100%;
        object-fit: cover;
    }

    #about-us .cs-box {
        position: absolute;
        bottom: clamp(0.75rem, 1.9vw, 1.5rem);
        right: clamp(0.75rem, 1.9vw, 1.5rem);
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        background-color: var(--primary);
        max-width: 19rem;
        width: 100%;
        box-sizing: border-box;
        padding: 2rem;
        text-align: left;
        gap: 1.5rem;
    }
    

    #about-us .cs-desc {
        margin: 0;
        width: 100%;
        font-size: 1.25rem;
        line-height: 1.2em;
        font-weight: 700;
        color: var(--bodyTextColorWhite);
        text-align: inherit;
    }

    #about-us .cs-graphic {
        z-index: 1;
        position: absolute;
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
        height: auto;
        min-width: 75rem;
        width: 100%;
        object-fit: cover;
    }
}

@media only screen and (min-width: 64rem) {
    #about-us {
        padding-bottom: 13vw;
    }

    #about-us .cs-container {
        flex-direction: row;
        justify-content: space-between;
        align-items: stretch;
        max-width: 80rem;
    }

    #about-us .cs-content {
        padding: 3rem 0;
        align-self: center;
    }

    #about-us .cs-image-group {
        height: auto;
    }
}

@media only screen and (min-width: 0rem) {
    #teachers {
        background-color: #1a1a1a;
        padding: var(--sectionPadding);
        padding-top: 3.125rem;
    }

    #teachers .cs-container {
        display: flex;
        flex-direction: column;
        align-items: center;
        margin: auto;
        max-width: 80rem;
        width: 100%;
        gap: clamp(3rem, 6vw, 4rem);
    }

    #teachers .cs-content {
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 100%;
        text-align: center;
    }

    #teachers .cs-title {
        margin: 0;
        max-width: 24ch;
    }

    #teachers .cs-link {
        color: var(--primary);
    }

    #teachers .cs-social-icon {
        display: block;
        margin-top: 2rem;
        height: auto;
        width: 2rem;
    }

    #teachers .cs-card-group {
        display: grid;
        grid-template-columns: repeat(12, 1fr);
        margin: 0;
        width: 100%;
        padding: 0;
        gap: clamp(1rem, 2vw, 1.25rem);
    }

    #teachers .cs-item {
        width: 100%;
        list-style: none;
        grid-column: span 12;
        grid-row: span 1;
    }

    #teachers .cs-picture {
        position: relative;
        display: block;
        min-height: clamp(16.25rem, 30vw, 18.75rem);
        width: 100%;
        overflow: hidden;
        aspect-ratio: 1.26153846;
    }

    #teachers .cs-picture img {
        position: absolute;
        top: 0;
        left: 0;
        height: 100%;
        width: 100%;
        object-fit: cover;
        object-position: top;
    }

    #teachers .cs-flex {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: flex-start;
        border: 1px solid rgba(255, 255, 255, 0.2);
        border-top: none;
        width: 100%;
        box-sizing: border-box;
        padding: clamp(1rem, 3vw, 2rem);
        text-align: left;
    }

    #teachers .cs-name {
        margin: 0;
        text-transform: uppercase;
        font-family: var(--headerFont);
        font-size: clamp(1.25rem, 2.3vw, 1.5625rem);
        line-height: 1.2em;
        font-weight: 700;
        color: var(--bodyTextColorWhite);
    }

    #teachers .cs-desc {
        display: block;
        margin: 0.5rem 0 clamp(0.5rem, 3.2vw, 1.75rem);
        text-transform: uppercase;
        font-family: var(--headerFont);
        font-size: 1.25rem;
        line-height: 1.5em;
        font-weight: 700;
        color: var(--bodyTextColorWhite);
    }

    #teachers .cs-item-text {
        margin: 0;
        font-size: clamp(0.875rem, 1.5vw, 1rem);
        line-height: 1.5em;
        color: var(--bodyTextColorWhite);
    }

    #teachers h3 {
        margin: 1rem 0 0.5rem;
        color: var(--primary);
    }

    #teachers ul {
        padding-left: 1.25rem;
    }

    #teachers ul li {
        color: var(--bodyTextColorWhite);
    }

    #teachers ul li a {
        color: var(--primary);
    }
}

@media only screen and (min-width: 48rem) {
    #teachers .cs-item {
        display: flex;
        flex-direction: row;
    }

    #teachers .cs-picture {
        min-height: 25rem;
        max-width: 25rem;
        aspect-ratio: initial;
        flex: none;
    }

    #teachers .cs-flex {
        border-top: 1px solid rgba(255, 255, 255, 0.2);
        border-left: none;
    }
}

@media only screen and (min-width: 64rem) {
    #teachers .cs-card-group {
        flex-direction: row;
        justify-content: space-between;
        align-items: stretch;
    }

    #teachers ul {
        columns: 2;
    }
}
