/* =========================
   Resources
========================= */
.intro-text {
  margin: 0 auto 2rem auto;
  text-align: center;
  font-size: 1.15rem;
}

.resource-section {
  margin-top: 3rem;
}

.resource-section h3 {
  font-size: 1.25rem;
  margin-bottom: 0;
}

.resource-section p {
  max-width: 70ch;
  margin-bottom: 1.5rem;
}

.resource-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}

.resource-card {
  background: #fff;
  border: 1px solid #e3ded6;
  border-radius: 0.85rem;
  padding: 1.25rem;
  box-shadow: 0 8px 22px rgba(0,0,0,0.08);
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.resource-card strong {
  color: var(--navy);
}

.resource-card a {
  font-weight: 600;
  text-decoration: underline;
  color: #0475bb;
}

.resource-card span a {
  font-weight: 700;
  color: var(--navy);
  text-decoration: none;
}

#fin-help {
  scroll-margin-top: 7rem; /* adjust to header height */
}

.add-resources {
  border-top: 2px solid var(--gold);
  padding-top: 2rem;
  font-weight: 600;
  width: 100%;
  margin: 2rem 0;
}