/* Mobile Styles (max-width: 767px) */
.heading-container {
    position: relative;
    display: inline-block;
    padding: 0;
    max-width: 100%;
    text-align: center;
}

/* Allgemeine Korrektur für alle Sektionen */
.text-center {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.heading-container span {
    display: block;
    white-space: normal;
    font-size: 1.75rem;
    line-height: 1.2;
    position: relative;
    color: white;
    padding: 0.3rem 1rem;
}

/* Subtiler Border-Effekt für H2 */
.heading-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 4rem);
    height: 100%;
    border: 1px solid rgba(96, 165, 250, 0.2);
    border-radius: 4px;
    z-index: -1;
}

.heading-highlight {
    position: relative;
    display: inline-block;
    font-size: 0.7rem;
    color: #60A5FA;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin: 0 0 1.2rem 0;
    padding: 0.3rem 1.2rem;
    font-weight: normal;
}

/* Strich zwischen H4 und H2 */
.heading-highlight::after {
    content: '';
    position: absolute;
    bottom: -0.6rem;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 2px;
    background: linear-gradient(90deg, transparent, #60A5FA, #818CF8, #60A5FA, transparent);
}

/* Gemeinsame Styles */
.glass-effect {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.neon-text {
    text-shadow: 0 0 10px rgba(66, 153, 225, 0.8),
                 0 0 20px rgba(66, 153, 225, 0.8),
                 0 0 30px rgba(66, 153, 225, 0.8);
}

