.resources-page {
  background:
    radial-gradient(720px 420px at -8% -12%, #dbe8ff 0%, transparent 72%),
    radial-gradient(560px 340px at 104% 2%, #d9efff 0%, transparent 68%),
    linear-gradient(180deg, #f8fbff 0%, #edf4fc 100%);
}

.resources-page .wrap {
  width: min(1180px, calc(100% - 32px));
  margin: 20px auto 52px;
  gap: 16px;
}

.rs-hero {
  border: 1px solid #d6e2f5;
  border-radius: 20px;
  background: linear-gradient(135deg, #ffffff 0%, #f4f8ff 100%);
  padding: clamp(24px, 4vw, 36px);
  box-shadow: 0 16px 34px rgba(17, 36, 68, 0.08);
}

.rs-eyebrow {
  margin: 0;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #4565a3;
  font-weight: 800;
}

.rs-hero h1 {
  margin: 10px 0 0;
  color: #10294c;
  font-size: clamp(34px, 5vw, 56px);
  line-height: 1.04;
  letter-spacing: -0.02em;
  font-family: "Space Grotesk", "Plus Jakarta Sans", sans-serif;
}

.rs-subhead {
  margin: 12px 0 0;
  max-width: 760px;
  color: #4f6386;
  line-height: 1.62;
}

.rs-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.rs-card {
  border: 1px solid #d7e3f4;
  border-radius: 16px;
  background: #ffffff;
  padding: 18px;
  box-shadow: 0 10px 26px rgba(20, 39, 75, 0.06);
  display: grid;
  gap: 8px;
}

.rs-kicker {
  margin: 0;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #5272ac;
  font-weight: 700;
}

.rs-card h2 {
  margin: 0;
  color: #12305a;
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1.12;
}

.rs-card p {
  margin: 0;
  color: #54688a;
  line-height: 1.62;
}

.rs-btn {
  margin-top: 6px;
  display: inline-flex;
  width: fit-content;
  text-decoration: none;
  border-radius: 999px;
  padding: 10px 16px;
  color: #ffffff;
  background: linear-gradient(135deg, #0050c8 0%, #00398f 100%);
  font-weight: 700;
  font-size: 14px;
}

.rs-more {
  border: 1px solid #d6e3f5;
  border-radius: 16px;
  background: #ffffff;
  box-shadow: 0 10px 26px rgba(20, 39, 75, 0.06);
  padding: 16px;
}

.rs-more-head h2 {
  margin: 0;
  color: #12305a;
  font-size: clamp(24px, 3vw, 34px);
}

.rs-more-head p {
  margin: 8px 0 0;
  color: #55698b;
}

.rs-more-grid {
  margin-top: 12px;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 8px;
}

.rs-more-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  border: 1px solid #d5e2f6;
  border-radius: 10px;
  background: #f6faff;
  color: #234c89;
  padding: 10px 12px;
  font-weight: 700;
  font-size: 14px;
}

@media (max-width: 980px) {
  .rs-grid {
    grid-template-columns: 1fr;
  }

  .rs-more-grid {
    grid-template-columns: 1fr 1fr;
  }
}
