/* ── Side-by-Side Layout ── */
@import url('layout-classic.css');

.tbm-side {
  display: grid;
  grid-template-columns: 280px 1fr;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0,0,0,.12);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

.tbm-side__left {
  background: var(--tbm-color, #1a1a2e);
  color: #fff;
  padding: 36px 28px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.tbm-side__title { font-size: 24px; font-weight: 700; margin: 0 0 10px; color: #fff; }
.tbm-side__subtitle { font-size: 14px; color: rgba(255,255,255,.75); margin: 0 0 28px; line-height: 1.5; }
.tbm-side__features { list-style: none; padding: 0; margin: 0; }
.tbm-side__features li {
  font-size: 13px;
  color: rgba(255,255,255,.85);
  padding: 8px 0;
  border-bottom: 1px solid rgba(255,255,255,.1);
  line-height: 1.4;
}
.tbm-side__features li:last-child { border-bottom: none; }

.tbm-side__right {
  background: #fff;
  padding: 32px 28px;
}

.tbm-divider {
  height: 1px;
  background: #eee;
  margin: 16px 0;
}

/* Override button to be full-width */
.tbm-side .tbm-btn-submit {
  width: 100%;
  padding: 13px;
  font-size: 15px;
  margin-top: 8px;
}

@media (max-width: 700px) {
  .tbm-side { grid-template-columns: 1fr; }
  .tbm-side__left { padding: 24px; }
}
