@charset "UTF-8";

.modelhouse-areas_title {
    margin-bottom: 3rem;
    color: #c80a14;
    font-weight: 700;
    font-size: 1.5rem;
    text-align: center;
}

.modelhouse-areas {
    margin-bottom: 4rem;

    input[type="radio"] {
        display: none;
    }
}


.modelhouse-areas__filters {
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
    line-height: 1.8;

    li {
        list-style-type: none;
    }

    label {
        margin: 0;
        padding: .3rem 1.5rem;
        color: #c80a14;
        font-size: 1.15rem;
        font-weight: 700;
        background: #fff;
        border-radius: 10rem;
        border: 1px solid #c80a14;
        cursor: pointer;
        transition: all 0.2s;
    }
}

.modelhouse-areas__filters label:hover {
    color: #fff;
    background: #c80a14;
}

@media screen and (max-width: 768px) {
    .modelhouse-areas_title {
        margin-bottom: 1rem;
        font-size: .9rem;
    }

    .modelhouse-areas {
        margin-bottom: 2rem;
    }

    .modelhouse-areas__filters {
        gap: .8rem;
        line-height: 1.5;
        padding: 0 .6rem;

        label {
            padding: .2rem 1rem;
            font-size: .6rem;
        }
    }
}