/* ============================================================
   RESOURCES PAGE (QCLAY AESTHETIC)
   ============================================================ */

.resources-hero {
  padding-top: 200px;
  padding-bottom: var(--space-24);
  text-align: center;
}

.resources-hero h1 {
  font-size: clamp(3rem, 7vw, 6rem);
  margin-bottom: var(--space-8);
}

.resources-hero p {
  font-size: var(--text-body-lg);
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto;
}

.articles-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-6);
}

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

.article-card {
  background: var(--bg-secondary);
  border-radius: var(--radius-xl);
  padding: var(--space-12);
  box-shadow: var(--shadow-card);
  transition: transform var(--duration-base) var(--ease-bounce), box-shadow var(--duration-base);
  display: flex;
  flex-direction: column;
}

.article-card:hover {
  transform: translateY(-8px) scale(1.01);
  box-shadow: var(--shadow-float);
}

.article-card__tag {
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent-primary);
  margin-bottom: var(--space-4);
  background: rgba(74, 58, 255, 0.1);
  padding: 6px 12px;
  border-radius: var(--radius-pill);
  align-self: flex-start;
}

.article-card__title {
  font-size: var(--text-h3);
  margin-bottom: var(--space-4);
  line-height: 1.2;
}

.article-card__desc {
  font-size: var(--text-body-lg);
  color: var(--text-secondary);
  margin-bottom: var(--space-8);
  flex-grow: 1;
}

.article-card__meta {
  font-size: 0.875rem;
  color: var(--text-muted);
  font-weight: 600;
}
