/* Headline Base - Clean Professional Style */
.widget-headline {
  font-family: var(--font-family-primary);
  font-weight: 600;
  line-height: 1.3;
  color: var(--color-accent-headline);
  margin: 0 0 1rem;
  text-shadow: none;
}

/* H1 Headline - Professional & Clean */
.widget-headline-h1 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--color-accent-headline);
  text-shadow: none;
}

/* H2 Headline - Professional & Clean */
.widget-headline-h2 {
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--color-accent-headline);
  text-shadow: none;
}

/* H3 Headline */
.widget-headline-h3 {
  font-size: var(--font-size-2xl);
  font-weight: var(--font-weight-semibold);
  margin-bottom: 1rem;
  color: var(--color-text-primary);
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
}

/* H4 Headline */
.widget-headline-h4 {
  font-size: var(--font-size-xl);
  font-weight: var(--font-weight-medium);
  margin-bottom: 0.75rem;
  color: var(--color-text-primary);
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

/* H5 Headline */
.widget-headline-h5 {
  font-size: var(--font-size-lg);
  font-weight: var(--font-weight-medium);
  margin-bottom: 0.5rem;
  color: var(--color-text-primary);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

/* H6 Headline */
.widget-headline-h6 {
  font-size: var(--font-size-base);
  font-weight: var(--font-weight-medium);
  margin-bottom: 0.5rem;
  color: var(--color-text-primary);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

/* Section Headline */
.widget-headline-section {
  font-size: var(--font-size-2xl);
  font-weight: var(--font-weight-semibold);
  color: var(--color-text-primary);
  margin-bottom: 2rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--color-border-primary);
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
}

/* Page Headline */
.widget-headline-page {
  font-size: var(--font-size-4xl);
  font-weight: var(--font-weight-bold);
  color: var(--color-text-primary);
  text-align: center;
  margin-bottom: 2rem;
  position: relative;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}

.widget-headline-page::after {
  content: "";
  position: absolute;
  bottom: -0.5rem;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--color-primary), var(--color-secondary));
  border-radius: 2px;
}

/* Card Headline */
.widget-headline-card {
  font-size: var(--font-size-xl);
  font-weight: var(--font-weight-semibold);
  color: var(--color-text-primary);
  margin-bottom: 1rem;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

/* Form Headline */
.widget-headline-form {
  font-size: var(--font-size-2xl);
  font-weight: var(--font-weight-semibold);
  color: var(--color-text-primary);
  margin-bottom: 1.5rem;
  text-align: center;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
}

/* Subtitle */
.widget-headline-subtitle {
  font-size: var(--font-size-lg);
  font-weight: var(--font-weight-normal);
  color: var(--color-text-secondary);
  margin-bottom: 1rem;
  line-height: var(--line-height-relaxed);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

/* Centered Headline */
.widget-headline-centered {
  text-align: center;
}

/* Left Aligned Headline */
.widget-headline-left {
  text-align: left;
}

/* Right Aligned Headline */
.widget-headline-right {
  text-align: right;
}

/* Headline with Icon */
.widget-headline-icon {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.widget-headline-icon::before {
  content: "";
  width: 24px;
  height: 24px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  flex-shrink: 0;
}

/* Responsive Headlines */
@media (max-width: 1024px) {
  .widget-headline-h1 {
    font-size: var(--font-size-3xl);
  }

  .widget-headline-h2 {
    font-size: var(--font-size-2xl);
  }

  .widget-headline-h3 {
    font-size: var(--font-size-xl);
  }

  .widget-headline-page {
    font-size: var(--font-size-3xl);
  }

  .widget-headline-section {
    font-size: var(--font-size-xl);
  }
}

@media (max-width: 768px) {
  .widget-headline-h1 {
    font-size: var(--font-size-2xl);
    margin-bottom: 1.25rem;
  }

  .widget-headline-h2 {
    font-size: var(--font-size-xl);
    margin-bottom: 1rem;
  }

  .widget-headline-h3 {
    font-size: var(--font-size-lg);
    margin-bottom: 0.75rem;
  }

  .widget-headline-page {
    font-size: var(--font-size-2xl);
    margin-bottom: 1.5rem;
  }

  .widget-headline-section {
    font-size: var(--font-size-lg);
    margin-bottom: 1.5rem;
  }

  .widget-headline-form {
    font-size: var(--font-size-xl);
    margin-bottom: 1.25rem;
  }

  .widget-headline-subtitle {
    font-size: var(--font-size-base);
  }
}

@media (max-width: 480px) {
  .widget-headline-h1 {
    font-size: var(--font-size-xl);
    margin-bottom: 1rem;
  }

  .widget-headline-h2 {
    font-size: var(--font-size-lg);
    margin-bottom: 0.75rem;
  }

  .widget-headline-h3 {
    font-size: var(--font-size-base);
    margin-bottom: 0.5rem;
  }

  .widget-headline-page {
    font-size: var(--font-size-xl);
    margin-bottom: 1.25rem;
  }

  .widget-headline-section {
    font-size: var(--font-size-base);
    margin-bottom: 1.25rem;
  }

  .widget-headline-form {
    font-size: var(--font-size-lg);
    margin-bottom: 1rem;
  }

  .widget-headline-subtitle {
    font-size: var(--font-size-sm);
  }

  .widget-headline-icon {
    gap: 0.5rem;
  }

  .widget-headline-icon::before {
    width: 20px;
    height: 20px;
  }
}
