.home-houses {
    width: 100%;
    padding: 90px 0;
    background: #efefef;
    border-top: 1px solid #e5e5e5;
}

.home-houses__inner {
    max-width: 1440px;
    padding-left: 90px;
    padding-right: 90px;
}

.home-houses__heading {
    margin-bottom: 42px;
    text-align: left;
}

.home-houses__label {
    margin-bottom: 18px;
    font-family: "Raleway", sans-serif;
    font-size: 18px;
    font-weight: 500;
    line-height: 1.2;
    color: #111111;
    text-transform: uppercase;
}

.home-houses__title {
    margin: 0 0 16px 0;
    font-family: "Raleway", sans-serif;
    font-size: 34px;
    font-weight: 700;
    line-height: 1.18;
    color: #111111;
}

.home-houses__subtitle {
    margin: 0;
    max-width: 760px;
    font-family: "Raleway", sans-serif;
    font-size: 19px;
    font-weight: 400;
    line-height: 1.35;
    color: #111111;
}

.house-card {
    display: flex;
    flex-direction: column;
    background: #ffffff;
    border: 1px solid #e4e4e4;
    text-decoration: none;
    height: 100%;
    overflow: hidden;
    box-shadow: 0 7px 18px rgba(0, 0, 0, 0.06);
    transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.house-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.10);
    text-decoration: none;
}

.house-card__image-wrap {
    width: 100%;
    overflow: hidden;
    background: #dcdcdc;
}

.house-card__image {
    width: 100%;
    aspect-ratio: 16 / 11;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transition: transform 0.4s ease;
}

.house-card:hover .house-card__image {
    transform: scale(1.04);
}

.house-card__body {
    padding: 24px 24px 22px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.house-card__title {
    margin: 0;
    font-family: "Raleway", sans-serif;
    font-size: 24px;
    font-weight: 700;
    line-height: 1.22;
    color: #111111;
}

.house-card__more {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    min-height: 42px;
    padding: 10px 18px;
    background: #fb8c00;
    color: #ffffff;
    font-family: "Raleway", sans-serif;
    font-size: 15px;
    font-weight: 700;
    line-height: 1;
    text-transform: uppercase;
    border-radius: 12px;
    box-shadow: 0 7px 14px rgba(0, 0, 0, 0.10);
    transition: background 0.25s ease;
}

.house-card:hover .house-card__more {
    background: #f57c00;
}

.house-card--empty {
    padding: 50px 24px;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.house-card__empty-text {
    font-family: "Raleway", sans-serif;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.4;
    color: #111111;
    opacity: 0.75;
}

@media (max-width: 1399px) {
    .home-houses__inner {
        padding-left: 60px;
        padding-right: 60px;
    }

    .home-houses__title {
        font-size: 31px;
    }
}

@media (max-width: 1199px) {
    .home-houses {
        padding: 70px 0;
    }

    .home-houses__inner {
        padding-left: 40px;
        padding-right: 40px;
    }

    .home-houses__title {
        font-size: 28px;
    }

    .home-houses__subtitle {
        font-size: 17px;
    }

    .house-card__title {
        font-size: 22px;
    }
}

@media (max-width: 991px) {
    .home-houses {
        padding: 54px 0;
    }

    .home-houses__inner {
        padding-left: 24px;
        padding-right: 24px;
    }

    .home-houses__heading {
        margin-bottom: 30px;
    }

    .home-houses__label {
        font-size: 16px;
        margin-bottom: 14px;
    }

    .home-houses__title {
        font-size: 25px;
    }

    .home-houses__subtitle {
        font-size: 16px;
    }

    .house-card__body {
        padding: 20px 18px 18px;
    }

    .house-card__title {
        font-size: 20px;
    }
}

@media (max-width: 575px) {
    .home-houses {
        padding: 42px 0;
    }

    .home-houses__inner {
        padding-left: 18px;
        padding-right: 18px;
    }

    .home-houses__title {
        font-size: 22px;
    }

    .home-houses__subtitle {
        font-size: 15px;
    }

    .house-card__title {
        font-size: 18px;
    }

    .house-card__more {
        min-height: 38px;
        padding: 9px 14px;
        font-size: 13px;
        border-radius: 10px;
    }
}