/* ========================================
   VCG QLD — Service area landing pages
   Generated by tools/generate-area-pages.py from json/areas.json
   ======================================== */

/* Matches the inner-page hero used by legal.html — the home page's gradient is
   built for white-on-blue hero type and leaves this page's dark text on it. */
.area-hero {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--lg-hero-bg);
  padding: var(--lg-hero-pad-top) var(--lg-hero-pad-x) var(--lg-hero-pad-bottom);
  text-align: center;
}

.area-hero-content {
  position: relative;
  z-index: var(--z-raised);
  max-width: 62ch;
}

.area-hero h1 {
  font-size: var(--text-h1);
  line-height: var(--lh-hero);
  color: var(--lg-hero-text);
  margin-top: var(--space-sm);
  margin-bottom: var(--space-md);
}

.area-hero .section-label {
  justify-content: center;
  color: var(--lg-hero-text-sub);
}

.area-hero-sub {
  font-size: var(--text-body-lg);
  line-height: var(--lh-reading);
  color: var(--lg-hero-text-sub);
  margin: 0 auto;
}

@media (max-width: 768px) {
  .area-hero {
    padding: var(--lg-hero-pad-top-m) var(--lg-hero-pad-x-m) var(--lg-hero-pad-bottom-m);
  }
}

.area-body {
  /* Horizontal padding lives on the SECTION, not .section-container — that
     class only centres and caps width (see global.css). Without this the prose
     ran edge-to-edge on mobile. Matches .about-story / .about-mission. */
  padding: var(--space-section-y) var(--space-page-x);
}

.area-section {
  max-width: 68ch;
  margin: 0 auto var(--space-3xl);
}

.area-section:last-child {
  margin-bottom: 0;
}

.area-section h2 {
  font-size: var(--text-h3);
  line-height: var(--lh-h3);
  color: var(--color-text);
  margin-top: var(--space-xs);
  margin-bottom: var(--space-md);
}

.area-section p {
  font-size: var(--text-body);
  line-height: var(--lh-prose);
  color: var(--color-text-secondary);
  margin-bottom: var(--space-md);
}

.area-section p:last-child {
  margin-bottom: 0;
}

/* Inline prose links were rendering identical to body text — same colour, no
   underline, same weight — so they read as plain text. Matches the site's
   existing convention in .blog-post-content a. */
.area-section p a {
  color: var(--color-primary);
  font-weight: 500;
  transition: color var(--ease-fast);
}

.area-section p a:hover {
  color: var(--color-deep);
}

.area-faq {
  padding: var(--space-section-y) var(--space-page-x);
  background: var(--color-surface-subtle);
}

.area-faq-list {
  max-width: 68ch;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: var(--gap-card);
}

.area-faq-item {
  background: var(--color-surface);
  border: 1px solid var(--card-border);
  border-radius: var(--r-card);
  padding: var(--padding-card);
}

.area-faq-item h3 {
  font-size: var(--text-lg);
  line-height: var(--lh-h4);
  letter-spacing: -0.01em;
  color: var(--color-text);
  margin-bottom: var(--space-xs);
}

.area-faq-item p {
  font-size: var(--text-body-sm);
  line-height: var(--lh-prose);
  color: var(--color-text-secondary);
}

.area-sources {
  padding: var(--space-2xl) var(--space-page-x);
}

.area-sources h2 {
  max-width: 68ch;
  margin: 0 auto var(--space-md);
  font-size: var(--text-lg);
  line-height: var(--lh-h4);
  letter-spacing: -0.01em;
  color: var(--color-text);
}

.area-sources ol {
  max-width: 68ch;
  margin: 0 auto;
  padding-left: var(--space-lg);
  display: flex;
  flex-direction: column;
  gap: var(--space-2xs);
}

.area-sources li {
  font-size: var(--text-sm);
  line-height: var(--lh-body);
  color: var(--color-text-muted);
}

.area-sources a {
  color: var(--color-primary);
  text-decoration: none;
}

.area-sources a:hover {
  text-decoration: underline;
}

.area-sources span {
  color: var(--color-text-muted);
}

@media (max-width: 768px) {
  /* Body sections deliberately keep --space-page-x at every width, matching
     .about-story / .about-mission — only the hero narrows on mobile. */
  .area-section {
    margin-bottom: var(--space-2xl);
  }
}
