/* Speech Bubble – schmal, zentriert, Pfeil mittig oben, dezente Farben */
.info-speech-bubble {
    position: relative;
    background: #fefaf5;
    border-radius: 24px;
    padding: 1rem 1.6rem;
    margin: 1rem auto 1.8rem auto;
    max-width: 650px;
    width: 90%;
    box-shadow: 0 0 12px rgba(0, 0, 0, 0.5),
                0 0 1px rgba(165, 0, 36, 0.08);
    font-family: 'Inter', sans-serif;
    transition: all 0.2s ease;
}

/* Pfeil oben – mittig */
.info-speech-bubble::before {
    content: '';
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 12px solid transparent;
    border-right: 12px solid transparent;
    border-bottom: 12px solid #fefaf5;
    filter: drop-shadow(0 -1px 1px rgba(0, 0, 0, 0.02));
}

.info-speech-bubble::after {
    content: '';
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 12px solid transparent;
    border-right: 12px solid transparent;
    border-bottom: 12px solid rgba(0, 0, 0, 0.03);
    z-index: -1;
}

.bubble-icon {
    font-size: 1.3rem;
    margin-right: 10px;
    display: inline-block;
    vertical-align: middle;
    opacity: 0.8;
}

.bubble-title {
    font-weight: 600;
    font-size: 0.95rem;
    color: #a03d56;
    margin-bottom: 6px;
    letter-spacing: -0.2px;
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.bubble-title span {
    background: #e8decf;
    color: #7a3a4a;
    font-size: 0.65rem;
    padding: 2px 8px;
    border-radius: 30px;
    font-weight: 500;
}

.bubble-text {
    font-size: 0.88rem;
    line-height: 1.45;
    color: #3e3a35;
    margin: 0;
}

.bubble-text strong {
    color: #a5415e;
    font-weight: 600;
}

.highlight-date {
    background: #f0e5d8;
    border-radius: 20px;
    padding: 0.1rem 0.5rem;
    font-weight: 500;
    font-size: 0.85rem;
    display: inline-block;
    margin: 0 2px;
}

@media (max-width: 680px) {
    .info-speech-bubble {
        padding: 0.8rem 1.2rem;
        max-width: 92%;
    }
    .bubble-title {
        font-size: 0.85rem;
    }
    .bubble-text {
        font-size: 0.8rem;
    }
    .info-speech-bubble::before,
    .info-speech-bubble::after {
        border-left: 10px solid transparent;
        border-right: 10px solid transparent;
        border-bottom-width: 10px;
    }
    .info-speech-bubble::before {
        top: -10px;
    }
}