/* ========================================
   Yearly View Styles
   ======================================== */

/* ---- Year Hero Card ---- */
.year-hero-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--space-4);
  margin-bottom: var(--space-4);
  transition: box-shadow var(--transition-base), transform var(--transition-base);
}

.year-hero-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.year-hero-header {
  margin-bottom: var(--space-4);
}

.year-hero-title {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.2;
}

.year-hero-subtitle {
  font-size: 0.875rem;
  color: var(--text-secondary);
  margin-top: 4px;
}

.year-hero-stats {
  display: flex;
  gap: var(--space-6);
  margin-bottom: var(--space-4);
}

.year-stat {
  text-align: center;
}

.year-stat-value {
  font-family: var(--font-mono);
  font-size: 2rem;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
}

.year-stat-label {
  font-size: 0.75rem;
  color: var(--text-secondary);
  margin-top: 4px;
}

.year-hero-tags {
  margin-bottom: var(--space-2);
}

.year-hero-tags-label {
  font-size: 0.75rem;
  color: var(--text-secondary);
  margin-bottom: var(--space-1);
}

.year-hero-tags-list {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
