/* ==========================================================
   ABOUT PAGE
========================================================== */

.about-container {
    max-width: 1100px;
}

.about-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    padding: 48px;
}

.about-wrapper {
    display: flex;
    align-items: flex-start;
    gap: 48px;
}

.about-content {
    flex: 1;
    min-width: 0;
}

.about-content p {
    margin: 0 0 22px;
    line-height: 1.9;
    color: var(--text);
}

.about-content p:last-child {
    margin-bottom: 0;
}

/* ==========================================================
   SIDEBAR
========================================================== */

.about-sidebar {
    width: 320px;
    flex-shrink: 0;
}

.about-profile {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.about-profile img {
    width: 100%;
    display: block;
    aspect-ratio: 4 / 5;
    object-fit: cover;
}

.about-profile-content {
    padding: 28px;
}

.about-profile-content h2 {
    margin: 0 0 18px;
    font-family: "Cormorant Garamond", serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary);
}

.about-profile-content p {
    margin: 0 0 18px;
    line-height: 1.8;
    color: var(--text);
}

.about-profile-content p:last-child {
    margin-bottom: 0;
}

/* ==========================================================
   TABLET
========================================================== */

@media (max-width: 992px) {

    .about-wrapper {
        flex-direction: column;
    }

    .about-sidebar {
        width: 100%;
    }

}

/* ==========================================================
   MOBILE
========================================================== */

@media (max-width: 768px) {

    .about-card {
        padding: 32px 24px;
    }

    .about-wrapper {
        gap: 32px;
    }

    .about-profile-content {
        padding: 24px;
    }

    .about-profile-content h2 {
        font-size: 1.8rem;
    }

}

@media (max-width: 480px) {

    .about-card {
        padding: 24px 18px;
    }

    .about-content p,
    .about-profile-content p {
        line-height: 1.8;
    }

}