/* css/otzivi.css */

/* ─── ОСНОВНОЙ LAYOUT ─── */
.otv-layout {
  background: var(--surface);
  padding: 40px 0 40px;
}

.otv-card {
  background: var(--white);
  border-radius: var(--r-lg);
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  overflow: hidden;
  align-items: start;
}

/* ─── ЛЕВАЯ КОЛОНКА: ТЕКСТ ─── */
.otv-body {
  padding: 52px 48px 52px 56px;
  display: flex;
  flex-direction: column;
}

.otv-title {
  font-size: clamp(24px, 2.8vw, 36px);
  font-weight: 800;
  line-height: 1.15;
  color: var(--ink);
  margin-bottom: 20px;
}

.otv-text {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 12px;
}

.otv-body .btn {
  margin-top: 28px;
  align-self: flex-start;
}

/* ─── ПРАВАЯ КОЛОНКА: ВИДЖЕТ ─── */
.otv-widget-col {
  border-left: 1px solid var(--border);
}

.otv-widget-frame {
  display: block;
  width: 100%;
  height: 700px;
  border: none;
}

/* ─── АДАПТИВ ─── */
@media (max-width: 900px) {
  .otv-card          { grid-template-columns: 1fr; }
  .otv-body          { padding: 36px 32px; }
  .otv-body .btn     { width: 100%; text-align: center; }
  .otv-widget-col    { border-left: none; border-top: 1px solid var(--border); }
  .otv-widget-frame  { height: 580px; }
}

@media (max-width: 560px) {
  .otv-body          { padding: 28px 24px; }
  .otv-widget-frame  { height: 500px; }
}
