/* ========================================
   CATEGORY PAGE LAYOUT (cp- prefix)
   Source: temp_packages/homepage/pov.html
   ======================================== */

.cp-hero {
  padding: var(--space-5) 0 var(--space-4);
  max-width: 720px;
}

.cp-hero-rule {
  width: 80px;
  height: 2px;
  background: var(--af-violet);
  margin-bottom: var(--space-3);
}

.cp-hero-title {
  font-family: var(--font-display);
  font-size: var(--text-4xl);
  font-weight: 700;
  line-height: 1.1;
  color: var(--text);
  margin: 0 0 var(--space-2);
}

.cp-hero-desc {
  font-family: var(--font-body);
  font-size: var(--text-lg);
  line-height: 1.6;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0;
}

.cp-featured {
  padding: var(--space-4) 0;
}

.cp-featured .af-card-hero {
  border-radius: var(--radius);
  overflow: hidden;
}

.cp-meta-rule {
  flex: 0 0 auto;
  width: 40px;
  height: 2px;
  background: var(--af-violet);
  align-self: center;
}

.af-card-meta {
  align-items: center;
}

.hp-section-header {
  display: flex;
  align-items: baseline;
  gap: var(--space-3);
  margin-bottom: var(--space-4);
}

.hp-section-header-line {
  flex: 1;
  height: 1px;
  background: var(--border-light);
}

.hp-section {
  padding: var(--space-4) 0;
}

@media (max-width: 768px) {
  .cp-hero {
    padding: var(--space-4) 0 var(--space-3);
  }

  .cp-hero-title {
    font-size: var(--text-3xl);
  }

  .cp-hero-desc {
    font-size: var(--text-base);
  }

  .hp-section-header {
    margin-bottom: var(--space-3);
  }
}

@media (max-width: 480px) {
  .cp-hero-title {
    font-size: var(--text-2xl);
  }
}
