.wedding-location {
    padding-top: 86px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.wedding-location__title {
    font-size: 30px;
    font-weight: 300;
    line-height: 1.2;
    text-transform: uppercase;
    color: #343D2A;
    text-align: center;
}

.wedding-location__address {
    max-width: 494px;
    font-size: 20px;
    color: #4A5540;
    text-align: center;
}

.wedding-location__map-link {
    margin-top: 22px;
    font-size: 22px;
    color: #343D2A;
    text-decoration: none;
    text-transform: uppercase;
    position: relative;
    z-index: 1;
}

.wedding-location__map-link::before {
    content: "";
    width: 120px;
    height: 100px;
    position: absolute;
    top: -108%;
    left: -28%;
    background-image: url("./images/fourth_oval.svg");
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    z-index: 0;
}

@media (max-width: 600px) {
    .wedding-location__title {
        font-size: 34px;
    }

    .wedding-location__address {
        font-size: 16px;
    }
}

@media (max-width: 500px) {
    .wedding-location__title {
        font-size: 32px;
    }

    .wedding-location {
        gap: 16px;
    }

    .wedding-location__map-link {
        margin-top: 16px;
    }
}
