/* ===== ABOUT SECTION ===== */

.about-section {
    padding: 90px 6% 100px;
    background: #f5f5f5;
}

.about-container {
    max-width: 1100px;
    margin: 0 auto;
}

/* ===== TITLE ===== */

.about-title {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    line-height: 1.2;
    text-align: center;

    color: var(--maroon-d);

    margin-bottom: 55px;
}

/* ===== CONTENT GRID ===== */

.about-grid {
    display: grid;

    grid-template-columns: 42% 58%;
    gap: 55px;

    align-items: center;
}

/* ===== IMAGE ===== */

.about-image {
    display: flex;
    justify-content: center;
}

.about-image img {
    width: 100%;
    max-width: 430px;

    height: 540px;

    object-fit: cover;

    border-radius: 24px;

    display: block;
}

/* ===== TEXT ===== */

.about-content {
    max-width: 620px;
}

.about-content p {
    font-size: 1rem;
    line-height: 1.8;

    color: var(--text);

    margin-bottom: 22px;
}

.about-content p:last-child {
    margin-bottom: 0;
}


/* ================================================= */
/* =================== MOBILE ===================== */
/* ================================================= */

@media (max-width: 768px) {

    .about-section {
        padding: 60px 6% 70px;
    }

    .about-container {
        width: 100%;
    }

    /* TITLE */

    .about-title {
        font-size: 2rem;
        line-height: 1.2;

        margin-bottom: 30px;
    }

    .about-title::after {
        width: 45px;
        height: 2px;

        margin-top: 12px;
    }

    /* GRID */

    .about-grid {
        display: flex;
        flex-direction: column;

        gap: 30px;

        width: 100%;
    }

    /* IMAGE */

    .about-image {
        width: 100%;

        display: flex;
        justify-content: center;
    }

    .about-image img {
        width: 100%;
        max-width: 360px;

        height: 420px;

        min-height: 0;

        border-radius: 20px;
    }

    /* TEXT */

    .about-content {
        width: 100%;
        max-width: none;
    }

    .about-content p {
        font-size: .9rem;
        line-height: 1.7;

        margin-bottom: 18px;
    }
}