.resources-section { padding: 56px 5vw 80px; background: var(--bg); }

/* ── section label ─────────────────────────────────────────── */
.res-section-label {
  font-family: 'Baloo 2', cursive;
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 20px;
}

.res-intro {
  font-size: 15px;
  font-weight: 600;
  color: var(--muted);
  line-height: 1.75;
  max-width: 640px;
  margin-bottom: 28px;
}

/* ── site resources grid ────────────────────────────────────── */
.res-site-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 16px;
}

.res-site-card {
  display: flex;
  align-items: center;
  gap: 14px;
  background: #fff;
  border-radius: 16px;
  padding: 18px 20px;
  text-decoration: none;
  box-shadow: 0 2px 12px rgba(0,80,140,0.07);
  border: 2px solid transparent;
  transition: border-color 0.15s, box-shadow 0.15s, transform 0.15s;
}
.res-site-card:hover {
  border-color: var(--teal);
  box-shadow: 0 4px 20px rgba(0,151,167,0.15);
  transform: translateY(-2px);
}
.res-site-icon { font-size: 26px; flex-shrink: 0; }
.res-site-title {
  font-family: 'Baloo 2', cursive;
  font-weight: 800;
  font-size: 15px;
  color: var(--navy);
  margin-bottom: 2px;
}
.res-site-sub {
  font-size: 12px;
  font-weight: 600;
  color: var(--muted);
  line-height: 1.4;
}

/* ── competition grid ───────────────────────────────────────── */
.res-comp-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
}

.res-comp-card {
  background: #fff;
  border-radius: 18px;
  padding: 24px 26px;
  box-shadow: 0 2px 12px rgba(0,80,140,0.07);
}

.res-comp-region {
  font-family: 'Baloo 2', cursive;
  font-weight: 800;
  font-size: 15px;
  color: var(--navy);
  margin-bottom: 14px;
  padding-bottom: 10px;
  border-bottom: 2px solid rgba(0,151,167,0.15);
}

.res-comp-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.res-comp-link {
  display: flex;
  align-items: baseline;
  gap: 8px;
  font-size: 13px;
  font-weight: 700;
  color: var(--navy);
  text-decoration: none;
  padding: 6px 8px;
  border-radius: 8px;
  transition: background 0.12s, color 0.12s;
  line-height: 1.4;
}
.res-comp-link:hover {
  background: rgba(0,151,167,0.08);
  color: var(--teal);
}
.res-comp-arrow {
  color: var(--teal);
  font-size: 16px;
  font-weight: 800;
  flex-shrink: 0;
  line-height: 1;
}

/* ── bottom CTA ─────────────────────────────────────────────── */
.res-cta-box {
  background: linear-gradient(135deg, #ff7a59, #e8552f);
  border-radius: 24px;
  padding: 48px 40px;
  text-align: center;
  margin-top: 56px;
}
.res-cta-icon { font-size: 48px; margin-bottom: 16px; }
.res-cta-box h3 {
  font-family: 'Baloo 2', cursive;
  font-weight: 800;
  font-size: clamp(22px, 3vw, 30px);
  color: #fff;
  margin-bottom: 12px;
}
.res-cta-box p {
  font-size: 15px;
  font-weight: 600;
  color: rgba(255,255,255,0.85);
  line-height: 1.7;
  max-width: 520px;
  margin: 0 auto 28px;
}
.res-cta-buttons { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

@media (max-width: 600px) {
  .res-site-grid  { grid-template-columns: 1fr; }
  .res-comp-grid  { grid-template-columns: 1fr; }
  .res-cta-box    { padding: 36px 20px; }
}
