.Divider {
    width: auto;
    border-top: 1px solid var(--input-divider-line);
    border-bottom: 1px solid var(--input-divider-line);
}
.Spacer {
    height: 1.5rem;
}
.SpacerSmall {
    height: 1rem;
}
.Card a:hover {
    text-decoration: underline;
	text-underline-offset: .25rem;
	text-decoration-thickness: .075rem;
}

.ContactCardContainer {
    width: 100%;
    background-color: var(--accent-bg);
    padding: 3rem 0 3rem 0;
}
.ContactCards {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 2rem;
}
.Card {
    min-height: 12rem;
    max-width: 30rem;
    background-color: orange;
    border-radius: .5rem;
    overflow: hidden;
    background-color: var(--text-white);
    color: var(--text-black);
    border: 1px solid var(--input-divider-line);
}
.Card img {
    aspect-ratio: 16 / 9;
    width: 100%;
    object-fit: cover;
}
.Card .TextContainer {
    padding: 2rem 1rem 2rem 1rem;
}

.MapContainer {
    width: 100%;
    padding-bottom: 3rem;
    background-color: var(--accent-bg);
}
.Map > div > iframe {
    top: 0;
    left: 0;
    width: 100%;
    height: 20rem
}
.Map h2 {
    width: 100%;
    color: var(--text-black);
    margin-bottom: 1rem;
}

@media (max-width: 900px) {
    .ContactCards {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .Map > div > iframe {
        height: 36rem
    }
}