/* === HERO === */
.cs-hero { background: var(--bg); padding: calc(72px + 5rem) 0 4rem; }

.cs-hero-heading {
  font-family: var(--font-serif);
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--dark);
}

.cs-hero-sub {
  font-family: var(--font-sans);
  font-size: 1.05rem;
  color: var(--muted);
  font-weight: 300;
  max-width: 50ch;
  line-height: 1.7;
}

/* === LIST === */
.cs-list { background: var(--bg); padding-bottom: 2rem; }

.cs-row {
  padding: 4rem 0;
  border-bottom: 1px solid rgba(43,24,10,0.1);
}
.cs-row--last { border-bottom: none; }

.cs-image {
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: 1rem;
  background-size: cover;
  background-position: center;
  background-color: rgba(43,24,10,0.06);
  transition: transform 0.5s ease;
}
.cs-row:hover .cs-image { transform: scale(1.015); }

.cs-index {
  font-family: var(--font-sans);
  font-size: 0.94rem;
  color: var(--muted);
  letter-spacing: 0.08em;
  display: block;
  margin-bottom: 1rem;
}

.cs-category {
  font-family: var(--font-sans);
  font-size: 0.94rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--dark);
  background: rgba(43,24,10,0.07);
  padding: 0.3rem 0.8rem;
  border-radius: 50px;
  width: fit-content;
}

.cs-title {
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 2.6vw, 2.1rem);
  font-weight: 400;
  color: var(--dark);
  line-height: 1.25;
  max-width: 32ch;
}

.cs-desc {
  font-family: var(--font-sans);
  font-size: 1rem;
  color: var(--muted);
  font-weight: 300;
  line-height: 1.75;
  max-width: 46ch;
}

.cs-stat-num {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  color: var(--dark);
  font-weight: 400;
  line-height: 1;
}

.cs-stat-label {
  font-family: var(--font-sans);
  font-size: 0.94rem;
  color: var(--muted);
}

.cs-link {
  font-family: var(--font-sans);
  font-size: 1rem;
  color: var(--dark);
  font-weight: 500;
  text-decoration: none;
  border-bottom: 1px solid rgba(43,24,10,0.25);
  padding-bottom: 0.25rem;
  transition: border-color 0.3s ease;
}

.cs-link:hover { color: var(--dark); border-color: var(--dark); }
.cs-link span { transition: transform 0.3s ease; display: inline-block; }
.cs-link:hover span { transform: translateX(4px); }

@media (max-width: 991.98px) {
  .cs-row { padding: 2.5rem 0; }
}