/* Currency vein — centered FX strip (matches clean desk-marketing layout) */
.cnh-fx-vein {
  width: 100%;
  max-width: none;
  margin: 12px 0 48px;
  padding: 0;
}

.cnh-fx-vein__inner {
  position: relative;
  max-width: none;
  margin: 0;
  padding: clamp(56px, 8vw, 96px) clamp(20px, 5vw, 48px) clamp(48px, 7vw, 80px);
  border-radius: 0;
  border: none;
  border-top: 1px solid rgba(196, 181, 253, 0.12);
  border-bottom: 1px solid rgba(196, 181, 253, 0.12);
  background: #1a0f32;
  text-align: center;
  overflow: hidden;
}

.cnh-fx-vein__eyebrow {
  margin: 0 0 20px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #67e8f9;
}

.cnh-fx-vein__title {
  margin: 0 auto 22px;
  max-width: 18em;
  font-size: clamp(1.75rem, 4.2vw, 2.75rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.15;
  color: #ffffff;
}

.cnh-fx-vein__lead {
  margin: 0 auto 40px;
  max-width: 42em;
  font-size: clamp(0.95rem, 1.6vw, 1.08rem);
  line-height: 1.7;
  color: #a5b4c8;
}

.cnh-fx-vein__pairs-label {
  margin: 0 0 18px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #7c7a9a;
}

.cnh-fx-vein__pairs {
  list-style: none;
  margin: 0 auto;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 12px;
  max-width: 920px;
}

.cnh-fx-vein__pairs li {
  padding: 10px 16px;
  border-radius: 10px;
  font-size: 0.84rem;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.03em;
  color: #f8fafc;
  background: #24183f;
  border: 1px solid #3a2f55;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.cnh-fx-vein__pairs li:hover {
  border-color: rgba(103, 232, 249, 0.45);
  background: #2c1f4c;
}

@media (max-width: 560px) {
  .cnh-fx-vein__inner {
    padding: 48px 16px 44px;
  }

  .cnh-fx-vein__title {
    max-width: none;
  }

  .cnh-fx-vein__pairs {
    gap: 8px;
  }

  .cnh-fx-vein__pairs li {
    padding: 8px 12px;
    font-size: 0.78rem;
  }
}
