.container-bristol-hoteis-home {
    padding: 0 64px 80px;
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 64px;
    box-sizing: border-box;
}

.container-bristol-hoteis-home .top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
}

.container-bristol-hoteis-home .title-block {
    flex: 0 0 642px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.container-bristol-hoteis-home .title  {
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    font-size: 40px;
    line-height: 1.15;

    color: #5a4f4c;
    margin: 0;
}

.container-bristol-hoteis-home .title-line {
    width: 40px;
    height: 2px;
    background-color: #9e5520;
}

.container-bristol-hoteis-home .features {
    flex: 1;
}

.container-bristol-hoteis-home .features-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.container-bristol-hoteis-home .feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.container-bristol-hoteis-home .feature-dot {
    width: 4px;
    height: 4px;
    flex-shrink: 0;
}

.container-bristol-hoteis-home .feature-dot svg {
    display: block;
}

.container-bristol-hoteis-home .feature-text {
    font-size: 14px;
    line-height: 1.25;
    color: #5a4f4c;
}

.container-bristol-hoteis-home .carousel-wrapper {
    width: 100%;
    position: relative;
}

.container-bristol-hoteis-home .slider {
    width: 100%;
    padding: 20px 0;
}

.container-bristol-hoteis-home .card {
    display: block;
    position: relative;
    width: 100%;
    height: 440px;
    border-radius: 4px;
    overflow: hidden;
    text-decoration: none;
}

.container-bristol-hoteis-home .card-bg {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.container-bristol-hoteis-home .card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.container-bristol-hoteis-home .card:hover .card-img {
    transform: scale(1.05);
}

.container-bristol-hoteis-home .card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(29, 29, 29, 0) 45%, #1d1d1d 88%);
    z-index: 2;
    pointer-events: none;
}

.container-bristol-hoteis-home .card-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 24px 16px;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    z-index: 3;
}

.container-bristol-hoteis-home .card-info {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.container-bristol-hoteis-home .card-name {
    font-size: 24px;
    font-weight: 500;
    color: #ffffff;
    margin: 0;
    font-family: 'Montserrat', sans-serif;
}

.container-bristol-hoteis-home .card-location {
    font-size: 14px;
    color: #ffffff;
    letter-spacing: 1.07px;
    font-weight: 300;
}

.container-bristol-hoteis-home .card-arrow {
    width: 27px;
    height: 27px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(158, 85, 32, 0.3);
    border-radius: 4px;
    transition: background 0.3s ease;
}

.container-bristol-hoteis-home .card:hover .card-arrow {
    background: rgba(158, 85, 32, 1);
}

.container-bristol-hoteis-home .nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-top: 40px;
}

.container-bristol-hoteis-home .nav-buttons {
    display: flex;
    align-items: center;
    gap: 8px;
}

.container-bristol-hoteis-home .prev,
.container-bristol-hoteis-home .next {
    position: static;
    margin: 0;
    width: 38px;
    height: 37px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    background: transparent;
}

.container-bristol-hoteis-home .prev::after,
.container-bristol-hoteis-home .next::after {
    display: none;
}

.container-bristol-hoteis-home .pagination {
    font-size: 24px;
    font-weight: 700;
    color: #9e5520;
    letter-spacing: 1.25px;
    display: none;
}

.container-bristol-hoteis-home .dots {
    display: none;
}

@media (max-width: 1024px) {
    .container-bristol-hoteis-home {
        padding: 0 20px 0;
    }

    .container-bristol-hoteis-home .top {
        flex-direction: column;
        align-items: flex-start;
        gap: 24px;
    }

    .container-bristol-hoteis-home .title-block {
        flex: none;
        width: 100%;
    }

    .container-bristol-hoteis-home .nav-buttons,
    .container-bristol-hoteis-home .pagination {
        display: none;
    }

    .container-bristol-hoteis-home .dots {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
    }

    .container-bristol-hoteis-home .dots .swiper-pagination-bullet {
        width: 7px;
        height: 7px;
        background: #D7CCBE;
        opacity: 1;
        margin: 0 !important;
        transition: all 0.3s ease;
        border-radius: 4px;
    }

    .container-bristol-hoteis-home .dots .swiper-pagination-bullet-active {
        width: 22px;
        background: #9E5520;
    }
}

@media (max-width: 768px) {
    .container-bristol-hoteis-home .title  {
        font-size: 28px;
    }

    .container-bristol-hoteis-home .card {
        height: 360px;
    }

    .container-bristol-hoteis-home .slider {
        padding: 20px 0 0;
    }

    .container-bristol-hoteis-home .nav {
        margin-top: 24px;
    }
}