.belgian-lesson {
  display: grid;
  gap: 18px;
}

.belgian-lesson .rule-tile strong {
  color: var(--accent-strong);
}

.comparison-panel,
.day-panel,
.phrase-panel,
.sms-panel {
  display: grid;
  gap: 12px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fffdf8;
}

.comparison-panel,
.day-panel {
  background: #eef8f8;
  border-color: rgba(46, 111, 122, .28);
}

.comparison-panel h2,
.day-panel h2,
.phrase-panel h2,
.sms-panel h2 {
  margin: 0;
  color: var(--accent-strong);
  font-size: 22px;
}

.comparison-panel p,
.day-panel p {
  margin: 0;
  color: var(--muted);
  font-weight: 700;
  line-height: 1.4;
}

.comparison-grid,
.vocab-grid,
.meal-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 10px;
}

.comparison-card,
.vocab-card,
.meal-card {
  display: grid;
  gap: 5px;
  padding: 11px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  color: var(--ink);
}

.comparison-card strong,
.vocab-card strong,
.meal-card strong {
  color: var(--accent-strong);
  font-size: 18px;
  line-height: 1.25;
}

.comparison-card span,
.vocab-card span,
.meal-card span {
  color: var(--ink);
  font-weight: 800;
  line-height: 1.35;
}

.comparison-card small,
.vocab-card small {
  color: var(--muted);
  font-weight: 700;
  line-height: 1.35;
}

.card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.ru-line,
.sms-bubble small {
  display: none;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.35;
}

.show-ru > .ru-line,
.show-ru > small,
.sms-bubble.show-ru small {
  display: block;
}

.practice-scene {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, .85fr);
  gap: 14px;
  align-items: start;
}

.phrase-list,
.exercise-list {
  display: grid;
  gap: 8px;
}

.phrase-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto;
  gap: 8px;
  align-items: center;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.phrase-row.is-speaking {
  border-color: rgba(176, 118, 36, .55);
  background: #fff8e6;
}

.phrase-row strong {
  color: var(--ink);
  line-height: 1.35;
}

.phrase-row span {
  display: none;
  margin-top: 4px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.35;
}

.phrase-row.show-ru span {
  display: block;
}

.phone-thread {
  display: grid;
  gap: 8px;
  padding: 12px;
  border: 1px solid rgba(46, 111, 122, .22);
  border-radius: 8px;
  background: #f7f1e7;
}

.sms-bubble {
  display: grid;
  gap: 6px;
  max-width: 88%;
  padding: 9px 10px;
  border-radius: 8px;
  background: #fff;
  color: var(--ink);
  font-weight: 800;
  line-height: 1.35;
}

.sms-tools {
  display: flex;
  gap: 6px;
  justify-content: flex-end;
}

.sms-bubble.out {
  justify-self: end;
  background: #e3f2ec;
}

.sms-bubble.is-speaking {
  border-color: rgba(176, 118, 36, .55);
  background: #fff8e6;
}

.mini-button {
  min-width: 42px;
  height: 38px;
  border: 0;
  border-radius: 8px;
  background: var(--green);
  color: #fff;
  font: inherit;
  font-weight: 900;
  cursor: pointer;
}

.mini-button.secondary {
  background: #706451;
}

.mini-button.is-speaking,
.action-link.is-speaking {
  background: #9a4852;
  color: #fff;
}

.exercise-card {
  display: grid;
  gap: 8px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fffdf8;
}

.exercise-card.is-correct {
  border-color: rgba(85, 120, 90, .7);
  background: #f1f8ef;
}

.exercise-card.is-wrong {
  border-color: rgba(154, 72, 82, .6);
  background: #fff1f2;
}

.exercise-line {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  color: var(--ink);
  font-size: 18px;
  font-weight: 900;
}

.exercise-line select {
  min-height: 40px;
  padding: 6px 9px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  color: var(--ink);
  font: inherit;
  font-weight: 800;
}

.feedback-line {
  min-height: 20px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.35;
}

@media (max-width: 760px) {
  .practice-scene {
    grid-template-columns: 1fr;
  }
}
