/**
 * Стили страницы "О компании"
 */

.vt-about {
    padding: 40px 0 60px;
}

.vt-about__title {
    font-size: 32px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 40px;
}

/* Hero блок с директором */
.vt-about__hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 60px;
    padding: 40px;
    background: #f5f5f0;
    border-radius:20px;
}

.vt-about__label {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    color: #666;
    text-transform: uppercase;
    margin-bottom: 16px;
    display: block;
}

.vt-about__headline {
    font-size: 48px;
    font-weight: 400;
    line-height: 1.1;
    color: #1a1a1a;
    margin: 0 0 32px;
    font-family: Georgia, 'Times New Roman', serif;
}

.vt-about__quote {
    margin: 0;
    padding: 0;
    border: none;
}

.vt-about__quote p {
    font-size: 16px;
    line-height: 1.7;
    color: #444;
    margin: 0;
    font-style: italic;
}

.vt-about__hero-image {
    position: relative;
}

.vt-about__hero-image img {
    width: 100%;
    height: auto;
    border-radius: 16px;
    display: block;
}

.vt-about__hero-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(100, 130, 160, 0.9);
    padding: 16px 20px;
    border-radius: 0 0 16px 16px;
    text-align: center;
}

.vt-about__hero-name {
    display: block;
    font-size: 18px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 4px;
}

.vt-about__hero-position {
    display: block;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.85);
}

/* Карточки с фактами */
.vt-about__facts {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-bottom: 60px;
}

.vt-about__fact {
    background: #fff;
    border-radius: 16px;
    padding: 32px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    border: 1px solid #eee;
}

.vt-about__fact-number {
    display: block;
    font-size: 64px;
    font-weight: 300;
    color: #1976d2;
    line-height: 1;
    margin-bottom: 20px;
    font-family: Georgia, 'Times New Roman', serif;
}

.vt-about__fact-label {
    font-size: 13px;
    font-weight: 700;
    color: #333;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin: 0 0 8px;
}

.vt-about__fact-text {
    font-size: 15px;
    line-height: 1.6;
    color: #444;
    margin: 0 0 16px;
}

.vt-about__fact-text:last-child {
    margin-bottom: 0;
}

.vt-about__fact-text a {
    color: #1976d2;
    text-decoration: none;
}

.vt-about__fact-text a:hover {
    text-decoration: underline;
}

.vt-about__fact-text strong {
    color: #1976d2;
}

/* Преимущества */
.vt-about__advantages {
    background: #fff;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

.vt-about__section-title {
    font-size: 28px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 32px;
    text-align: center;
}

.vt-about__advantages-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.vt-about__advantage {
    text-align: center;
    padding: 24px 16px;
}

.vt-about__advantage-icon {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #e3f2fd;
    border-radius: 50%;
    color: #1976d2;
    margin: 0 auto 16px;
}

.vt-about__advantage-title {
    font-size: 18px;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0 0 8px;
}

.vt-about__advantage-text {
    font-size: 14px;
    line-height: 1.5;
    color: #666;
    margin: 0;
}

/* Адаптивность */
@media (max-width: 1024px) {
    .vt-about__hero {
        gap: 40px;
        padding: 32px;
    }

    .vt-about__headline {
        font-size: 36px;
    }

    .vt-about__advantages-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .vt-about {
        padding: 24px 0 40px;
    }

    .vt-about__title {
        font-size: 24px;
        margin-bottom: 24px;
    }

    .vt-about__hero {
        grid-template-columns: 1fr;
        gap: 24px;
        padding: 24px;
    }

    .vt-about__hero-content {
        order: 2;
    }

    .vt-about__hero-image {
        order: 1;
    }

    .vt-about__headline {
        font-size: 32px;
    }

    .vt-about__facts {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .vt-about__fact {
        padding: 24px;
    }

    .vt-about__fact-number {
        font-size: 48px;
        margin-bottom: 16px;
    }

    .vt-about__advantages {
        padding: 24px;
    }

    .vt-about__advantages-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
}
