/* ─── Case Study ────────────────────────────────────────────────────────────
   Shared styles for case study pages
   ─────────────────────────────────────────────────────────────────────────── */

.meta-label {
  font-size: 14px;
  font-weight: 500;
  color: #535353;
  text-transform: uppercase;
   padding-top: 2px;
}

.meta-value {
  font-size: 14px;
  color: #090909;
  line-height: 1.55;
}

/* ─── Hero component ─────────────────────────────────────────────────────── */

.cs-hero-section {
  padding: 64px 48px 0;
}

.cs-hero-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

.cs-hero-left {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 8px 0;
}

.cs-hero-title {
  font-size: 64px;
  font-weight: 600;
  line-height: 1.05;
   color: #090909;
  margin: 0;
}

.cs-hero-details {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.cs-hero-description {
  font-size: 14px;
  font-weight: 300;
  color: #090909;
  line-height: 1.7;
  margin: 0;
}

.cs-hero-meta {
  display: flex;
  flex-direction: column;
  border-top: 1px solid #D3D3D3;
}

.cs-hero-meta-row {
  display: grid;
  grid-template-columns: 100px 1fr;
  padding: 12px 0;
}

.cs-hero-meta-row-border {
  border-bottom: 1px solid #D3D3D3;
}

.cs-hero-services {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3px 24px;
}

.cs-hero-team {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3px 24px;
}

.cs-hero-role {
  color: #535353;
}

.cs-hero-links {
  display: flex;
  gap: 24px;
}

.cs-hero-link-primary {
  color: #090909;
  text-decoration: none;
  transition: color 200ms ease;
}
.cs-hero-link-primary:hover { color: #090909; }

.cs-hero-link-secondary {
  color: #535353;
  text-decoration: none;
  transition: color 200ms ease;
}
.cs-hero-link-secondary:hover { color: #090909; }

.cs-hero-cover {
  overflow: hidden;
  aspect-ratio: 1;
  background: #E6E6E6;
}

/* Testimonial / client quote */
.cs-testimonial {
  border-left: 2px solid #D3D3D3;
  padding-left: 24px;
  max-width: 680px;
}
.cs-testimonial blockquote {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.75;
  color: #090909;
  margin: 0;
  font-style: italic;
}
.cs-testimonial cite {
  display: block;
  margin-top: 12px;
  font-size: 16px;
  font-weight: 400;
  font-style: normal;
  color: #535353;
  line-height: 1.5;
}
.cs-testimonial cite strong {
  color: #090909;
  font-weight: 500;
}
