/* hero section */

.section-hero {
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.08), rgba(236, 72, 153, 0.06));
  border-bottom: 1px solid rgb(var(--border));
  padding: 48px 0;
}

.yh-inner {
  text-align: center;
  /* max-width: 600px; */
  margin: 0 auto;
}

.yh-title {
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 800;
  margin-bottom: 12px;
  background: linear-gradient(135deg, rgb(var(--accent-start)), rgb(var(--accent-end)));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.yh-subtitle {
  font-size: 18px;
  margin: 20px auto;
  line-height: 1.6;
}
.yh-subtitle::first-letter,
.yh-title::first-letter{
  text-transform: uppercase;
}

.yh-breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: rgb(var(--card));
  border: 1px solid rgb(var(--border));
  border-radius: 12px;
  box-shadow: var(--shadow);
  *{
    text-transform: capitalize;
  }
}


/* Year Grid */
.year-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin: 48px 0;
}

.no-data {
  grid-column: span 3;
  height: 40vh; 
  display: flex;
  justify-content: center;
  align-items: center; 
  text-align: center;
  color: rgb(var(--muted)); 
  font-size: 1.5rem;
}