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

.about-title {
    font-size: 36px;
    font-weight: 700;
    color: var(--basic-color);
    margin: 0 0 32px 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.about-content {
    display: flow-root;
}

.about-image-wrap {
    float: left;
    display: block;
    margin: 0 36px 24px 0;
    border-radius: 12px;
    overflow: hidden;
    max-width: 340px;
    width: 100%;
    flex-shrink: 0;
}

.about-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 12px;
    transition: opacity 0.2s ease;
}

.about-image-wrap:hover .about-image {
    opacity: 0.9;
}

.about-text p {
    font-size: 16px;
    line-height: 1.75;
    color: #333;
    margin: 0 0 18px 0;
    font-family: var(--basic-font);
}

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

/* --- Responsive --- */
@media (max-width: 767px) {
    .about-title {
        font-size: 26px;
    }

    .about-image-wrap {
        float: none;
        margin: 0 0 24px 0;
        max-width: 100%;
    }
}
