/* Atom: Heading */
.atom-heading {
  font-family: var(--font-family-primary);
  font-weight: var(--font-weight-bold);
  line-height: var(--line-height-tight);
  color: var(--color-text-white);
  margin: 0;
}

/* Heading Levels */
.atom-heading--h1 {
  font-size: var(--font-size-6xl);
  font-weight: var(--font-weight-extrabold);
  letter-spacing: var(--letter-spacing-tight);
}

.atom-heading--h2 {
  font-size: var(--font-size-5xl);
  font-weight: var(--font-weight-bold);
  letter-spacing: var(--letter-spacing-tight);
}

.atom-heading--h3 {
  font-size: var(--font-size-4xl);
  font-weight: var(--font-weight-bold);
}

.atom-heading--h4 {
  font-size: var(--font-size-3xl);
  font-weight: var(--font-weight-semibold);
}

.atom-heading--h5 {
  font-size: var(--font-size-2xl);
  font-weight: var(--font-weight-semibold);
}

.atom-heading--h6 {
  font-size: var(--font-size-xl);
  font-weight: var(--font-weight-medium);
}

/* Heading Variants */
.atom-heading--light {
  font-weight: var(--font-weight-normal);
}

.atom-heading--centered {
  text-align: center;
}

/* Responsive */
@media (max-width: 768px) {
  .atom-heading--h1 {
    font-size: var(--font-size-4xl);
  }
  
  .atom-heading--h2 {
    font-size: var(--font-size-3xl);
  }
  
  .atom-heading--h3 {
    font-size: var(--font-size-2xl);
  }
}
