:root {
    --Accent-Default: #00B1BA;
    --Text-Dark: #292A2A;
    --Text-Dark-Gray: #878D91;
    --BG-Gray: #F3F4F5;
    --White: white;
}

* { box-sizing: border-box; }

.about-header-container {
    max-width: 1360px;
    margin: 40px auto;
    display: flex;
    gap: 16px;
    padding: 0 0px;
    font-family: 'Inter', sans-serif;
}

/* ЛЕВЫЙ БЛОК (БАННЕР) */
.about-banner {
    flex: 1;
    height: 320px;
    border-radius: 16px;
    background-size: cover;
    background-position: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 20px;
}

.about-banner-title {
    color: var(--White) !important;
    font-size: 48px;
    font-weight: 600;
    margin: 0 0 16px 0;
    line-height: 1.1;
}

.about-banner-subtitle {
    color: var(--White) !important;
    font-size: 16px;
    font-weight: 500;
    line-height: 22.4px;
    margin: 0;
    text-align: center;
}

/* ПРАВЫЙ БЛОК (ЦИТАТА) */
.about-quote-block {
    width: 440px;
    flex-shrink: 0;
    height: 320px;
    background: var(--BG-Gray);
    border-radius: 12px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 24px;
}

.quote-icon {
    margin-bottom: -10px; /* Подтягиваем иконку к тексту */
}

.quote-text {
    color: var(--Text-Dark) !important;
    font-size: 20px;
    font-weight: 600;
    line-height: 1.3;
}

.employee-info {
    display: flex;
    align-items: center;
    gap: 16px;
}

.employee-photo {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}

.employee-details {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.emp-name {
    color: var(--Text-Dark) !important;
    font-size: 16px;
    font-weight: 600;
    line-height: 20.8px;
}

.emp-pos {
    color: var(--Text-Dark-Gray) !important;
    font-size: 14px;
    font-weight: 400;
    line-height: 18.9px;
}

.emp-email {
    color: var(--Accent-Default) !important;
    font-size: 16px;
    font-weight: 500;
    text-decoration: none !important;
    margin-top: 4px;
}

/* АДАПТИВНОСТЬ (МОБИЛКИ) */
@media (max-width: 1024px) {
    .about-header-container {
        flex-direction: column;
        padding: 0 16px;
    }
    .about-banner {
        height: 250px; /* Чуть меньше на планшетах */
    }
    .about-banner-title {
        font-size: 32px;
    }
    .about-quote-block {
        width: 100%;
        height: auto; /* Растягивается по контенту */
        min-height: 250px;
    }
}

@media (max-width: 480px) {
    .about-banner {
        height: 200px;
    }
    .about-banner-title {
        font-size: 24px;
    }
    .quote-text {
        font-size: 16px;
    }
    .employee-info {
        flex-direction: column; /* Фото и текст друг под другом */
        align-items: flex-start;
        gap: 12px;
    }
    .employee-photo {
        width: 60px;
        height: 60px;
    }
}