/* community.css — scoped styles for /community and the landing-page
   community-proof anchor. Loaded only when community.css is referenced
   directly (e.g. views/community.ejs). Does not touch theme.css or the
   landing-page hero/pillars styles. */

/* ===== COMMUNITY PROOF LINK (landing) ===== */
.community-proof-link {
  display: block;
  color: inherit;
  text-decoration: none;
  border-radius: 8px;
  transition: box-shadow 0.25s ease, transform 0.25s ease, background 0.25s ease;
}
.community-proof-link:hover {
  background: rgba(15, 28, 63, 0.04);
  box-shadow: 0 8px 32px rgba(15, 28, 63, 0.08);
  transform: translateY(-2px);
}
.community-proof-link:focus-visible {
  outline: 2px solid var(--amber);
  outline-offset: 4px;
}

/* ===== VIGNETTES ===== */
.vignettes {
  padding: var(--section-pad) 40px;
  background: var(--cream-dark);
}

.vignettes-inner {
  max-width: var(--max-w);
  margin: 0 auto;
}

.vignettes-eyebrow {
  margin-bottom: 16px;
}

.vignettes-heading {
  font-family: var(--font-serif);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 48px;
  letter-spacing: -0.01em;
  line-height: 1.3;
  max-width: 720px;
}

.vignettes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.vignette-card {
  background: var(--white);
  border: 1px solid rgba(15, 28, 63, 0.08);
  border-radius: 8px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.vignette-framing {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--amber);
  line-height: 1.4;
}

.vignette-body {
  font-family: var(--font-serif);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--text);
  font-style: normal;
  margin: 0;
}

@media (max-width: 880px) {
  .vignettes-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

@media (max-width: 600px) {
  .vignettes {
    padding: 72px 24px;
  }
}
