/* =========================================
   ДО / ПОСЛЕ — ПК
   ========================================= */

.ba-page-hero {
    padding: 8rem 0 3rem 0;
}

.ba-page-hero h1 {
    font-size: 4.5rem;
    line-height: 1.05;
    margin-top: 0.5rem;
}

.ba-gallery-section {
    padding: 2rem 0 6rem 0;
}

.ba-gallery-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
}

.ba-item {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

/* СЛАЙДЕР */
.ba-slider-mini {
    position: relative;
    width: 100%;
    aspect-ratio: 4 / 5;
    overflow: hidden;
    border-radius: var(--radius-lg);
    background: var(--color-bg);
    user-select: none;
    -webkit-user-select: none;
    touch-action: none;
}

.ba-slider-mini img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ba-mini-after {
    z-index: 1;
    clip-path: inset(0 50% 0 0);
}

.ba-mini-before {
    z-index: 0;
}

.ba-mini-handle {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    z-index: 2;
    width: 2px;
    background: rgba(255, 255, 255, 0.6);
    cursor: ew-resize;
    transform: translateX(-50%);
}

.ba-mini-handle span {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 2rem;
    height: 2rem;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    color: #333;
}

.ba-mini-badge {
    position: absolute;
    top: 1rem;
    z-index: 2;
    padding: 0.2rem 1rem;
    border-radius: var(--radius-pill);
    font-size: 0.6rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(8px);
    color: #333;
}

.ba-mini-before-label {
    left: 1rem;
}

.ba-mini-after-label {
    right: 1rem;
}

/* ОТЗЫВ (СТЕКЛО + ХВОСТИК) */
.ba-review {
    background: rgba(255, 255, 255, 0.80);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.60);
    position: relative;
    padding: 1.5rem 2rem 1.5rem 1.5rem;
    border-radius: var(--radius-md);
}

.ba-review::after {
    content: '';
    position: absolute;
    bottom: -10px;
    right: 24px;
    width: 20px;
    height: 20px;
    background: rgba(255, 255, 255, 0.45);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-right: 1px solid rgba(255, 255, 255, 0.60);
    border-bottom: 1px solid rgba(255, 255, 255, 0.60);
    transform: rotate(45deg);
    border-radius: 0 0 6px 0;
    z-index: 0;
}

.ba-review p {
    position: relative;
    z-index: 1;
    font-size: 0.9375rem;
    color: var(--color-muted);
    line-height: 1.6;
    margin: 0;
}