﻿/* ===== استایل صفحه درباره ما ===== */
.abstract-box {
    background: #fff;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.06);
    border-right: 4px solid #91D089;
}

    .abstract-box p {
        line-height: 2;
        font-size: 17px;
        color: #555;
        margin-bottom: 0;
    }

.about-text-wrapper {
    background: #fff;
    border-radius: 20px;
    padding: 35px 40px;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.06);
    height: 100%;
}

    .about-text-wrapper .description-content {
        line-height: 2;
        font-size: 16px;
        color: #555;
    }

        .about-text-wrapper .description-content p {
            margin-bottom: 16px;
        }

            .about-text-wrapper .description-content p:last-child {
                margin-bottom: 0;
            }

.about-images-wrapper {
    height: 100%;
}

.about-image-single {
    background: #f7f7f7;
    height: 100%;
    min-height: 250px;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

    .about-image-single:hover {
        transform: scale(1.02);
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12);
    }

    .about-image-single img {
        transition: transform 0.6s ease;
    }

    .about-image-single:hover img {
        transform: scale(1.05);
    }

/* ===== ریسپانسیو ===== */
@media (max-width: 992px) {
    .abstract-box {
        padding: 30px 25px;
    }

    .about-text-wrapper {
        padding: 25px 25px;
    }

    .about-image-single {
        min-height: 200px;
    }

        .about-image-single[style*="height: 280px"] {
            height: 220px !important;
        }

        .about-image-single[style*="height: 180px"] {
            height: 160px !important;
        }
}

@media (max-width: 576px) {
    .abstract-box {
        padding: 20px 18px;
    }

        .abstract-box p {
            font-size: 15px;
        }

    .about-text-wrapper {
        padding: 20px 18px;
    }

        .about-text-wrapper .description-content {
            font-size: 15px;
        }

    .about-image-single {
        min-height: 160px;
    }

        .about-image-single[style*="height: 280px"] {
            height: 180px !important;
        }

        .about-image-single[style*="height: 180px"] {
            height: 140px !important;
        }

    .about-images-wrapper .row.g-3 {
        --bs-gutter-y: 0.75rem;
    }
}
