/* Case-study body furniture: meta strip, about panel, product headers, flow rows */

.cs-meta {
  border-block-end: 1px solid var(--border);
  padding-block-end: var(--section-y);
}

.cs-meta__label {
  font-size: var(--fs-2xs);
  color: var(--text-4);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-block-end: 0.5rem;
}

.cs-meta__value { color: var(--text-1); margin: 0; }

/* Coloured "About Project" slab */
.about-panel {
  border-radius: var(--r-lg);
  padding: var(--panel-p);
  background: var(--panel-bg, var(--surface-1));
  color: var(--panel-fg, var(--text));
}

.about-panel h2 {
  font-size: var(--fs-panel);
  font-weight: 800;
  letter-spacing: -0.025em;
  margin-block-end: 1.5rem;
  color: inherit;
}

.about-panel p {
  font-size: clamp(1rem, 1.7vw, 1.1875rem);
  line-height: 1.55;
  color: inherit;
  max-width: 51.25rem;
}

.about-panel strong { color: inherit; }

/* Product section header (Shukran's three products) */
.badge {
  display: inline-block;
  font-size: var(--fs-2xs);
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: var(--r-pill);
  margin-block-end: 1rem;
}

.product-title {
  font-size: var(--fs-product);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -0.03em;
  margin-block-end: 0.5rem;
}

/* "FLOW 01 · title" row */
.flow-head {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-block-end: 1.5rem;
}

.flow-head__n {
  font-family: var(--font-display);
  font-size: var(--fs-xs);
  font-weight: 700;
  color: var(--accent);
}

.flow-head__title {
  font-family: var(--font-body);
  font-size: 1.125rem;
  font-weight: 600;
  letter-spacing: normal;
}

/* Teal connector note that links one product to the next */
.note {
  display: flex;
  align-items: center;
  gap: 14px;
  background: #003844;
  border-radius: 14px;
  padding: 18px clamp(1rem, 3vw, 1.5rem);
  font-size: var(--fs-sm);
  color: #d7e6e8;
}

.note__dot { width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0; }
