.about-section {
    font-size: 1.5rem;
    justify-content: center;
    padding-bottom: 50px;
    display: flex;
    align-items: center;

    img {
        padding: 0;
    }

    .about-section-img {
        object-fit: contain;
        height: 100%;
        border-radius: 5px;
        box-shadow: 0 0 20px 1px var(--background-secondary-darker);
    }
}

.philosophy-section {
    text-align: center;
    font-size: 1.25rem;
    
    .about-description {
        padding: 10px 0;
    }
}

.about-description-container {
    padding: 8% 2%;
}

.about-description-sub {
    font-size: 1.5rem;
}

.about-header {
    font-size: 3rem;
    overflow-wrap: break-word; 
    word-wrap: break-word;
}

.about-header-top {
    text-align: left;
}

.about-subheader {
    font-size: 2.25rem;
}

.bio-section {
    margin: 0 20px;
    justify-content: center;
    padding-bottom: 50px;
    gap: 15px;

    .staff {
        padding: 10px;
    }

    .staff-card {
        background-color: var(--background-secondary-darker);
        box-shadow: 0 0 10px 1px var(--background-secondary);
        color: #f2f9ff;
        border-radius: 10px;
        padding: 40px;

        display: flex;
        align-items: center;
        gap: 5%;

        @media (max-width: 992px) {
            flex-direction: column;
            align-items: center;
        }

        img {
            width: 250px;
            height: 250px;
            border-radius: 50%;
            box-shadow: 0 -3px 10px 3px rgb(255, 255, 255, 0.15);
            margin: 15px 0 20px 0;
        }

        .about-card-text {
            display: flex;
            flex-direction: column;
            justify-content: center;
            gap: 15px;
        }
    }
}

.headshot-title {
    font-size: 1.5rem;
    font-weight: 700;
}