.inline-hotspots-wrapper {
    display: flex;
    width: 100%;
    justify-content: space-between;
    align-items: flex-start;
    margin: 50px 0;
    position: relative;
}

.inline-hotspot-col {
    flex: 1 1 33%;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}

.inline-hotspot {
    width: 52px;
    height: 52px;
    background: rgba(255, 245, 0, 0.88);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    animation: pulse 1.5s infinite;
    font-weight: 400;
    color: black;
    font-size: 24px;
    z-index: 2;
}

.inline-hotspot.active {
    background: rgba(255, 255, 255, 0.88);
    animation: pulsewhite 1.5s infinite;
}

.inline-label {
    margin-top: 8px;
    font-size: 14px;
    color: #fff;
    text-align: center;
    font-weight: 500;
    max-width: 120px;
    line-height: 1.2;
    text-shadow: 0 2px 4px rgba(0,0,0,0.6);
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(255, 245, 0,0.88); }
    70% { box-shadow: 0 0 0 15px rgba(255,245,0,0); }
    100% { box-shadow: 0 0 0 0 rgba(255,245,0,0); }
}

@keyframes pulsewhite {
    0% { box-shadow: 0 0 0 0 rgba(255,255,255,0.88); }
    70% { box-shadow: 0 0 0 15px rgba(255,255,255,0); }
    100% { box-shadow: 0 0 0 0 rgba(255,255,255,0); }
}

.inline-info-box {
    position: absolute;
    top: 150px; /* unter Punkt + Label */
    background: rgba(255, 245, 0, 0.88);
    color: #000;
    padding: 50px;
    display: none;
    min-width: 520px;
    text-align: left;
    z-index: 1;
}

.inline-info-box h4.info-title {
    font-size: 25px;
    font-weight: bold;
    padding-bottom: 15px;
    border-bottom: 1px solid #000;
    margin-bottom: 15px;
}

.inline-info-box p.info-text {
    margin: 0;
    font-size: 16px;
}

/* Pfeil unter dem Punkt */
.inline-info-box::before {
    content: '';
    position: absolute;
    top: -8px;
    left: 50%;
    transform: translateX(-50%);
    border-width: 8px;
    border-style: solid;
    border-color: transparent transparent rgba(255, 245, 0, 1) transparent;
}

/* Mobile Anpassung */
@media (max-width: 768px) {
    .inline-hotspots-wrapper {
        flex-direction: column;
        gap: 30px;
        align-items: center;
    }

    .inline-hotspot-col {
        width: 80%;
    }

    .inline-info-box {
        top: 60px;
        background: rgba(255, 245, 0, 1);
        padding: 25px;
        min-width: 300px;
        z-index: 4;
    }
}
