/* ===== ABOUT US COMPONENT ===== */
.about-studio {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(450px, 100%), 1fr));
    gap: clamp(30px, 6vw, 60px);
    margin: clamp(40px, 8vw, 80px) 0;
    align-items: center;
}

.about-content {
    padding-right: clamp(0px, 3vw, 20px);
    width: 100%;
}

.about-content .section-title {
    margin-bottom: clamp(20px, 4vw, 30px);
}

.about-text {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 25px;
    font-size: clamp(1rem, 2.5vw, 1.05rem);
}

.stats-row {
    display: flex;
    justify-content: space-between;
    margin-top: 35px;
    padding-top: 25px;
    border-top: 1px solid var(--border-color);
    gap: clamp(10px, 2vw, 20px);
    flex-wrap: nowrap;
}

.stat-block {
    text-align: center;
    flex: 1 1 0;
    min-width: 0;
    padding: 0 5px;
}

.stat-number {
    display: block;
    font-size: clamp(1.5rem, 4vw, 2.2rem);
    font-weight: 700;
    color: var(--accent-color);
    line-height: 1.2;
    margin-bottom: 5px;
    white-space: nowrap;
}

.stat-label {
    font-size: clamp(0.7rem, 1.8vw, 0.9rem);
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.about-image {
    border-radius: var(--radius-lg);
    overflow: hidden;
    height: clamp(280px, 45vw, 450px);
    box-shadow: var(--shadow-lg);
    position: relative;
}

.about-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 51, 102, 0.2) 0%, transparent 100%);
    pointer-events: none;
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

@media (hover: hover) {
    .about-image:hover img {
        transform: scale(1.08);
    }
}

/* Мобильная адаптация */
@media (max-width: 992px) {
    .about-studio {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-content {
        padding-right: 0;
    }

    .stats-row {
        margin-top: 25px;
        padding-top: 20px;
    }
}

@media (max-width: 768px) {
    .stats-row {
        gap: 5px;
    }

    .stat-label {
        font-size: 0.65rem;
        letter-spacing: 0.2px;
    }

    .stat-number {
        font-size: 1.3rem;
    }
}

@media (max-width: 480px) {
    .stats-row {
        margin-top: 25px;
        padding-top: 20px;
    }

    .stat-number {
        font-size: 1.2rem;
    }

    .stat-label {
        font-size: 0.55rem;
    }

    .about-image {
        height: 250px;
    }
}

@media (max-width: 360px) {
    .stat-number {
        font-size: 1rem;
    }

    .stat-label {
        font-size: 0.5rem;
    }
}