/* Three coordinated movements illustration — v35 */
.mechanism-visual-card {
  margin-top: 2rem;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(260px, 0.85fr);
  gap: 1.5rem;
  align-items: center;
  background: #ffffff;
  border: 1px solid rgba(13, 43, 82, 0.14);
  border-radius: 18px;
  padding: 1.25rem;
  box-shadow: 0 14px 28px rgba(7, 57, 86, 0.06);
}
.mechanism-visual-card img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 14px;
  background: #f7f9fc;
}
.mechanism-visual-copy h3 {
  margin: 0 0 0.6rem;
  color: #0d2b52;
  font-size: 1.35rem;
  line-height: 1.15;
}
.mechanism-visual-copy p {
  margin: 0 0 1rem;
}
.mechanism-legend {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.7rem;
}
.mechanism-legend li {
  display: grid;
  grid-template-columns: 14px 1fr;
  gap: 0.7rem;
  align-items: start;
}
.mechanism-legend-swatch {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  margin-top: 0.2rem;
}
.mechanism-legend strong {
  color: #0d2b52;
  display: block;
  margin-bottom: 0.15rem;
}
.mechanism-legend small {
  color: #4d5f73;
  display: block;
  line-height: 1.45;
}
.mechanism-legend-swatch.blue { background: #0d63c8; }
.mechanism-legend-swatch.green { background: #8b9c11; }
.mechanism-legend-swatch.red { background: #e72b35; }
.mechanism-visual-note {
  margin-top: 0.9rem;
  padding-top: 0.9rem;
  border-top: 1px solid rgba(13, 43, 82, 0.12);
  color: #5e7186;
  font-size: 0.92rem;
}
@media (max-width: 900px) {
  .mechanism-visual-card { grid-template-columns: 1fr; }
}
