/* Chips / pill tags */
.atlas-chips {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-sm);
}

.atlas-chip {
  font-size: var(--font-size-xs);
  font-weight: 500;
  letter-spacing: 0.06em;
  padding: var(--space-xs) var(--space-md);
  background: var(--color-bg-alt);
  border: 1px solid var(--color-border);
  border-radius: 100px;
  color: var(--color-text-muted);
}

.atlas-chips--left {
  justify-content: flex-start;
}

/* Section header: title + optional link */
.atlas-section-header {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: space-between;
  gap: var(--space-md);
  margin-bottom: var(--space-lg);
}

.atlas-section-header__title {
  margin: 0;
  font-size: clamp(var(--font-size-xl), 3vw, var(--font-size-2xl));
  font-weight: 600;
  line-height: var(--line-height-tight);
  letter-spacing: -0.02em;
}

.atlas-section-header .author-section__title {
  margin-bottom: 0;
}

.fueko-section-link {
  font-size: var(--font-size-sm);
  font-weight: 500;
  color: var(--color-accent);
  text-decoration: none;
  white-space: nowrap;
}

.fueko-section-link:hover {
  text-decoration: underline;
}

/* Card-style container */
.fueko-card {
  padding: var(--space-xl);
  background: var(--color-bg);
  border-radius: 12px;
  border: 1px solid var(--color-border);
}

/* Large title */
.atlas-title--large {
  font-size: clamp(1.5rem, 4vw, 2.25rem);
  font-weight: 600;
  line-height: var(--line-height-tight);
  letter-spacing: -0.03em;
}
