.showrooms-home-block {
    margin: 78px 0 46px;
}

.showrooms-home-block__head {
    max-width: 1160px;
    margin: 0 auto 42px;
    text-align: center;
}

.showrooms-home-block__label {
    margin-bottom: 14px;
    color: #191d24;
    font-size: 18px;
    line-height: 1.3;
    font-weight: 700;
}

.showrooms-home-block__title {
    margin: 0 0 24px;
    color: #191d24;
    font-size: 32px;
    line-height: 1.2;
    font-weight: 800;
}

.showrooms-home-block__intro {
    color: #3f454f;
    font-size: 16px;
    line-height: 1.65;
}

.showrooms-home-block__intro p {
    margin: 0 0 6px;
}

.showrooms-home-block__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 42px;
}

.showrooms-home-card {
    min-width: 0;
    background: #fff;
}

.showrooms-home-card__gallery {
    position: relative;
    overflow: hidden;
    aspect-ratio: 610 / 232;
    background: #272c35;
}

.showrooms-home-card__photo {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity .25s ease;
}

.showrooms-home-card__photo.is-active {
    opacity: 1;
}

.showrooms-home-card__photo_empty {
    background: linear-gradient(135deg, #3f4650, #1f252e);
}

.showrooms-home-card__arrow {
    position: absolute;
    top: 50%;
    z-index: 2;
    width: 54px;
    height: 74px;
    margin-top: -37px;
    border: 0;
    background: rgba(25, 29, 36, .15);
    transition: background .2s ease;
}

.showrooms-home-card__arrow:hover,
.showrooms-home-card__arrow:focus {
    background: rgba(25, 29, 36, .35);
}

.showrooms-home-card__arrow:before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 22px;
    height: 22px;
    border-top: 3px solid #fff;
    border-left: 3px solid #fff;
}

.showrooms-home-card__arrow_prev {
    left: 0;
}

.showrooms-home-card__arrow_prev:before {
    transform: translate(-35%, -50%) rotate(-45deg);
}

.showrooms-home-card__arrow_next {
    right: 0;
}

.showrooms-home-card__arrow_next:before {
    transform: translate(-65%, -50%) rotate(135deg);
}

.showrooms-home-card__body {
    padding: 42px 38px 34px;
}

.showrooms-home-card__title {
    margin: 0 0 24px;
    color: #191d24;
    font-size: 32px;
    line-height: 1.2;
    font-weight: 800;
}

.showrooms-home-card__address-label {
    margin-bottom: 6px;
    color: #a5abb4;
    font-size: 13px;
    line-height: 1.3;
    font-weight: 700;
    text-transform: uppercase;
}

.showrooms-home-card__address {
    margin-bottom: 14px;
    color: #191d24;
    font-size: 16px;
    line-height: 1.5;
}

.showrooms-home-card__route {
    display: inline-block;
    margin-bottom: 28px;
    color: #00b44c;
    font-size: 16px;
    line-height: 1.35;
    border-bottom: 1px dashed currentColor;
}

.showrooms-home-card__text {
    min-height: 72px;
    margin-bottom: 34px;
    color: #3f454f;
    font-size: 16px;
    line-height: 1.7;
}

.showrooms-home-card__button {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 58px;
    padding: 16px 28px;
    background: #272c35;
    color: #fff;
    font-size: 15px;
    line-height: 1.3;
    font-weight: 700;
    text-align: center;
    transition: background .2s ease;
}

.showrooms-home-card__button:hover,
.showrooms-home-card__button:focus {
    background: #05bf55;
    color: #fff;
}

@media (max-width: 991px) {
    .showrooms-home-block {
        margin: 52px 0 36px;
    }

    .showrooms-home-block__grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .showrooms-home-block__title,
    .showrooms-home-card__title {
        font-size: 27px;
    }

    .showrooms-home-card__body {
        padding: 30px 24px 26px;
    }
}
