/* =========================================
   HEADLINE WIDGETS
   RULE 019: Must be on container and element
   ========================================= */

.base-headline-h1 {
    font-size: var(--font-size-2xl);
    font-weight: var(--font-weight-bold);
    line-height: var(--line-height-tight);
    letter-spacing: -0.025em;
    margin-bottom: 1.25rem;
    color: var(--color-headline);
    background: linear-gradient(120deg, #0f172a 0%, #1e3a8a 52%, #0f766e 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    max-width: 100%;
    overflow-wrap: break-word;
    word-wrap: break-word;
}

.base-headline-h2 {
    font-size: var(--font-size-xl);
    font-weight: var(--font-weight-bold);
    line-height: var(--line-height-tight);
    letter-spacing: -0.02em;
    margin-top: 10px;
    margin-bottom: 1rem;
    color: var(--color-headline);
    background: linear-gradient(120deg, #0f172a 0%, #1e3a8a 52%, #0f766e 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    max-width: 100%;
    overflow-wrap: break-word;
    word-wrap: break-word;
}

.base-headline-h2-margin-none {
    font-size: var(--font-size-xl);
    font-weight: var(--font-weight-bold);
    line-height: var(--line-height-tight);
    letter-spacing: -0.02em;
    margin: 0;
    color: var(--color-headline);
    background: linear-gradient(120deg, #0f172a 0%, #1e3a8a 52%, #0f766e 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.base-headline-h3 {
    font-size: var(--font-size-lg);
    font-weight: var(--font-weight-semibold);
    margin-bottom: 0.75rem;
    color: var(--color-headline);
    background: linear-gradient(120deg, #1e293b 0%, #1d4ed8 55%, #0f766e 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.base-headline-h4 {
    font-size: var(--font-size-base);
    font-weight: var(--font-weight-semibold);
    margin-bottom: 0.5rem;
    color: var(--color-headline);
    background: linear-gradient(120deg, #334155 0%, #1e40af 58%, #115e59 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

@media (min-width: 768px) {
    .base-headline-h1 {
        font-size: var(--font-size-3xl);
    }
}