.location-section {
    padding-block: 6.25rem;
}

.location__content-grid {
    display: grid;
    grid-template-columns: 50% 50%;
}

.location__content-col--text-wrapper {
    padding-right: 72px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.location__heading {
    margin-bottom: 2.25rem;
}

.location__address-text {
    margin-bottom: 0.5rem;
}

.location-map {
    height: 27.25rem;
    border-radius: 12px;
}

.location__button-wrapper {
    margin-top: 2.25rem;
    display: flex;
    gap: 24px;
}

.location__map-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 300;

    img {
        width: 0.375rem;
        height: 0.375rem;
    }
}

@media (max-width: 806px) {
    .location__content-grid {
        grid-template-columns: 1fr;
        gap: 2rem;

        .book-appointment-button {
            display: none;
        }
    }

    .location__heading {
        margin-bottom: 1.5rem;
    }

    .location__address-text {
        background-color: black;
        color: white;
        width: fit-content;
        padding: 0.25rem 0.75rem;
        border-radius: 12px;
        margin-bottom: 1.5rem;
        font-weight: 450;
    }
    
    .location__button-wrapper {
        margin-top: 1.5rem;
    }

     .location__content-col--text-wrapper {
        padding-right: 0;
    }
}