/* Desktop Styles (min-width: 768px) */
.heading-container {
    position: relative;
    display: inline-block;
    padding: 0 20px;
}

.heading-container span {
    font-size: 2.25rem;
    white-space: nowrap;
}

.heading-container::before,
.heading-container::after {
    display: block;
    content: '';
    position: absolute;
    top: 50%;
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, transparent, #60A5FA, transparent);
}

.heading-container::before {
    right: 100%;
}

.heading-container::after {
    left: 100%;
}

.heading-highlight {
    font-size: 0.9rem;
    letter-spacing: 3px;
}

/* Andere 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);
}

/* ... andere Styles ... */ 