/* Cache bust: NEXT_PUBLIC_CLUB_CSS_VERSION trong .env */
/* simple-page.css — trang CMS đơn giản (/dieu-le-clb, /faq, …) */

.simple-page {
  --simple-brand: var(--brand-red-mid, #7a1519);
  background: var(--surface-cream);
  color: var(--text-primary);
}

.simple-page__main {
  padding-top: clamp(1.5rem, 3vw, 2.5rem);
  padding-bottom: clamp(2.5rem, 5vw, 4rem);
  background: var(--surface-section-white);
}

.simple-page__breadcrumb {
  margin-bottom: clamp(1.25rem, 2.5vw, 2rem);
}

.simple-page__head {
  margin-bottom: clamp(1.25rem, 2.5vw, 1.75rem);
}

.simple-page__content {
  max-width: 48rem;
  margin: 0 auto;
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--text-primary);
}

.simple-page__content :where(p, li, blockquote) {
  margin: 0 0 0.85rem;
}

.simple-page__content :where(h2, h3, h4) {
  margin: 1.35rem 0 0.65rem;
  color: var(--simple-brand);
  font-weight: 700;
  line-height: 1.35;
}

.simple-page__content :where(h2) {
  font-size: 1.15rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.simple-page__content :where(h3) {
  font-size: 1.05rem;
}

.simple-page__content :where(h4) {
  font-size: 1rem;
}

.simple-page__content :where(ul:not([class]), ol:not([class])) {
  margin: 0 0 1rem 1.25rem;
  padding: 0;
}

.simple-page__content :where(li) {
  margin-bottom: 0.35rem;
}

.simple-page__content :where(a) {
  color: var(--simple-brand);
  text-decoration: underline;
  text-underline-offset: 0.15em;
}

.simple-page__content :where(a:hover) {
  color: var(--brand-red-dark, #620305);
}

.simple-page__content :where(strong, b) {
  font-weight: 700;
  color: var(--text-primary);
}

.simple-page__content .payload-richtext__hr {
  margin: 1.25rem 0;
  border: none;
  border-top: 1px solid #e5e0d6;
}

.simple-page__empty {
  max-width: 48rem;
  margin: 0 auto;
  padding: 1.25rem 1rem;
  text-align: center;
  font-size: 0.92rem;
  color: var(--text-muted);
  background: #f5f2eb;
  border-radius: 0.35rem;
}
