.ba-section {
    padding: 60px 0 0 0;
    background-image: linear-gradient(180deg, #FFFFFFFF 23.02%, #E1620366 42.97%, #E1620366 86.39%, #FFFFFFCC 100.50%);
    overflow: hidden;
    position: relative;
}

.ba-header {
    text-align: center;
    margin-bottom: 40px;
    padding: 0 20px;
}

.ba-title {
    font-family: 'Playfair Display', serif;
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 10px;
}

.ba-subtitle {
    font-size: 18px;
    color: #333;
}

.carousel-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.carousel-track-wrapper {
    overflow: hidden;
    width: 100%;
}

.carousel-track {
    display: flex;
    gap: 20px;
    transition: transform 0.5s ease-in-out;
}

.ba-card {
    min-width: 300px;
    height: 350px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    overflow: hidden;
    flex-shrink: 0;
}

.ba-single-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.nav-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 20px 0;
}

.nav-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: white;
    border: 1px solid #ddd;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    transition: transform 0.2s, background 0.2s;
}
.nav-btn:hover {
    transform: scale(1.1);
    background: #fff8f0;
}
.nav-icon { width: 12px; height: 12px; border-right: 2px solid #000; border-bottom: 2px solid #000; }
.prev-icon { transform: rotate(135deg); margin-left: 5px; }
.next-icon { transform: rotate(-45deg); margin-right: 5px; }


/* --- БЕГУЩАЯ СТРОКА --- */
.marquee-wrapper {
    background: linear-gradient(90deg, #E16203, #F6A74B, #E16203);
    color: black;
    padding: 15px 0;
    overflow: hidden;
    white-space: nowrap;
    position: relative;
    font-family: 'Space Mono', monospace;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 2px;
    border-top: 1px solid rgba(0,0,0,0.1);
    border-bottom: 1px solid rgba(0,0,0,0.1);
}

.marquee-content {
    display: inline-block;
    animation: scroll 30s linear infinite;
}

@keyframes scroll {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}