.seo-resource-section {
  padding: clamp(72px, 10vh, 104px) 0;
  background:
    radial-gradient(circle at top left, rgba(220, 38, 38, 0.12), transparent 34%),
    linear-gradient(180deg, rgba(10, 10, 10, 0.98) 0%, rgba(23, 23, 23, 0.98) 100%);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.seo-resource-shell {
  max-width: var(--container-max, 1440px);
  margin: 0 auto;
  padding: 0 clamp(24px, 4vw, 48px);
}

.seo-resource-header {
  max-width: 760px;
  margin-bottom: 28px;
}

.seo-resource-header h2 {
  font-family: var(--font-display, 'Bebas Neue', sans-serif);
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1;
  letter-spacing: 0.03em;
  color: var(--cream, #f5f5f2);
  margin-bottom: 14px;
}

.seo-resource-header p {
  font-size: 1rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.74);
}

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

.seo-resource-card {
  display: block;
  padding: 22px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.09);
  text-decoration: none;
  transition: transform 0.3s ease, border-color 0.3s ease, background 0.3s ease;
}

.seo-resource-card:hover {
  transform: translateY(-4px);
  border-color: rgba(220, 38, 38, 0.35);
  background: rgba(255, 255, 255, 0.07);
}

.seo-resource-card strong {
  display: block;
  font-size: 0.95rem;
  line-height: 1.45;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--cream, #f5f5f2);
  margin-bottom: 8px;
}

.seo-resource-card span {
  display: block;
  font-size: 0.94rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.7);
}

@media (max-width: 1024px) {
  .seo-resource-grid {
    grid-template-columns: 1fr;
  }
}
