/**
 * About Page Styles
 * استایل صفحه درباره ما
 */

body.page-template-page-about,
main.about-modern-bg { 
    background: linear-gradient(120deg, #f9f9fa 0%, #f3eae3 100%) !important; 
}

.about-modern-bg { 
    min-height: 83vh; 
    display: flex; 
    justify-content: center; 
    align-items: center; 
}

.about-main-card {
    background: rgba(255,255,255,0.97);
    border-radius: 22px;
    box-shadow: 0 9px 58px #dcccdc2c;
    padding: 48px 28px 44px 28px;
    max-width: 800px;
    width: 96%;
    margin: 45px auto 65px auto;
    animation: fadeCard .77s cubic-bezier(.34,1.56,.64,1);
    text-align: center;
}

@keyframes fadeCard {
    0% {
        opacity: .2;
        transform: translateY(40px);
    }
    100% {
        opacity: 1;
        transform: none;
    }
}

.about-img-wrap {
    margin: 0 auto 15px auto;
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-img-wrap img {
    max-width: 160px;
    max-height: 150px;
    border-radius: 16px;
    box-shadow: 0 4px 24px #decfaa3b;
    object-fit: cover;
}

.about-title {
    color: #ab872c;
    font-size: 2.33rem;
    font-weight: 900;
    margin-bottom: 23px;
    letter-spacing: -1.8px;
    font-family: Vazir, sans-serif;
}

.about-description {
    font-size: 1.14rem;
    line-height: 2.1;
    color: #3d3d3d;
    margin: 0 auto;
    max-width: 710px;
    text-align: justify;
}

@media(max-width: 650px) {
    .about-main-card {
        padding: 34px 22px 32px 22px;
        margin: 28px auto 45px auto;
    }
    
    .about-title {
        font-size: 1.88rem;
    }
    
    .about-description {
        font-size: 1.06rem;
    }
}

