/* Shared company logo marker (companies map + landing carousel) */

.company-map-marker-wrap {
    background: transparent;
    border: none;
    display: inline-flex;
    text-decoration: none;
    flex-shrink: 0;
}

.company-map-marker {
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 0.65rem;
    background: rgba(255, 255, 255, 0.95);
    border: 2px solid rgba(255, 255, 255, 0.95);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.28);
    overflow: hidden;
    transition: width 0.15s ease, height 0.15s ease, border-radius 0.15s ease;
}

.company-map-marker.is-circle {
    border-radius: 50%;
}

.company-map-marker.is-circle img {
    object-fit: cover;
}

.company-map-marker img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}
