.page-hero {
  padding-top: 140px;
  padding-bottom: 72px;
  text-align: center;
}

.page-section {
  padding: 72px 24px;
}

.page-section.muted {
  background-color: rgba(31, 65, 41, 0.2);
}

.resources-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

.resource-card {
  background-color: rgba(31, 65, 41, 0.3);
  border-radius: 12px;
  padding: 32px;
  border: 1px solid rgba(45, 95, 63, 0.35);
}

.resource-card.featured {
  border-color: rgba(212, 175, 55, 0.5);
  background-color: rgba(31, 65, 41, 0.45);
}

.card-title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
}

.section-text {
  color: var(--text-gray-300);
  line-height: 1.7;
  margin-bottom: 16px;
}

.price-tag {
  font-size: 18px;
  font-weight: 700;
  color: var(--brand-gold);
  margin-bottom: 20px;
}

.price-tag.free {
  color: var(--text-white);
}

.cta-card {
  text-align: center;
  background-color: rgba(31, 65, 41, 0.3);
  border-radius: 12px;
  padding: 32px;
  border: 1px solid rgba(45, 95, 63, 0.35);
}

@media (min-width: 768px) {
  .resources-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .resources-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}
