cta-find-room,
.cta-find-room * {
    box-sizing: border-box;
}

.cta-find-room {
    font-family: 'Roboto', sans-serif;
    display: grid;
    grid-template-areas:
        "text"
        "button"
        "advertisement";
    grid-row-gap: 15px;
    border-radius: 10px;
    padding: 24px 16px;
    background: linear-gradient(134deg, #8d336b 0%, #0065bf 100%);
    text-decoration: none;
}

@media(min-width: 768px) {
    .cta-find-room {
        grid-template-areas:
            "logo text button"
            "advertisement advertisement button";
        grid-column-gap: 16px;
        grid-row-gap: 10px;
        padding: 24px;
        align-items: center;
    }
}

.cta-find-room__logo {
    grid-area: logo;
    display: none;
}

@media (min-width: 768px) {
    .cta-find-room__logo {
        display: block;
    }
}

.cta-find-room__text {
    display: block;
    grid-area: text;
    width: 100%;
    font-weight: 700;
    font-size: 18px;
    line-height: 1.4;
    color: #fff;
}

.cta-find-room__button {
    width: 100%;
    grid-area: button;
    background: #e21438;
    text-align: center;
    cursor: pointer;
    border: none;
    transition: background 0.3s;
    border-radius: 4px;
    padding: 15px 30px;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5;
    color: #fff;
}

@media (min-width: 768px) {
    .cta-find-room__button {
        max-width: 179px;
    }
}

.cta-find-room__button:hover {
    background: #d60b2e;
}

.cta-find-room__button:active {
    background: #c50728;
}

.cta-find-room__advertisement-text {
    font-size: 8px;
    line-height: 1.2;
    color: #fff;
    opacity: 0.5;
    width: 100%;
    grid-area: advertisement;
    justify-self: start;
    margin-top: -7px;
}

@media (min-width: 768px) {
    .cta-find-room__advertisement-text {
        margin-top: 0;
        text-align: start;
    }
}

