:root {
    --Accent-OnDark: #2DD8E1;
    --BG-Dark: #3D4042;
    --White: white;
}

* { box-sizing: border-box; }

.about-dark-teaser-section {
    padding: 40px 0;
    font-family: 'Inter', sans-serif;
}

.about-dark-teaser-container {
    max-width: 1360px;
    margin: 0 auto;
    padding: 0 0px;
    display: flex;
    gap: 20px;
    background: var(--BG-Dark);
    border-radius: 16px;
    overflow: hidden;
    min-height: 554px;
}

/* ЛЕВАЯ ЧАСТЬ */
.about-dark-left {
    flex: 1;
    padding: 40px;
    display: flex;
    flex-direction: column;
    position: relative; /* Важно для позиционирования картинки */
    overflow: hidden;   /* Чтобы картинка не вылезала за скругления */
}

/* ФОНОВАЯ КАРТИНКА (АБСОЛЮТНАЯ) */
.about_dark_bg_ellipse {
    position: absolute;
    width: 304px;
    height: 129px;
    left: 0; /* Начинается от левого края */
    top: 20px; /* Отступ сверху как в фигме */
    pointer-events: none;
    z-index: 0;
}
.about_dark_bg_ellipse img {
    max-width: 304px;
    height: auto;
    display: block;
}

/* ТЕКСТ И КОНТЕНТ */
.about-dark-title {
    color: var(--White) !important;
    font-size: 40px !important;
    font-weight: 600 !important;
    margin: 0 0 32px 0 !important; /* ЖЕСТКО ФИКСИРУЕМ ОТСТУП 32px */
    line-height: 1.1;
    position: relative;
    z-index: 1;
}

.about-dark-text {
    color: var(--White) !important;
    font-size: 16px !important;
    line-height: 24px !important;
    margin-bottom: 28px !important;
    position: relative;
    z-index: 1;
}

.about-dark-emp-box {
    background: rgba(255, 255, 255, 0.20);
    border-radius: 12px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 28px;
    position: relative;
    z-index: 1;
}

.quote-icon {
    margin-bottom: -5px;
    position: relative;
    z-index: 1;
}

.about-dark-quote-text {
    color: var(--White) !important;
    font-size: 16px !important;
    font-weight: 500 !important;
    line-height: 22.4px !important;
    position: relative;
    z-index: 1;
}

.about-dark-emp-info {
    display: flex;
    align-items: center;
    gap: 12px;
    position: relative;
    z-index: 1;
}

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

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

.emp-name.vid{
    color: var(--White) !important;
    font-size: 14px !important;
    font-weight: 600 !important;
}

.emp-pos.vid{
    color: var(--White) !important;
    font-size: 14px !important;
    font-weight: 400 !important;
    opacity: 0.8;
}

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

.about-staff-link {
    color: var(--Accent-OnDark) !important;
    font-size: 16px !important;
    font-weight: 500 !important;
    text-decoration: none !important;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: auto;
    position: relative;
    z-index: 1;
}

/* ПРАВАЯ ЧАСТЬ (ВИДЕО) */
.about-dark-right {
    width: 50%;
    flex-shrink: 0;
    position: relative;
}

.video-wrapper {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

.video-wrapper iframe {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
}

.video-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #222;
    color: var(--White);
    font-size: 18px;
}

/* АДАПТИВНОСТЬ (МОБИЛКИ) */
@media (max-width: 1024px) {
    .about-dark-teaser-container {
        flex-direction: column;
        min-height: auto;
    }
    .about-dark-left {
        padding: 30px 20px;
    }
    .about-dark-right {
        width: 100%;
        height: 300px;
        position: relative;
        flex-shrink: 0;
    }
    .video-wrapper {
        position: relative;
        height: 100%;
    }
}

@media (max-width: 480px) {
    .about-dark-title {
        font-size: 28px !important;
        margin-bottom: 20px !important;
    }
    .about-dark-emp-info {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }
    .about-dark-emp-box {
        padding: 16px;
    }
}