/*==================================================
 ABOUT SECTION
==================================================*/

.about-section {
    padding: 80px 20px;
    background: #ffffff;
}

.about-container {
    width: min(90%, 1200px);
    margin: 0 auto;
}

.about-section h2 {
    text-align:center;
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 50px;
}

/*.about-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 60px;
}*/
.about-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

/* CIRCULAR HEADSHOT */

/*.about-photo {
    flex: 0 0 280px;
}*/
.about-text {
    max-width: 800px;
    text-align: left;
    letter-spacing:3px;
}
.about-photo img {
    width: 280px;
    height: 280px;
    display: block;

    object-fit: cover;
    object-position: center;

    border-radius: 50%;

    border: 6px solid #ffffff;
    box-shadow: 0 10px 30px rgba(0,0,0,.18);
}

/* ABOUT TEXT */

.about-text {
    flex: 1;
    max-width: 1400px;
}

.about-text h3 {
    color: var(--primary);
    font-size: 2rem;
    margin-bottom: 20px;
}

.about-text p {
    font-size: 2rem;
    line-height: 2;
    color: var(--text);
    margin-bottom: 18px;
}

/*==================================================
 ABOUT - RESPONSIVE
==================================================*/

@media (max-width: 768px) {

    .about-section {
        padding: 60px 20px;
    }

    .about-content {
        flex-direction: column;
        gap: 35px;
        text-align: center;
    }

    .about-photo {
        flex: none;
    }

    .about-photo img {
        width: 220px;
        height: 220px;
    }

    .about-section h2 {
        font-size: 2rem;
        margin-bottom: 35px;
    }

    .about-text h3 {
        font-size: 1.6rem;
        text-align: center;
    }

}
