/* ── Ser un BYTAL ───────────────────────────────────────────────────────── */

.bytals {
  background: var(--bg);
  border-top: 1px solid var(--border);
}

.bytals__laws {
  margin-top: 3.5rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.bytal-law {
  display: flex;
  align-items: stretch;
  border-bottom: 1px solid var(--border);
  transition: background var(--transition-base);
}

.bytal-law:last-child {
  border-bottom: none;
}

.bytal-law:hover {
  background: var(--bg-2);
}

.bytal-law__roman {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 72px;
  padding: 0 1rem;
  border-right: 1px solid var(--border);
  font-family: var(--font-display);
  font-size: 13px;
  letter-spacing: 3px;
  color: var(--text-muted);
  flex-shrink: 0;
}

.bytal-law__body {
  display: flex;
  align-items: center;
  gap: 2rem;
  padding: 1.75rem 2rem;
  flex: 1;
}

.bytal-law__verb {
  font-family: var(--font-display);
  font-size: clamp(24px, 3.5vw, 36px);
  letter-spacing: 2px;
  color: var(--lime);
  line-height: 1;
  min-width: 220px;
}

.bytal-law__desc {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.65;
}

@media (max-width: 640px) {
  .bytal-law__body {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.35rem;
    padding: 1.25rem 1.25rem;
  }

  .bytal-law__verb {
    min-width: unset;
    font-size: 28px;
  }

  .bytal-law__roman {
    min-width: 52px;
    font-size: 11px;
  }
}
