.vendredi-map-static {
    position: relative;
    display: block;
    width: 100%;
    overflow: hidden;
    text-decoration: none;
    line-height: 0;
}

.vendredi-map-static img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.vendredi-map-static-marker {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 40px;
    height: 40px;
    transform: translate(-50%, -100%);
    pointer-events: none;
    line-height: 0;
}

.vendredi-map-static-marker svg {
    width: 100%;
    height: 100%;
    display: block;
}

.vendredi-map-static-tooltip {
    position: absolute;
    bottom: 12px;
    left: 12px;
    max-width: calc(100% - 24px);
    padding: 8px 12px;
    background: rgba(255, 255, 255, 0.95);
    color: #222;
    font-size: 13px;
    line-height: 1.4;
    border-radius: 4px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
    pointer-events: none;
    opacity: 0;
    transform: translateY(4px);
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.vendredi-map-static:hover .vendredi-map-static-tooltip,
.vendredi-map-static:focus-visible .vendredi-map-static-tooltip {
    opacity: 1;
    transform: translateY(0);
}

.vendredi-map-static-tooltip strong {
    display: block;
    margin-bottom: 2px;
    font-size: 14px;
}
