.resources-hero {
  padding: 6rem 0 3rem;
  text-align: center;
}

.resources-hero h1 {
  font-family: 'Newsreader', Georgia, serif;
  font-style: italic;
  font-weight: 400;
  font-size: 2.6rem;
  margin-bottom: 1rem;
}

.resources-hero p {
  max-width: 600px;
  margin: 0 auto;
  color: var(--text-soft);
}

/* Featured */
.featured-resource {
  padding: 2rem 0 4rem;
}

.featured-card {
  background: linear-gradient(135deg, var(--blue), var(--blue-deep));
  color: #fff;
  padding: 3rem;
  border-radius: var(--radius-lg);
}

.featured-card p {
  opacity: 0.9;
}

/* Grid */
.resources-grid {
  padding: 4rem 0;
}

.grid-header {
  text-align: center;
  margin-bottom: 2rem;
}

.articles-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.resource-card {
  background: #fff;
  padding: 1.8rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.resource-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.resource-card p {
  color: var(--text-soft);
}

/* CTA */
.resources-cta {
  text-align: center;
  padding: 4rem 0;
}

/* Mobile */
@media (max-width: 768px) {
  .articles-grid {
    grid-template-columns: 1fr;
  }

  .resources-hero h1 {
    font-size: 2rem;
  }
}