/* ============================================================
   CASE STUDY — layout and components for case study pages
   ============================================================ */

/* ── Hero ── */
.cs-hero {
  min-height: 444px;
  position: relative;
  background: linear-gradient(169.6deg, #0a0a0a 8.5%, #0d0d12 50%, #0a0b10 91.5%);
  padding: 144px var(--page-pad) 80px;
}

.cs-hero-inner {
  max-width: var(--content-width);
}

.back-link {
  font-size: 10.4px;
  font-weight: 500;
  letter-spacing: 2.6px;
  text-transform: uppercase;
  color: var(--color-muted);
  text-decoration: none;
  display: inline-block;
  margin-bottom: 40px;
  transition: color var(--transition);
}

.back-link:hover {
  color: var(--color-primary);
}

.cs-hero-title {
  font-size: 76.79px;
  font-weight: 300;
  line-height: 1.05;
  letter-spacing: -1.5358px;
  color: var(--color-primary);
  margin-top: 24px;
}

.cs-hero-subtitle {
  font-size: 20.8px;
  font-weight: 300;
  line-height: 1.7;
  color: rgba(219, 234, 254, 0.7);
  max-width: 672px;
  margin-top: 24px;
}

/* ── Meta cards ── */
.meta-wrap {
  background: var(--surface-1);
}

.meta-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  max-width: var(--content-width);
  margin: 0 auto;
  padding: 0 var(--content-pad);
  transform: translateY(-32px);
}

.meta-card {
  background: var(--surface-2);
  border: 1px solid var(--border-light);
  padding: 21px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.meta-card-icon {
  width: 28px;
  height: 28px;
  color: var(--color-muted);
  flex-shrink: 0;
}

.meta-card-label {
  font-size: 10.4px;
  font-weight: 500;
  letter-spacing: 2.912px;
  text-transform: uppercase;
  color: var(--color-muted-45);
  margin-top: 8px;
}

.meta-card-value {
  font-size: 15.2px;
  font-weight: 500;
  color: var(--color-primary);
}

/* ── Section shell ── */
.section {
  width: 100%;
  padding: 80px 0;
}

.section--dark1    { background: var(--surface-1); }
.section--dark2    { background: var(--surface-3); }
.section--darkblue { background: var(--surface-blue); }
.section--outcome  { background: linear-gradient(149.4deg, #0a1a3a 4.3%, #1a0e50 95.7%); }
.section--footer   { background: var(--bg); border-top: 1px solid rgba(255, 255, 255, 0.08); }

.section-inner {
  max-width: var(--content-width);
  margin: 0 auto;
  padding: 0 var(--content-pad);
}

.section-heading {
  font-size: 32.91px;
  font-weight: 300;
  line-height: 1.5;
  letter-spacing: -0.3291px;
  color: var(--color-primary);
  margin-top: 20px;
}

.section-subtext {
  font-size: 16px;
  font-weight: 300;
  line-height: 1.8;
  color: var(--color-muted-60);
  margin-top: 20px;
}

/* ── Project context ── */
.context-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
}

.context-p {
  font-size: 15.2px;
  font-weight: 300;
  line-height: 1.9;
  color: var(--color-muted-60);
  margin-top: 24px;
}

.challenge-card {
  border: 1px solid rgba(254, 230, 133, 0.2);
  padding: 33px;
  background: linear-gradient(163.8deg, rgba(225,113,0,0.12) 7.9%, rgba(225,113,0,0.06) 92.1%);
}

.challenge-icon {
  width: 36px;
  height: 36px;
  color: rgba(254, 180, 80, 0.8);
  margin-bottom: 16px;
}

.challenge-title {
  font-size: 17.6px;
  font-weight: 500;
  color: var(--color-primary);
  margin-bottom: 12px;
}

.challenge-text {
  font-size: 14.4px;
  font-weight: 300;
  line-height: 1.8;
  color: var(--color-muted-60);
}

/* ── Problem list ── */
.problem-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 24px;
}

.problem-list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 16px;
  font-weight: 300;
  line-height: 1.6;
  color: var(--color-muted-60);
}

.problem-list li::before {
  content: '→';
  color: var(--color-primary);
  font-size: 14px;
  flex-shrink: 0;
  margin-top: 3px;
}

/* ── Goal cards ── */
.goal-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 48px;
}

.goal-card {
  background: var(--surface-2);
  padding: 33px 33px 33px 36px;
}

.goal-card--blue    { border: 1px solid var(--border-light); border-left: 4px solid #3b82f6; }
.goal-card--purple  { border: 1px solid var(--border-light); border-left: 4px solid #7c3aed; }
.goal-card--magenta { border: 1px solid var(--border-light); border-left: 4px solid #a21caf; }

.goal-card-icon {
  width: 36px;
  height: 36px;
  color: var(--color-muted);
  margin-bottom: 16px;
}

.goal-card-title {
  font-size: 16px;
  font-weight: 500;
  color: var(--color-primary);
  margin-bottom: 12px;
}

.goal-card-text {
  font-size: 14.08px;
  font-weight: 300;
  line-height: 1.8;
  color: var(--color-muted-60);
}

/* ── Research questions ── */
.rq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 24px;
}

.rq-item {
  background: var(--surface-4);
  padding: 16px;
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.rq-item--solo {
  grid-column: 1;
}

.rq-num {
  font-size: 13.6px;
  font-weight: 500;
  color: #3b82f6;
  flex-shrink: 0;
}

.rq-text {
  font-size: 14.08px;
  font-weight: 300;
  line-height: 1.6;
  color: var(--color-muted-60);
}

.audit-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 20px;
}

.audit-card {
  background: var(--surface-2);
  border: 1px solid var(--border-light);
  padding: 25px;
}

.audit-card-title {
  font-size: 15.2px;
  font-weight: 500;
  color: var(--color-primary);
  margin-bottom: 12px;
}

.audit-card-text {
  font-size: 13.6px;
  font-weight: 300;
  line-height: 1.8;
  color: var(--color-muted-60);
}

/* ── Alignment boxes ── */
.align-box {
  background: var(--surface-2);
  border: 1px solid var(--border-light);
  padding: 29px;
}

.align-box-inner {
  background: linear-gradient(171.9deg, #141414 8.5%, #111 91.5%);
  border: 1px solid var(--border-light);
  padding: 29px;
  margin-top: 20px;
}

.align-title {
  font-size: 16.8px;
  font-weight: 500;
  color: var(--color-primary);
  margin-bottom: 24px;
}

.align-subtext {
  font-size: 14.08px;
  font-weight: 300;
  line-height: 1.8;
  color: var(--color-muted-60);
  margin-bottom: 24px;
}

/* Flow organization legend */
.legend {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.legend-item {
  display: flex;
  align-items: center;
  gap: 12px;
}

.legend-swatch {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
}

.legend-swatch--blue   { background: rgba(59,  130, 246, 0.3); }
.legend-swatch--yellow { background: rgba(253, 224, 71,  0.3); }
.legend-swatch--purple { background: rgba(168, 85,  247, 0.3); }
.legend-swatch--pink   { background: rgba(236, 72,  153, 0.3); }

.legend-label {
  font-size: 13.12px;
  font-weight: 300;
  color: var(--color-muted-60);
}

/* Revised flows */
.flow-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.flow-card-box {
  background: var(--surface-4);
  border: 1px solid var(--border-light);
  padding: 21px;
}

.flow-card-title {
  font-size: 14.4px;
  font-weight: 500;
  color: var(--color-primary);
  margin-bottom: 12px;
}

.flow-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 13.28px;
  font-weight: 300;
  line-height: 1.6;
  color: var(--color-muted-60);
}

/* ── Design system checklist ── */
.ds-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 48px;
}

.ds-item {
  background: #1d293d;
  border: 1px solid #314158;
  padding: 21px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.ds-check {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  color: #3b82f6;
}

.ds-label {
  font-size: 14.08px;
  font-weight: 300;
  color: var(--color-primary);
}

/* ── Final design mockups ── */
.design-cards {
  display: flex;
  flex-direction: column;
  gap: 32px;
  margin-top: 48px;
}

.design-card {
  padding: 29px;
}

.design-card--blue   { background: linear-gradient(151.5deg, rgba(20,50,100,0.4) 5.3%, rgba(20,40,90,0.4) 94.7%);   border: 1px solid rgba(190,219,255,0.15); }
.design-card--purple { background: linear-gradient(154.1deg, rgba(80,20,100,0.3) 6.6%, rgba(70,15,90,0.3) 93.4%);   border: 1px solid rgba(233,212,255,0.15); }
.design-card--green  { background: linear-gradient(133.3deg, rgba(0,80,30,0.3) 0%, rgba(0,70,25,0.3) 100%);          border: 1px solid rgba(185,248,207,0.15); }

.design-card-badge {
  display: inline-flex;
  align-items: center;
  height: 28px;
  padding: 1px 13px;
  border-radius: 999px;
  font-size: 10.88px;
  font-weight: 500;
  letter-spacing: 1.632px;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 20px;
}

.badge--blue   { background: #155dfc; }
.badge--purple { background: #9810fa; }
.badge--green  { background: #00a63e; }

.design-card-title {
  font-size: 19.2px;
  font-weight: 500;
  color: var(--color-primary);
  margin-bottom: 12px;
}

.design-card-text {
  font-size: 14.4px;
  font-weight: 300;
  line-height: 1.8;
  color: var(--color-muted-60);
  margin-bottom: 24px;
}

.app-mockup {
  background: #1e1e2e;
  border-radius: 10px;
  overflow: hidden;
  width: 100%;
  max-width: 782px;
  aspect-ratio: 782 / 490;
  display: flex;
  align-items: center;
  justify-content: center;
}

.app-mockup img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
}

.app-mockup--tall {
  aspect-ratio: 782 / 819;
}

/* ── Outcome & impact ── */
.outcome-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 48px;
}

.outcome-card {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid var(--border-medium);
  padding: 29px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.outcome-icon {
  width: 40px;
  height: 40px;
  color: rgba(245, 245, 240, 0.6);
}

.outcome-value {
  font-size: 25.6px;
  font-weight: 300;
  color: var(--color-primary);
}

.outcome-text {
  font-size: 14.08px;
  font-weight: 300;
  line-height: 1.7;
  color: rgba(219, 234, 254, 0.7);
}

.achievements-box {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-light);
  padding: 29px;
  margin-top: 32px;
}

.achievements-title {
  font-size: 16.8px;
  font-weight: 500;
  color: var(--color-primary);
  margin-bottom: 20px;
}

.achieve-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.achieve-list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 14.4px;
  line-height: 1.6;
}

.achieve-list li::before {
  content: '✓';
  color: #3b82f6;
  font-size: 16px;
  font-weight: 500;
  flex-shrink: 0;
  margin-top: 1px;
}

.achieve-list li strong { font-weight: 500; color: var(--color-primary); }
.achieve-list li span   { font-weight: 300; color: var(--color-muted-60); }

/* ── Key takeaways ── */
.takeaway-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 48px;
}

.takeaway-card {
  background: var(--surface-2);
  padding: 33px 33px 33px 36px;
}

.takeaway-card--blue    { border: 1px solid var(--border-light); border-left: 4px solid #3b82f6; }
.takeaway-card--purple  { border: 1px solid var(--border-light); border-left: 4px solid #7c3aed; }
.takeaway-card--magenta { border: 1px solid var(--border-light); border-left: 4px solid #a21caf; }
.takeaway-card--pink    { border: 1px solid var(--border-light); border-left: 4px solid #e60076; }

.takeaway-title {
  font-size: 16px;
  font-weight: 500;
  color: var(--color-primary);
  margin-bottom: 12px;
}

.takeaway-text {
  font-size: 14.08px;
  font-weight: 300;
  line-height: 1.8;
  color: var(--color-muted-60);
}

/* ── Case study footer ── */
.cs-footer-inner {
  max-width: var(--content-width);
  margin: 0 auto;
  padding: 49px var(--content-pad) 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.cs-footer-label {
  font-size: 10.4px;
  font-weight: 500;
  letter-spacing: 2.288px;
  text-transform: uppercase;
  color: rgba(144, 161, 185, 0.7);
}

.cs-footer-back {
  font-size: 10.4px;
  font-weight: 500;
  letter-spacing: 2.6px;
  text-transform: uppercase;
  color: rgba(245, 245, 240, 0.5);
  text-decoration: none;
  transition: color var(--transition);
}

.cs-footer-back:hover {
  color: var(--color-primary);
}

/* ============================================================
   FOOD NOT FOOD CLASSIFIER — page-specific components
   ============================================================ */

/* ── Hero pills row ── */
.hero-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 8px;
}

/* ── Hero example classification cards ── */
.hero-examples {
  display: flex;
  gap: 16px;
  margin-top: 40px;
}

.hero-example-card {
  background: var(--surface-2);
  border: 1px solid var(--border-light);
  padding: 20px 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.hero-example-input {
  font-size: 14.4px;
  font-weight: 300;
  font-style: italic;
  color: var(--color-muted-60);
  line-height: 1.5;
}

.hero-example-result {
  display: flex;
  align-items: center;
  gap: 12px;
}

.hero-example-label {
  font-size: 10.4px;
  font-weight: 500;
  letter-spacing: 2.08px;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 999px;
}

.hero-example-label--food {
  background: rgba(0, 130, 54, 0.15);
  border: 1px solid rgba(5, 223, 114, 0.2);
  color: #05df72;
}

.hero-example-label--notfood {
  background: rgba(20, 71, 230, 0.15);
  border: 1px solid rgba(142, 197, 255, 0.2);
  color: #8ec5ff;
}

.hero-example-score {
  font-size: 12px;
  font-weight: 300;
  letter-spacing: 1.2px;
  color: var(--color-muted);
}

/* ── Meta stats — 6-column stat bar ── */
.meta-stats {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  max-width: var(--content-width);
  margin: 0 auto;
  padding: 0 var(--content-pad);
  border: 1px solid rgba(255, 255, 255, 0.09);
  transform: translateY(-32px);
}

.meta-stat-cell {
  background: var(--surface-2);
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  border-right: 1px solid rgba(255, 255, 255, 0.06);
}

.meta-stat-cell:last-child {
  border-right: none;
}

.meta-stat-label {
  font-size: 10.4px;
  font-weight: 500;
  letter-spacing: 2.912px;
  text-transform: uppercase;
  color: var(--color-muted-45);
}

.meta-stat-value {
  font-size: 14.4px;
  font-weight: 500;
  line-height: 1.4;
  color: var(--color-primary);
}

/* ── Stack pipeline ── */
.stack-pipeline {
  display: flex;
  align-items: stretch;
  margin-top: 48px;
}

.stack-item {
  background: var(--surface-2);
  border: 1px solid var(--border-light);
  padding: 24px 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.stack-connector {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  flex-shrink: 0;
  color: var(--color-muted);
}

.stack-item-num {
  font-size: 9.6px;
  font-weight: 500;
  letter-spacing: 2.4px;
  text-transform: uppercase;
  color: var(--color-muted);
}

.stack-item-title {
  font-size: 14.4px;
  font-weight: 500;
  color: var(--color-primary);
  line-height: 1.4;
}

.stack-item-sub {
  font-size: 11.2px;
  font-weight: 300;
  letter-spacing: 0.4px;
  color: var(--color-muted-60);
}

/* ── Stat cards — large number display ── */
.stat-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 48px;
}

.stat-card {
  background: var(--surface-2);
  border: 1px solid var(--border-light);
  padding: 33px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.stat-card-value {
  font-size: 43.88px;
  font-weight: 300;
  letter-spacing: -0.4388px;
  line-height: 1;
  color: var(--color-primary);
}

.stat-card-label {
  font-size: 13.6px;
  font-weight: 300;
  line-height: 1.6;
  color: var(--color-muted-60);
}

/* ── FNF bullet list ── */
.fnf-bullet-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 32px;
}

.fnf-bullet-list li {
  font-size: 15.2px;
  font-weight: 300;
  line-height: 1.7;
  color: var(--color-muted-60);
}

/* ── Code snippet inline ── */
.code-snippet-box {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 32px;
  background: var(--surface-4);
  border: 1px solid var(--border-light);
  padding: 16px 20px;
}

.code-snippet-label {
  font-size: 10.4px;
  font-weight: 500;
  letter-spacing: 2.6px;
  text-transform: uppercase;
  color: var(--color-muted-45);
  flex-shrink: 0;
}

.code-snippet-value {
  font-family: 'Courier New', 'Consolas', monospace;
  font-size: 13.6px;
  color: #8ec5ff;
  letter-spacing: 0.3px;
}

/* ── Training tables ── */
.training-tables {
  display: flex;
  flex-direction: column;
  gap: 48px;
  margin-top: 48px;
}

.training-table-heading {
  font-size: 16px;
  font-weight: 500;
  color: var(--color-primary);
  margin-bottom: 16px;
}

.data-table {
  width: 100%;
  border-collapse: collapse;
}

.data-table th {
  font-size: 10.4px;
  font-weight: 500;
  letter-spacing: 2.6px;
  text-transform: uppercase;
  color: var(--color-muted-45);
  text-align: left;
  padding: 12px 16px;
  border-bottom: 1px solid var(--border-light);
}

.data-table td {
  font-size: 13.6px;
  font-weight: 300;
  color: var(--color-muted-60);
  padding: 12px 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.data-table tbody tr:last-child td {
  border-bottom: none;
}

.training-row--winner td {
  color: #05df72;
  background: rgba(0, 166, 62, 0.06);
}

.training-caption {
  font-size: 13.6px;
  font-weight: 300;
  line-height: 1.8;
  font-style: italic;
  color: var(--color-muted-60);
  margin-top: 20px;
}

/* ── Demo split cards ── */
.demo-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 48px;
}

.demo-card {
  background: var(--surface-2);
  border: 1px solid var(--border-light);
  padding: 33px;
}

.demo-card--live {
  background: linear-gradient(151.5deg, rgba(20, 50, 100, 0.4) 5.3%, rgba(20, 40, 90, 0.4) 94.7%);
  border: 1px solid rgba(190, 219, 255, 0.15);
  display: flex;
  flex-direction: column;
}

.demo-card-title {
  font-size: 17.6px;
  font-weight: 500;
  color: var(--color-primary);
  margin-bottom: 20px;
}

.demo-card-text {
  font-size: 14.4px;
  font-weight: 300;
  line-height: 1.8;
  color: var(--color-muted-60);
  margin-bottom: 24px;
  flex: 1;
}

.howit-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.howit-list li {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.howit-num {
  font-size: 9.6px;
  font-weight: 500;
  letter-spacing: 2.4px;
  color: #8ec5ff;
  flex-shrink: 0;
  padding-top: 3px;
}

.howit-text {
  font-size: 14.4px;
  font-weight: 300;
  line-height: 1.6;
  color: var(--color-muted-60);
}

.demo-link {
  font-size: 10.4px;
  font-weight: 500;
  letter-spacing: 3.12px;
  text-transform: uppercase;
  color: var(--color-primary);
  text-decoration: none;
  transition: opacity var(--transition);
  margin-top: auto;
}

.demo-link:hover {
  opacity: 0.7;
}

/* ── Code blocks ── */
.code-sections {
  display: flex;
  flex-direction: column;
  gap: 32px;
  margin-top: 48px;
}

.code-section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}

.code-section-title {
  font-size: 16px;
  font-weight: 500;
  color: var(--color-primary);
}

.code-section-suffix {
  font-weight: 300;
  color: var(--color-muted-60);
}

.code-lang-badge {
  font-size: 9.28px;
  font-weight: 500;
  letter-spacing: 2.32px;
  text-transform: uppercase;
  color: var(--color-muted-45);
  border: 1px solid var(--border-medium);
  padding: 3px 10px;
}

.code-block {
  background: var(--surface-4);
  border: 1px solid var(--border-light);
  padding: 24px;
  margin: 0;
  overflow-x: auto;
  font-family: 'Courier New', 'Consolas', monospace;
  font-size: 13.6px;
  line-height: 1.8;
  color: rgba(245, 245, 240, 0.75);
  white-space: pre;
}

.code-block code {
  color: inherit;
  font: inherit;
}

/* ── What I Learned rows ── */
.learn-rows {
  display: flex;
  flex-direction: column;
  margin-top: 48px;
}

.learn-row {
  display: flex;
  gap: 32px;
  align-items: flex-start;
  padding: 28px 0;
  border-top: 1px solid var(--border-subtle);
}

.learn-num {
  font-size: 9.6px;
  font-weight: 500;
  letter-spacing: 2.4px;
  text-transform: uppercase;
  color: var(--color-muted);
  flex-shrink: 0;
  padding-top: 3px;
  min-width: 28px;
}

.learn-title {
  font-size: 16px;
  font-weight: 500;
  color: var(--color-primary);
  margin-bottom: 8px;
}

.learn-text {
  font-size: 14.4px;
  font-weight: 300;
  line-height: 1.8;
  color: var(--color-muted-60);
}

/* ── FNF footer ── */
.fnf-footer-inner {
  max-width: var(--content-width);
  margin: 0 auto;
  padding: 49px var(--content-pad) 48px;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.fnf-footer-data {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
}

.fnf-footer-section-label {
  font-size: 10.4px;
  font-weight: 500;
  letter-spacing: 2.912px;
  text-transform: uppercase;
  color: var(--color-muted-45);
  margin-bottom: 16px;
}

.fnf-data-rows {
  display: flex;
  flex-direction: column;
}

.fnf-data-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  font-size: 13.6px;
  font-weight: 300;
  color: var(--color-muted-60);
}

.fnf-footer-link {
  font-size: 10.4px;
  font-weight: 500;
  letter-spacing: 2.6px;
  text-transform: uppercase;
  color: var(--color-muted);
  text-decoration: none;
  transition: color var(--transition);
}

.fnf-footer-link:hover {
  color: var(--color-primary);
}

.fnf-footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
