/* Was @scope (.home) — see header.css's own comment for why this moved to
   plain CSS nesting instead. */
.home {
  max-width: var(--content-width);
  margin: 0 auto;
  padding: 2rem 1rem;

  ul {
    list-style: none;
    padding: 0;
  }

  li {
    margin-bottom: 0.75rem;
  }

  /* Excludes button-classed links for the same specificity reason as
     header.css's identical exclusion — pre-emptive here (home.default.ts
     doesn't use a button-classed link today), consistent with every other
     stylesheet that has this same ambient a { color } shape. */
  a:not(.button-primary):not(.button-secondary) {
    color: var(--color-accent);
  }

  time {
    color: var(--color-text);
    opacity: 0.6;
    font-size: 0.9rem;
  }

  .faq-item {
    margin-bottom: 1.5rem;
  }

  .faq-item h3 {
    margin-bottom: 0.25rem;
  }
}
