main > .locations:first-child {
    margin-top: 140px;
}

.locations {
    text-align: center;
    background-color: #fbf9f2;
    box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.25);

    a {
        display: inline-block;
        padding: 10px;
        text-decoration: none;
        color: var(--red);
    }

    img {
        width: 120px;
        height: auto;
    }

    span {
        white-space: nowrap;
    }
}

/* Mobile & Tablet */
@media (max-width: 979.999px) {
    .locations {
        padding: 10px 0;
        a br {
            display: none;
        }
    } 
}

/* Desktop */
@media (min-width: 980px) and (max-width: 1199.999px) {
    .locations {
        display: flex;
        align-items: center;
        justify-content: space-around;
        gap: 20px;

        strong {
            display: none;
        }
    }
}

@media (min-width: 1200px) {
    .locations {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 20px;

        a br {
            display: none;
        }
    }
}