/* Премиальная галерея До/После */
.premium-transformation-story {
    max-width: 1400px;
    margin: 0 auto;
    padding: 60px 40px;
}

.story-header {
    text-align: center;
    margin-bottom: 60px;
}

.story-category {
    display: inline-block;
    padding: 8px 20px;
    background: #000;
    color: #fff;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.story-title {
    font-family: 'Times New Roman', serif;
    font-size: 42px;
    color: #1a1a1a;
    margin-bottom: 20px;
    font-weight: 400;
    line-height: 1.2;
}

.story-subtitle {
    font-size: 16px;
    color: #888;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.transformation-gallery {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    margin-bottom: 60px;
}

.transformation-item {
    flex: 1;
    position: relative;
    overflow: hidden;
    border: 1px solid #e0e0e0;
}

.transformation-image {
    width: 100%;
    height: 500px;
    object-fit: cover;
    display: block;
}

.transformation-label {
    position: absolute;
    top: 20px;
    left: 20px;
    background: #000;
    color: #fff;
    padding: 8px 16px;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.transformation-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    border: 1px solid #000;
    border-radius: 50%;
}

.divider-icon {
    font-size: 24px;
    color: #000;
}

.story-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.story-section h3 {
    font-family: 'Times New Roman', serif;
    font-size: 24px;
    color: #1a1a1a;
    margin-bottom: 16px;
    font-weight: 400;
}

.story-section p {
    font-size: 15px;
    color: #666;
    line-height: 1.8;
}

@media (max-width: 768px) {
    .transformation-gallery {
        flex-direction: column;
        gap: 20px;
    }
    
    .transformation-divider {
        transform: rotate(90deg);
    }
    
    .story-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .story-title {
        font-size: 32px;
    }
    
    .transformation-image {
        height: 300px;
    }
}
