.hero-img {
    height: 380px;
    object-fit: cover;
}

/* затемнение */
.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        90deg,
        rgba(0,0,0,0.65) 0%,
        rgba(0,0,0,0.25) 60%,
        rgba(0,0,0,0.0) 100%
    );
}

/* текст */
.hero-caption {
    bottom: 20%;
    left: 8%;
    right: auto;
    text-align: left;
    max-width: 520px;
}

.hero-caption h2 {
    font-weight: 700;
}

/* СТРЕЛКИ */
.custom-control {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    background: rgba(0,0,0,0.55);
    border-radius: 50%;
    color: #fff;
    font-size: 32px;
    line-height: 44px;
    text-align: center;
    border: none;
    z-index: 5;
}

.carousel-control-prev.custom-control {
    left: 16px;
}

.carousel-control-next.custom-control {
    right: 16px;
}

.custom-control:hover {
    background: rgba(0,0,0,0.75);
}

/* ТОЧКИ */
.carousel-indicators [data-bs-target] {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: rgba(255,255,255,0.6);
}

.carousel-indicators .active {
    background-color: #fff;
}

/* МОБИЛКА */
@media (max-width: 768px) {
    .hero-img {
        height: 220px;
    }

    .hero-caption {
        bottom: 10%;
        left: 5%;
        max-width: 90%;
    }

    .custom-control {
        width: 38px;
        height: 38px;
        font-size: 24px;
        line-height: 34px;
    }
}
