@import url("https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@400;500;600;700&display=swap");

.page-resources {
  margin: 0;
  font-family: "Space Grotesk", system-ui, sans-serif;
  background: linear-gradient(165deg, #ecfdf5 0%, #f0fdfa 40%, #ecfeff 100%);
  color: #134e4a;
}

.page-resources .site-main {
  max-width: 920px;
  margin: 0 auto;
  padding: 2.5rem 1.25rem 3rem;
}

.page-resources h1 {
  font-size: clamp(1.75rem, 3.5vw, 2.2rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  margin: 0 0 0.5rem;
  color: #0f766e;
}
.page-resources .sub {
  margin: 0 0 2rem;
  max-width: 48ch;
  line-height: 1.6;
  color: #0d9488;
}

.page-resources .cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1rem;
}

.page-resources .card {
  background: #fff;
  border-radius: 14px;
  padding: 1.25rem 1.3rem;
  border: 1px solid rgba(13, 148, 136, 0.25);
  box-shadow: 0 10px 30px rgba(15, 118, 110, 0.07);
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.page-resources .card h2 {
  margin: 0;
  font-size: 1rem;
  font-weight: 600;
  color: #115e59;
}
.page-resources .card p {
  margin: 0;
  font-size: 0.86rem;
  line-height: 1.55;
  color: #2dd4bf;
  flex: 1;
}
.page-resources .card a {
  align-self: flex-start;
  margin-top: 0.25rem;
  font-size: 0.78rem;
  font-weight: 600;
  text-decoration: none;
  color: #fff;
  background: #0d9488;
  padding: 0.45rem 0.85rem;
  border-radius: 999px;
}
.page-resources .card a:hover {
  background: #0f766e;
}

.page-resources .note {
  margin-top: 2rem;
  padding: 1rem 1.15rem;
  background: rgba(255, 255, 255, 0.75);
  border-radius: 12px;
  font-size: 0.85rem;
  line-height: 1.55;
  color: #115e59;
  border: 1px dashed rgba(13, 148, 136, 0.45);
}
