/* Round 3.16: prioritized market architecture */
.market-selective-fit {
  margin-top: 28px;
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  padding: 22px 24px;
  border: 1px solid rgba(17, 17, 15, .18);
  background: rgba(255, 255, 255, .46);
}
.market-selective-fit > span {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .15em;
}
.market-selective-fit p {
  margin: 0;
  max-width: 760px;
  line-height: 1.55;
}
.market-selective-fit a {
  color: inherit;
  font-size: 13px;
  font-weight: 800;
  text-decoration: none;
  white-space: nowrap;
}
.market-selective-fit a b { color: var(--orange, #f15a2b); }
.market-selective-fit--dark {
  background: #171715;
  color: #f5f1e8;
  border-color: rgba(255,255,255,.16);
}
@media (max-width: 860px) {
  .market-selective-fit {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .market-selective-fit a { white-space: normal; }
}
