.top_manor_mid h2{
    font-size: 24px;
    font-weight: 500;
    color: #227E8D;
    line-height: 100%;
    letter-spacing: 0;
    margin: 0 0 40px 0;
}
.moreInfo_manor{
    padding: 54px 100px;

}
.moreInfo_manor_topText_other,
.moreInfo_manor_botText_other{
    display: flex;
    justify-content: center;
}


.moreInfo_manor_topText p,
.moreInfo_manor_botText p,
.moreInfo_manor_topText_other p,
.moreInfo_manor_botText_other p{
    font-size: 16px;
    font-weight: 500;
    color: #044758;
    line-height: 100%;
    letter-spacing: 0;
    margin: 0 0 54px 0;
    max-width: 1140px;
    text-align: center;
}

.about_houses_manor{
    display: flex;
    justify-content: space-between;
    margin-bottom: 54px;
}
.about_house_inout{
    width: 560px;
    height: 360px;
    border: 1px solid #227E8D;
    padding: 42px 30px 0 30px;
}

.moreInfo_manor .moreInfo_manor_topText,
.moreInfo_manor .moreInfo_manor_botText,
.moreInfo_manor .moreInfo_manor_btnReserve{
    display: flex;
    justify-content: center;
}
.about_houses_manor h2{
    font-size: 24px;
    font-weight: 500;
    color: #044758;
    text-transform: uppercase;
    line-height: 100%;
    letter-spacing: 0;
    margin: 0 0 32px 0;
}
.about_houses_manor p{
    font-size: 16px;
    font-weight: 500;
    color: #044758;
    line-height: 100%;
    letter-spacing: 0;
    margin: 0;
}
.all_house_text{
    display: flex;
    justify-content: center;
    font-size: 38px;
    font-weight: 500;
    color: #044758;
    text-transform: uppercase;
    line-height: 100%;
    letter-spacing: 0;
    margin: 54px 0 0 0;
}

.single_carousel_container{
    display: none;
}


/* ===== MOBILE CAROUSEL ===== */
.mobile_carousel_container {
    display: none;
    position: relative;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 30px 15px;
    box-sizing: border-box;
}

.mobile_carousel_wrapper {
    overflow: hidden;
    width: 100%;
}

.mobile_carousel_track {
    display: flex;
    transition: transform 0.4s ease-in-out;
    gap: 0;
}

.mobile_carousel_slide {
    flex: 0 0 100%;
}

.mobile_carousel_slide img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Стрелки для мобильной карусели */
.mobile_carousel_arrow {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #044758;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    color: white;
    flex-shrink: 0;
}

.mobile_carousel_arrow:hover {
    background: #BA7263;
    transform: scale(1.05);
}

.mobile_carousel_arrow:active {
    transform: scale(0.95);
}

.mobile_carousel_arrow:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* Точки для мобильной карусели */
.mobile_carousel_dots {

    display: none;
    justify-content: center;
    gap: 8px;
    margin-top: 20px;
}

.mobile_carousel_dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #D9D9D9;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    padding: 0;
}

.mobile_carousel_dot.active {
    background: #044758;
    width: 20px;
    border-radius: 5px;
}