/* Grunddesign und Farbvariablen */
:root {
  --bg: #f5f7fb;
  --surface: #ffffff;
  --surface-soft: #eef4f1;
  --text: #18202f;
  --muted: #667085;
  --line: #d8dee9;
  --primary: #256f5c;
  --primary-dark: #155142;
  --accent: #c77233;
  --accent-soft: #fff2e9;
  --success: #1f8a5b;
  --danger: #b42318;
  --shadow: 0 16px 42px rgba(24, 32, 47, 0.09);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--bg);
  color: var(--text);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.6;
}

button,
input,
select,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

code,
pre {
  font-family: Consolas, "Courier New", monospace;
}

pre {
  margin: 16px 0 0;
  overflow-x: auto;
  max-width: 100%;
  background: #151a24;
  color: #edf2ff;
  border-radius: var(--radius);
  padding: 18px;
  line-height: 1.5;
  border: 1px solid #273041;
}

code {
  font-size: 0.94rem;
}

pre code {
  display: block;
  white-space: pre-wrap;
  overflow-wrap: anywhere;
}

a {
  color: inherit;
}

.app-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: grid;
  gap: 16px;
  padding: 18px clamp(16px, 4vw, 48px);
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(12px);
}

.header-top {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  flex: 0 0 auto;
  border-radius: var(--radius);
  background: var(--primary);
  color: #ffffff;
  font-weight: 800;
}

.brand h1 {
  margin: 0;
  font-size: clamp(1.15rem, 2vw, 1.6rem);
  line-height: 1.2;
}

.eyebrow {
  margin: 0 0 4px;
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.header-menu {
  display: grid;
  gap: 16px;
}

.header-pages summary,
.header-sections summary {
  cursor: pointer;
  color: var(--primary-dark);
  font-weight: 900;
}

.header-pages summary {
  display: none;
}

.main-nav {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding-bottom: 2px;
}

.nav-link {
  flex: 0 0 auto;
  min-height: 42px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #ffffff;
  color: var(--text);
  padding: 8px 13px;
  font-weight: 700;
}

.nav-link.active,
.nav-link:hover {
  border-color: var(--primary);
  background: var(--primary);
  color: #ffffff;
}

.mobile-menu-btn,
.toc-menu-button {
  position: relative;
  display: none;
  align-items: center;
  gap: 8px;
  min-height: 42px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #ffffff;
  color: var(--primary-dark);
  padding: 8px 12px 8px 38px;
  font-weight: 900;
}

.mobile-menu-btn span,
.toc-menu-button span {
  position: absolute;
  left: 13px;
  display: block;
  width: 16px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
}

.mobile-menu-btn span:nth-child(1),
.toc-menu-button span:nth-child(1) {
  top: 13px;
}

.mobile-menu-btn span:nth-child(2),
.toc-menu-button span:nth-child(2) {
  top: 20px;
}

.mobile-menu-btn span:nth-child(3),
.toc-menu-button span:nth-child(3) {
  top: 27px;
}

.mobile-menu-btn.active,
.toc-menu-button.active {
  border-color: var(--primary);
  background: var(--primary);
  color: #ffffff;
}

.lesson-search {
  display: grid;
  gap: 6px;
  max-width: 720px;
}

.lesson-search label {
  color: var(--primary-dark);
  font-size: 0.9rem;
  font-weight: 800;
}

.search-row {
  display: grid;
  grid-template-columns: minmax(180px, 1fr) auto;
  gap: 8px;
}

.lesson-search input {
  min-height: 42px;
}

.lesson-search .ghost-btn {
  min-height: 42px;
  white-space: nowrap;
}

.lesson-search p {
  margin: 0;
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 700;
}

.header-sections {
  display: none;
}

.header-section-grid {
  display: grid;
  gap: 8px;
  margin-top: 10px;
}

.header-section-grid button {
  min-height: 38px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #ffffff;
  color: var(--text);
  padding: 7px 10px;
  text-align: left;
  font-weight: 800;
}

.header-section-grid button.active,
.header-section-grid button:hover {
  border-color: var(--primary);
  background: var(--primary);
  color: #ffffff;
}

main {
  width: min(1760px, calc(100% - 84px));
  margin: 0 auto;
  padding: 32px 0 48px;
}

.page {
  display: none;
}

.page.active {
  display: block;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.86fr);
  gap: 24px;
  align-items: stretch;
}

.hero-copy,
.progress-panel,
.lesson-block,
.exercise-card,
.exam-task,
.result-panel,
.topic-card,
.info-card {
  min-width: 0;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.hero-copy {
  display: grid;
  align-content: center;
  min-height: 340px;
  padding: clamp(24px, 4vw, 42px);
}

.hero-copy h2,
.section-heading h2 {
  margin: 0;
  font-size: clamp(2rem, 5vw, 3.7rem);
  line-height: 1.05;
  letter-spacing: 0;
}

.hero-copy p:not(.eyebrow),
.section-heading p:not(.eyebrow) {
  max-width: 760px;
  margin: 18px 0 0;
  color: var(--muted);
}

.hero-actions,
.exam-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.primary-btn,
.secondary-btn,
.ghost-btn {
  min-height: 42px;
  border-radius: var(--radius);
  padding: 9px 15px;
  font-weight: 800;
  border: 1px solid transparent;
}

.primary-btn {
  background: var(--primary);
  color: #ffffff;
}

.primary-btn:hover {
  background: var(--primary-dark);
}

.secondary-btn {
  background: var(--accent-soft);
  color: #6f3818;
  border-color: #efc8ab;
}

.secondary-btn:hover {
  background: #ffe5d1;
}

.ghost-btn {
  background: #ffffff;
  color: var(--primary-dark);
  border-color: var(--line);
}

.ghost-btn:hover {
  border-color: var(--primary);
}

.image-frame {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 280px;
  margin: 0;
  border: 1px dashed #a7b1c2;
  border-radius: var(--radius);
  background: linear-gradient(135deg, #ffffff, #eaf2ef);
  overflow: hidden;
}

.image-frame img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 280px;
  object-fit: cover;
}

.image-frame.missing img {
  display: none;
}

.image-placeholder {
  display: none;
  padding: 28px;
  color: var(--muted);
  font-weight: 800;
  text-align: center;
}

.image-frame.missing .image-placeholder {
  display: block;
}

.progress-panel {
  display: grid;
  grid-template-columns: 1fr minmax(240px, 420px);
  gap: 20px;
  align-items: center;
  margin-top: 24px;
  padding: 22px;
}

.progress-panel h3,
.section-heading h2,
.lesson-block h3,
.exercise-card h3,
.exam-task h3,
.result-panel h3 {
  margin-top: 0;
}

.progress-wrap {
  display: grid;
  gap: 8px;
  font-weight: 800;
}

.progress-track {
  width: 100%;
  height: 12px;
  background: #e5e9f0;
  border-radius: 999px;
  overflow: hidden;
}

.progress-bar {
  width: 0%;
  height: 100%;
  background: var(--primary);
  transition: width 0.25s ease;
}

.overview-grid,
.training-grid,
.semantic-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.overview-grid {
  margin-top: 24px;
}

.topic-card {
  padding: 20px;
}

.topic-card span,
.score-pill,
.task-title span {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  border-radius: 999px;
  background: var(--surface-soft);
  color: var(--primary-dark);
  padding: 3px 10px;
  font-weight: 800;
  font-size: 0.86rem;
}

.topic-card h3 {
  margin: 16px 0 6px;
}

.topic-card p,
.info-card p,
.lesson-block p,
.exercise-card p,
.exam-task p {
  color: var(--muted);
}

.section-heading {
  margin-bottom: 24px;
}

[data-lesson-section] {
  scroll-margin-top: 190px;
}

.lesson-toc {
  margin-bottom: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow);
  padding: 16px;
}

.toc-menu-button {
  margin-bottom: 10px;
}

.lesson-toc summary {
  cursor: pointer;
  color: var(--primary-dark);
  font-size: 1.05rem;
  font-weight: 900;
}

.lesson-toc p {
  margin: 12px 0;
  color: var(--muted);
  font-weight: 800;
}

.lesson-toc-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 8px;
}

.lesson-toc-grid button {
  min-height: 40px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #ffffff;
  color: var(--text);
  padding: 8px 11px;
  text-align: left;
  font-weight: 800;
}

.lesson-toc-grid button.active,
.lesson-toc-grid button:hover {
  border-color: var(--primary);
  background: var(--primary);
  color: #ffffff;
}

.lesson-block.search-match {
  border-color: var(--accent);
  box-shadow: 0 0 0 4px rgba(199, 114, 51, 0.16), var(--shadow);
}

.lesson-block.search-muted {
  opacity: 0.48;
}

mark.search-hit {
  border-radius: 4px;
  background: #ffe08a;
  color: #2d2412;
  padding: 0 2px;
}

.lesson-block,
.exercise-card,
.exam-task {
  margin-bottom: 18px;
  padding: clamp(18px, 3vw, 28px);
}

.three-col,
.compare-grid,
.code-pair,
.lesson-columns,
.requirements,
.short-answer-grid {
  display: grid;
  gap: 16px;
}

.three-col {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.compare-grid,
.code-pair,
.lesson-columns,
.requirements {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.info-card {
  padding: 18px;
  box-shadow: none;
}

.info-card h4,
.info-card h5 {
  margin: 0 0 8px;
}

.info-card h5 {
  margin-top: 16px;
  color: var(--primary-dark);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(240px, 320px);
  gap: 16px;
}

.memory-box {
  align-self: stretch;
  display: grid;
  align-content: center;
  border-radius: var(--radius);
  border: 1px solid #efc8ab;
  background: var(--accent-soft);
  padding: 20px;
}

.memory-box strong {
  color: #6f3818;
}

.lesson-note {
  align-content: start;
  gap: 10px;
  margin-top: 16px;
}

.lesson-note p {
  margin: 0;
}

.lesson-note pre {
  margin-top: 4px;
}

.lesson-block > .code-pair,
.lesson-block > .three-col,
.lesson-block > .semantic-grid {
  margin-top: 16px;
}

.table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

table {
  width: 100%;
  border-collapse: collapse;
  background: #ffffff;
}

th,
td {
  padding: 13px 14px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

th {
  background: var(--surface-soft);
  color: var(--primary-dark);
}

tr:last-child td {
  border-bottom: 0;
}

.semantic-grid div {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #ffffff;
  padding: 14px;
}

.semantic-visual {
  display: grid;
  grid-template-columns: minmax(240px, 0.75fr) minmax(320px, 1fr);
  gap: 18px;
  margin-top: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fbfcff;
  padding: 18px;
}

.semantic-visual h4 {
  margin: 0 0 12px;
}

.segment-control {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.segment-control button {
  min-height: 38px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #ffffff;
  color: var(--text);
  padding: 7px 11px;
  font-weight: 800;
}

.segment-control button.active,
.segment-control button:hover {
  border-color: var(--primary);
  background: var(--primary);
  color: #ffffff;
}

.semantic-description,
.playground-explain {
  margin: 14px 0 0;
  border-left: 4px solid var(--accent);
  border-radius: 0 var(--radius) var(--radius) 0;
  background: var(--accent-soft);
  padding: 12px 14px;
  color: #6f3818;
  font-weight: 700;
}

.page-wireframe {
  display: grid;
  gap: 10px;
  min-height: 360px;
  border: 1px dashed #a7b1c2;
  border-radius: var(--radius);
  background: #ffffff;
  padding: 14px;
}

.wire-block {
  display: grid;
  gap: 6px;
  border: 2px solid #c8d0dc;
  border-radius: var(--radius);
  background: #f3f6fa;
  padding: 12px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.wire-block strong {
  color: var(--primary-dark);
  font-family: Consolas, "Courier New", monospace;
}

.wire-block span {
  color: var(--muted);
  font-size: 0.92rem;
}

.wire-block.active {
  border-color: var(--accent);
  background: #fff8f2;
  box-shadow: 0 0 0 4px rgba(199, 114, 51, 0.16);
}

.wire-header {
  align-content: start;
}

.wire-main {
  min-height: 180px;
}

.wire-main-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(150px, 0.45fr);
  gap: 10px;
  align-items: stretch;
}

.wire-section {
  min-height: 70px;
  background: #ffffff;
}

.wire-article {
  background: var(--surface-soft);
}

.wire-aside {
  background: #fff6df;
}

.wire-form {
  min-height: 80px;
  background: #ffffff;
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 16px 0;
}

.tag-list code,
td code {
  display: inline-block;
  max-width: 100%;
  border-radius: 6px;
  background: #eef1f6;
  color: #293246;
  padding: 3px 7px;
  overflow-wrap: anywhere;
}

.playground-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 18px;
}

.playground-card {
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fbfcff;
  padding: 18px;
}

.playground-card.wide {
  grid-column: 1 / -1;
}

.playground-card h4 {
  margin: 0 0 12px;
}

.control-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.type-controls {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.control-grid label {
  display: grid;
  gap: 6px;
  color: var(--muted);
  font-weight: 700;
}

.playground-explain {
  min-height: 76px;
}

.live-preview {
  min-height: 190px;
  margin-top: 16px;
  border: 1px dashed #a7b1c2;
  border-radius: var(--radius);
  background: #ffffff;
  padding: 16px;
}

.flex-preview {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: stretch;
  gap: 20px;
}

.grid-preview {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.live-preview span {
  display: grid;
  place-items: center;
  min-width: 64px;
  min-height: 54px;
  border-radius: var(--radius);
  background: var(--primary);
  color: #ffffff;
  font-weight: 900;
}

.grid-preview span:nth-child(even),
.flex-preview span:nth-child(even) {
  background: var(--accent);
}

.type-preview {
  margin: 16px 0 0;
  border: 1px dashed #a7b1c2;
  border-radius: var(--radius);
  background: #ffffff;
  padding: 18px;
  color: var(--primary);
}

.checklist-progress {
  display: grid;
  gap: 8px;
  margin: 16px 0;
}

.checklist-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.checklist-grid label {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 10px;
  align-items: start;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #ffffff;
  padding: 12px;
}

.checklist-grid label.done {
  border-color: rgba(31, 138, 91, 0.55);
  background: #eefaf4;
}

.training-grid {
  align-items: start;
}

.card-topline,
.task-title,
.exam-status {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
}

.choice-list,
.match-list,
.code-form,
.exam-form {
  display: grid;
  gap: 12px;
}

.choice-list label,
.match-row,
.code-form label,
.self-check,
.short-answer-grid label {
  display: grid;
  gap: 6px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #ffffff;
  padding: 12px;
}

.choice-list label {
  grid-template-columns: auto 1fr;
  align-items: center;
}

.match-row {
  grid-template-columns: 1fr minmax(150px, 220px);
  align-items: center;
}

.match-row.correct,
.choice-list label.correct,
.short-answer-grid label.correct {
  border-color: rgba(31, 138, 91, 0.55);
  background: #eefaf4;
}

.match-row.wrong,
.choice-list label.wrong,
.short-answer-grid label.wrong {
  border-color: rgba(180, 35, 24, 0.45);
  background: #fff0ee;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid #bcc6d6;
  border-radius: var(--radius);
  background: #ffffff;
  color: var(--text);
  padding: 10px 11px;
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  outline: 3px solid rgba(37, 111, 92, 0.18);
  border-color: var(--primary);
}

input.correct {
  border-color: rgba(31, 138, 91, 0.75);
  background: #eefaf4;
}

input.wrong {
  border-color: rgba(180, 35, 24, 0.65);
  background: #fff0ee;
}

.feedback {
  min-height: 24px;
  margin-bottom: 0;
  font-weight: 800;
}

.feedback.good {
  color: var(--success);
}

.feedback.bad {
  color: var(--danger);
}

.hidden {
  display: none;
}

.solution {
  margin-top: 14px;
}

div.solution {
  border: 1px solid #efc8ab;
  border-radius: var(--radius);
  background: var(--accent-soft);
  padding: 16px;
}

.exam-status {
  margin-bottom: 18px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #ffffff;
}

.exam-status > div {
  flex: 1;
}

.task-title {
  margin-bottom: 12px;
}

.task-title h3 {
  margin-bottom: 0;
}

.requirements {
  margin: 12px 0;
}

.requirements div {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 14px;
  background: #fbfcff;
}

.short-answer-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.result-panel {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  gap: 24px;
  align-items: center;
  padding: clamp(20px, 4vw, 34px);
}

.result-circle {
  display: grid;
  place-items: center;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  border: 12px solid var(--primary);
  background: #ffffff;
  text-align: center;
}

.result-circle span {
  display: block;
  font-size: 2.4rem;
  font-weight: 900;
  line-height: 1;
}

.result-circle small {
  color: var(--muted);
  font-weight: 800;
}

.detail-results {
  display: grid;
  gap: 10px;
  margin-top: 18px;
}

.detail-row {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #ffffff;
  padding: 13px 15px;
}

.footer {
  border-top: 1px solid var(--line);
  padding: 20px;
  color: var(--muted);
  text-align: center;
}

@media (max-width: 960px) {
  .hero-grid,
  .progress-panel,
  .three-col,
  .split,
  .overview-grid,
  .training-grid,
  .semantic-grid {
    grid-template-columns: 1fr 1fr;
  }

  .hero-grid,
  .progress-panel,
  .split,
  .result-panel,
  .playground-grid,
  .semantic-visual {
    grid-template-columns: 1fr;
  }

  .playground-card.wide {
    grid-column: auto;
  }

  .type-controls {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .result-circle {
    width: 160px;
    height: 160px;
  }
}

@media (max-width: 680px) {
  main {
    width: min(100% - 20px, 1440px);
    padding-top: 20px;
  }

  .app-header {
    padding: 14px 10px;
    gap: 10px;
  }

  .mobile-menu-btn,
  .toc-menu-button {
    display: inline-flex;
  }

  .mobile-menu-btn {
    flex: 0 0 auto;
  }

  .header-menu {
    display: none;
    gap: 12px;
    max-height: calc(100dvh - 124px);
    overflow-y: auto;
    overscroll-behavior: contain;
    border-top: 1px solid var(--line);
    padding-top: 12px;
    padding-right: 4px;
  }

  .header-menu.open {
    display: grid;
  }

  .header-pages,
  .header-sections {
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #fbfcff;
    padding: 12px;
  }

  .header-pages summary,
  .header-sections summary {
    display: list-item;
    min-height: 34px;
  }

  .main-nav {
    display: grid;
    gap: 8px;
    margin-top: 10px;
    overflow-x: visible;
    padding-bottom: 0;
  }

  .nav-link {
    width: 100%;
    text-align: left;
  }

  .lesson-search {
    max-width: none;
  }

  .header-sections {
    display: block;
  }

  .toc-menu-button {
    width: 100%;
    justify-content: center;
  }

  .lesson-toc:not([open]) {
    display: none;
  }

  [data-lesson-section] {
    scroll-margin-top: 104px;
  }

  .search-row {
    grid-template-columns: 1fr;
  }

  .brand {
    align-items: flex-start;
  }

  .brand-mark {
    width: 42px;
    height: 42px;
  }

  .hero-grid,
  .progress-panel,
  .three-col,
  .compare-grid,
  .code-pair,
  .lesson-columns,
  .overview-grid,
  .training-grid,
  .semantic-grid,
  .semantic-visual,
  .requirements,
  .short-answer-grid,
  .match-row,
  .control-grid,
  .type-controls,
  .checklist-grid {
    grid-template-columns: 1fr;
  }

  .wire-main-layout {
    grid-template-columns: minmax(0, 1fr) minmax(104px, 0.48fr);
    gap: 8px;
  }

  .hero-copy {
    min-height: auto;
  }

  .hero-copy h2,
  .section-heading h2 {
    font-size: 2rem;
  }

  .card-topline,
  .task-title,
  .exam-status,
  .detail-row {
    align-items: flex-start;
    flex-direction: column;
  }

  .primary-btn,
  .secondary-btn,
  .ghost-btn {
    width: 100%;
  }
}
