/* #region Map Section */
.contact-page .contact-map {
    grid-column: 1 / -1;
    margin-top: 1.5rem;
}

.contact-page .contact-map h2 {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--color-tertiary);
    margin-bottom: 1rem;
    text-align: center;
}

.contact-page .map-wrapper {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-card-md);
    height: 280px;
}

.contact-page .map-wrapper iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

@media (max-width: 768px) {
    .contact-page .map-wrapper {
        height: 280px;
    }
}

@media (max-width: 480px) {
    .contact-page .map-wrapper {
        height: 240px;
        border-radius: 10px;
    }
}
/* #endregion */
