.inner {
  max-width: 860px;
  margin: 0 auto;
  padding: 5rem 4rem;
}

.ml-wrap {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-top: 2rem;
}

.ml-block {
  background: var(--card);
  border: 1px solid var(--border2);
  border-radius: 10px;
  padding: 1.5rem 1.8rem;
  border-left: 3px solid var(--indigo);
}

.ml-block__title {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 1rem;
  padding-bottom: 0.6rem;
  border-bottom: 1px solid var(--border);
}

.ml-rows {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.ml-row {
  display: flex;
  gap: 1.5rem;
  align-items: baseline;
}

.ml-key {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  min-width: 110px;
  flex-shrink: 0;
}

.ml-val {
  font-size: 0.82rem;
  color: var(--text-2);
}

.ml-val a {
  color: var(--indigo);
  text-decoration: none;
}
.ml-val a:hover { text-decoration: underline; }

.ml-text {
  font-size: 0.78rem;
  color: var(--text-2);
  line-height: 1.75;
  margin-bottom: 0.75rem;
}
.ml-text:last-child { margin-bottom: 0; }

.ml-text code {
  font-family: 'Courier New', monospace;
  font-size: 0.75rem;
  background: rgba(255,255,255,0.06);
  padding: 0.1rem 0.4rem;
  border-radius: 3px;
  color: var(--indigo);
}

@media (max-width: 700px) {
  .inner { padding: 3rem 2rem; }
  .ml-row { flex-direction: column; gap: 0.2rem; }
  .ml-key { min-width: unset; }
}