.region-tile {
    background: #ffffff;
    box-shadow: 11px 15px 25px rgba(27, 27, 27, 0.21);
    border-radius: 8px;
    padding: 20px;
}

.region-tile:not(:last-child) {
    margin-bottom: 32px;
}

.region-tile .column:not(:last-child) {
    margin-bottom: 16px;
}

.region-tile p {
    margin: 0;
    padding: 0;
    letter-spacing: 0.01em;
    font-weight: 500 !important;
    font-size: 18px;
    line-height: 28px;
    color: #343434;
}

.region-tile a {
    text-decoration: none;
    position: relative;
}

.region-tile a::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: #964347;
    transform: scale(0);
    transition: all 0.3s ease;
}

.region-tile a:hover {
    color: #964347 !important;
}

.region-tile a:hover::before {
    transform: scale(1);
}

.region-tile form.button-form {
    margin-top: 16px;
}

.region-tile form.button-form input[type="submit"] {
    box-shadow: 0px 3px 14px rgba(103, 17, 17, 0.39);
}

@media screen and (min-width: 768px) {
    .region-tile {
        padding: 32px;
    }

    .region-tile .row {
        display: flex;
        flex-wrap: wrap;
        gap: 32px;
    }

    .region-tile .column:not(:last-child) {
        margin-bottom: 0;
    }

    .region-tile .column {
        flex-basis: calc(20% - 32px);
    }

    .region-tile .column:nth-child(2) {
        flex-basis: 60%;
    }
}
