.map-container {
    position: relative;
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
}
.map-image {
    width: 100%;
    height: auto;
    display: block;
}
.link-overlay {
    position: absolute;
    transform: translate(-50%, -50%);
    display: block;
    cursor: pointer;
    border-radius: 999px;
    padding: 6px;
    background: rgba(255, 255, 255, 0.75);
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.15);
    min-width: 44px;
    min-height: 44px;
    transition: transform 150ms ease, background-color 150ms ease, box-shadow 150ms ease;
}

.link-overlay:hover {
    transform: translate(-50%, -50%) scale(1.06);
    background: rgba(255, 255, 255, 0.9);
}

.link-overlay:focus-visible {
    outline: 3px solid rgba(var(--color-primary-rgb), 0.55);
    outline-offset: 2px;
}

.link-overlay:active {
    transform: translate(-50%, -50%) scale(0.98);
}
.link-overlay img {
    width: 30px;
    height: 30px;
    max-width: 6vw;
    max-height: 6vw;
    min-width: 16px;
    min-height: 16px;
    object-fit: contain;
}
@media (max-width: 600px) {
    .link-overlay img {
        width: 7vw;
        height: 7vw;
        min-width: 16px;
        min-height: 16px;
        max-width: 24px;
        max-height: 24px;
    }
}
