.local {
    padding: 90px 10px 180px;
    background: url(/img/bg-local.webp) no-repeat center center;
    background-size: cover;
}

.local-grid {
    display: grid;
    gap: 70px;
}

.local-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    justify-items: center;
    align-items: stretch;
}

.local-item {
    display: grid;
    gap: 30px;
    justify-items: center;
    padding: 0px 0px 30px;
    border-radius: 10px;
    border: 1px solid var(--verde);
}

.local-item > img {
    border-radius: 10px;
}

.local-info {
    display: grid;
    gap: 20px;
    justify-items: center;
    padding: 10px;
}

.local-info p {
    text-align: left;
}

@media only screen and (min-width: 370px) and (max-width: 770px) {

    .local-content {
        grid-template-columns: 1fr;
        gap: 50px 30px;
    }

}

@media only screen and (min-width: 0px) and (max-width: 369px) {

    .local-content {
        grid-template-columns: 1fr;
        gap: 50px 30px;
    }

    .local h2 {
        font-size: 2rem;
    }

}