.widget-headline-h1 {
    font-size: 2.5em;
    font-weight: 800;
    margin-bottom: 30px;
    color: var(--color-brand-primary);
    letter-spacing: -0.02em;
    font-family: var(--font-family-primary);
    position: relative;
    word-break: normal;
    overflow-wrap: break-word;
    hyphens: none;
    white-space: normal;
}

.widget-headline-h1::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: var(--color-complementary-primary);
    border-radius: 2px;
}

.widget-headline-h2 {
    font-size: 2.5em;
    font-weight: 800;
    margin-bottom: 20px;
    margin-top: 40px;
    color: var(--color-brand-primary);
    letter-spacing: -0.01em;
    font-family: var(--font-family-primary);
    position: relative;
    padding-left: 20px;
    word-break: normal;
    overflow-wrap: break-word;
    hyphens: none;
    white-space: normal;
}

.widget-headline-h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: var(--color-complementary-primary);
    border-radius: 2px;
}

.widget-headline-h2::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 20px;
    background: var(--color-complementary-primary);
    border-radius: 2px;
}

.widget-headline-h3 {
    font-size: 1.5em;
    font-weight: 700;
    margin-bottom: 16px;
    margin-top: 30px;
    color: var(--color-text-primary);
    letter-spacing: -0.01em;
    font-family: var(--font-family-primary);
    word-break: normal;
    overflow-wrap: break-word;
    hyphens: none;
    white-space: normal;
}

.widget-headline-h4 {
    font-size: 1.25em;
    font-weight: 600;
    margin-bottom: 12px;
    margin-top: 24px;
    color: var(--color-text-primary);
    font-family: var(--font-family-primary);
    word-break: normal;
    overflow-wrap: break-word;
    hyphens: none;
    white-space: normal;
}

.widget-headline-h5 {
    font-size: 1.1em;
    font-weight: 600;
    margin-bottom: 10px;
    margin-top: 20px;
    color: var(--color-text-primary);
    font-family: var(--font-family-primary);
    word-break: normal;
    overflow-wrap: break-word;
    hyphens: none;
    white-space: normal;
}

.widget-headline-h6 {
    font-size: 1em;
    font-weight: 600;
    margin-bottom: 8px;
    margin-top: 16px;
    color: var(--color-text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-family: var(--font-family-primary);
    word-break: normal;
    overflow-wrap: break-word;
    hyphens: none;
    white-space: normal;
}

@media (max-width: 768px) {
    .widget-headline-h1 {
        font-size: 2em;
        margin-bottom: 25px;
    }
    
    .widget-headline-h2 {
        font-size: 1.5em;
        margin-bottom: 18px;
        margin-top: 35px;
        padding-left: 16px;
    }
    
    .widget-headline-h2::before {
        width: 3px;
    }
    
    .widget-headline-h3 {
        font-size: 1.3em;
        margin-bottom: 14px;
        margin-top: 25px;
    }
    
    .widget-headline-h4 {
        font-size: 1.15em;
        margin-bottom: 10px;
        margin-top: 20px;
    }
}

@media (max-width: 576px) {
    .widget-headline-h1 {
        font-size: 1.75em;
        margin-bottom: 20px;
        letter-spacing: -0.01em;
    }
    
    .widget-headline-h2 {
        font-size: 1.35em;
        margin-bottom: 16px;
        margin-top: 30px;
        padding-left: 14px;
    }
    
    .widget-headline-h2::before {
        width: 3px;
    }
    
    .widget-headline-h3 {
        font-size: 1.2em;
        margin-bottom: 12px;
        margin-top: 20px;
    }
    
    .widget-headline-h4 {
        font-size: 1.1em;
        margin-bottom: 8px;
        margin-top: 18px;
    }
    
    .widget-headline-h5 {
        font-size: 1em;
        margin-bottom: 8px;
        margin-top: 16px;
    }
    
    .widget-headline-h6 {
        font-size: 0.9em;
        margin-bottom: 6px;
        margin-top: 14px;
    }
}
