/* Section Titles - Gemeinsam für alle Sektionen */
.section-title {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
    margin-bottom: 3rem;
    font-size: clamp(1.5rem, 3vw, 2.5rem);
    width: 100%;
    position: relative;
}

.title-number {
    color: var(--primary-color);
    font-family: 'Courier New', monospace;
    font-weight: 600;
    white-space: nowrap;
}

.title-text {
    font-weight: 700;
    color: var(--text-primary);
    white-space: nowrap;
}

.title-line {
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-color), transparent);
    max-width: 400px;
    margin-bottom: 0.5rem;
}

/* Mobile Section Titles */
@media (max-width: 768px) {
    .section-title {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
        margin-bottom: 2rem;
        font-size: clamp(1.2rem, 4vw, 1.8rem);
    }

    .title-number {
        font-size: clamp(0.9rem, 2vw, 1.1rem);
    }

    .title-text {
        font-size: clamp(1.1rem, 3vw, 1.6rem);
    }

    .title-line {
        width: 100%;
        max-width: 300px;
        height: 2px;
        margin-bottom: 0.5rem;
    }
}

@media (max-width: 480px) {
    .section-title {
        font-size: 1.1rem;
        margin-bottom: 1.5rem;
        gap: 0.4rem;
    }

    .title-number {
        font-size: 0.85rem;
    }

    .title-text {
        font-size: 1rem;
    }

    .title-line {
        max-width: 250px;
        height: 1.5px;
    }
}

