.open-source-detail-page {
  --detail-accent: #215eff;
  --detail-accent-strong: #1248d8;
  --detail-accent-soft: rgba(33, 94, 255, 0.12);
  --detail-accent-soft-2: rgba(33, 94, 255, 0.08);
  --detail-accent-rgb: 33, 94, 255;
  --detail-hero-glow: rgba(103, 151, 255, 0.22);
  --detail-text: #141b2b;
  --detail-text-soft: #4d5668;
  --detail-card: rgba(255, 255, 255, 0.96);
  --detail-border: rgba(223, 231, 243, 0.92);
  background:
    radial-gradient(circle at 10% 2%, rgba(123, 173, 255, 0.2), transparent 28%),
    radial-gradient(circle at 88% 12%, rgba(110, 159, 255, 0.16), transparent 24%),
    linear-gradient(180deg, #f7faff 0%, #ffffff 22%, #ffffff 100%);
}

.open-source-detail-page.project-json {
  --detail-accent: #1e74ff;
  --detail-accent-strong: #0f56d9;
  --detail-accent-soft: rgba(30, 116, 255, 0.13);
  --detail-accent-soft-2: rgba(30, 116, 255, 0.08);
  --detail-accent-rgb: 30, 116, 255;
  --detail-hero-glow: rgba(61, 132, 255, 0.24);
}

.open-source-detail-page.project-markdown {
  --detail-accent: #5a5dff;
  --detail-accent-strong: #4748df;
  --detail-accent-soft: rgba(90, 93, 255, 0.13);
  --detail-accent-soft-2: rgba(90, 93, 255, 0.08);
  --detail-accent-rgb: 90, 93, 255;
  --detail-hero-glow: rgba(112, 108, 255, 0.24);
}

.open-source-detail-page.project-ppt {
  --detail-accent: #5c63ff;
  --detail-accent-strong: #4348dc;
  --detail-accent-soft: rgba(92, 99, 255, 0.13);
  --detail-accent-soft-2: rgba(92, 99, 255, 0.08);
  --detail-accent-rgb: 92, 99, 255;
  --detail-hero-glow: rgba(110, 118, 255, 0.24);
}

.open-source-detail-page.project-trading {
  --detail-accent: #ff8f1f;
  --detail-accent-strong: #f27200;
  --detail-accent-soft: rgba(255, 143, 31, 0.14);
  --detail-accent-soft-2: rgba(255, 143, 31, 0.08);
  --detail-accent-rgb: 255, 143, 31;
  --detail-hero-glow: rgba(255, 163, 72, 0.24);
}

.open-source-detail-page.project-card {
  --detail-accent: #20b7d9;
  --detail-accent-strong: #1499bb;
  --detail-accent-soft: rgba(32, 183, 217, 0.14);
  --detail-accent-soft-2: rgba(32, 183, 217, 0.08);
  --detail-accent-rgb: 32, 183, 217;
  --detail-hero-glow: rgba(84, 204, 229, 0.24);
}

.open-source-detail-page.project-leadhunter {
  --detail-accent: #ef5a82;
  --detail-accent-strong: #db3c66;
  --detail-accent-soft: rgba(239, 90, 130, 0.14);
  --detail-accent-soft-2: rgba(239, 90, 130, 0.08);
  --detail-accent-rgb: 239, 90, 130;
  --detail-hero-glow: rgba(245, 120, 157, 0.24);
}

.open-source-detail-page .container {
  width: min(1240px, calc(100% - 64px));
}

.open-source-detail-page main {
  overflow: hidden;
}

.detail-hero {
  position: relative;
  padding: 36px 0 20px;
}

.detail-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 15% 0%, rgba(var(--detail-accent-rgb), 0.12), transparent 30%),
    radial-gradient(circle at 85% 12%, rgba(var(--detail-accent-rgb), 0.08), transparent 24%);
  pointer-events: none;
}

.detail-hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.92fr);
  gap: 34px;
  align-items: center;
}

.detail-hero__inner > div:first-child {
  align-self: start;
}

.detail-back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--detail-text-soft);
  font-size: 14px;
  font-weight: 600;
  transition:
    color 0.22s ease,
    transform 0.22s ease;
}

.detail-back svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.detail-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 18px;
  padding: 8px 14px;
  border-radius: 999px;
  color: var(--detail-accent);
  background: var(--detail-accent-soft);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.detail-kicker::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--detail-accent) 0%, #ffffff 160%);
  box-shadow: 0 0 0 5px rgba(var(--detail-accent-rgb), 0.1);
}

.detail-title {
  margin: 18px 0 0;
  color: var(--detail-text);
  font-size: clamp(36px, 4.4vw, 64px);
  font-weight: 800;
  line-height: 1.02;
  letter-spacing: -0.05em;
}

.detail-subtitle {
  margin: 14px 0 0;
  color: var(--detail-text);
  font-size: clamp(20px, 2.2vw, 34px);
  font-weight: 800;
  line-height: 1.22;
  letter-spacing: -0.04em;
}

.detail-subtitle span {
  color: var(--detail-accent);
}

.detail-desc {
  margin: 22px 0 0;
  max-width: 640px;
  color: var(--detail-text-soft);
  font-size: 17px;
  line-height: 1.9;
}

.detail-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.detail-demo-note {
  margin: 16px 0 0;
  color: var(--detail-text-soft);
  font-size: 15px;
  line-height: 1.7;
}

.detail-demo-note strong {
  color: var(--detail-text);
  font-weight: 700;
}

.detail-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-width: 152px;
  min-height: 50px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
  transition:
    transform 0.22s ease,
    box-shadow 0.22s ease,
    background-color 0.22s ease,
    border-color 0.22s ease,
    color 0.22s ease;
}

.detail-btn svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
  stroke: currentColor;
  stroke-width: 1.8;
}

.detail-btn:hover,
.detail-btn:focus-visible,
.detail-back:hover,
.detail-back:focus-visible,
.detail-link:hover,
.detail-link:focus-visible,
.detail-faq details:hover summary {
  transform: translateY(-2px);
}

.detail-back:hover,
.detail-back:focus-visible {
  color: #1671FA;
}

.detail-btn-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--detail-accent) 0%, var(--detail-accent-strong) 100%);
  box-shadow: 0 16px 36px rgba(var(--detail-accent-rgb), 0.22);
}

.detail-btn-secondary {
  color: var(--detail-accent);
  background: rgba(255, 255, 255, 0.82);
  border-color: rgba(var(--detail-accent-rgb), 0.35);
}

.detail-btn-ghost {
  color: var(--detail-text);
  background: rgba(255, 255, 255, 0.78);
  border-color: rgba(212, 221, 235, 0.92);
}

.detail-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.detail-pills span {
  display: inline-flex;
  align-items: center;
  height: 28px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
  color: var(--detail-text-soft);
  font-size: 12px;
  font-weight: 600;
  border: 1px solid rgba(225, 232, 244, 0.92);
}

.detail-hero-art {
  position: relative;
  min-height: 396px;
}

.detail-glow,
.detail-browser,
.detail-float-card,
.detail-floating-chip,
.detail-dot {
  position: absolute;
}

.detail-glow {
  left: 48px;
  right: 28px;
  bottom: 14px;
  height: 104px;
  border-radius: 50%;
  background: radial-gradient(circle at center, var(--detail-hero-glow), rgba(255, 255, 255, 0));
  filter: blur(10px);
}

.detail-browser {
  inset: 34px 20px 26px 74px;
  border-radius: 30px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.86) 0%, rgba(228, 238, 255, 0.94) 100%);
  box-shadow:
    0 30px 70px rgba(126, 163, 235, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.98);
  transform: rotate(7deg);
}

.detail-browser::before {
  content: "";
  position: absolute;
  left: 18px;
  right: 18px;
  top: 18px;
  height: 34px;
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.78), rgba(233, 239, 252, 0.46));
}

.detail-browser::after {
  content: "";
  position: absolute;
  top: 28px;
  right: 28px;
  width: 44px;
  height: 6px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: -14px 0 0 rgba(255, 255, 255, 0.58), -28px 0 0 rgba(255, 255, 255, 0.34);
}

.detail-browser-panel {
  position: absolute;
  left: 28px;
  right: 28px;
  border-radius: 22px;
}

.detail-browser-panel.panel-top {
  top: 78px;
  height: 62px;
  background: linear-gradient(135deg, rgba(var(--detail-accent-rgb), 0.12), rgba(var(--detail-accent-rgb), 0.04));
}

.detail-browser-panel.panel-bottom {
  top: 160px;
  height: 132px;
  background: linear-gradient(135deg, rgba(var(--detail-accent-rgb), 0.92), rgba(var(--detail-accent-rgb), 0.66));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.24);
}

.detail-float-card {
  left: 132px;
  top: 8px;
  display: grid;
  place-items: center;
  width: 208px;
  height: 228px;
  border-radius: 32px;
  background: linear-gradient(180deg, #ffffff 0%, #f5f8ff 100%);
  box-shadow:
    0 26px 64px rgba(137, 167, 225, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.96);
  transform: rotate(7deg);
}

.detail-float-card__icon {
  display: grid;
  place-items: center;
  width: 104px;
  height: 104px;
  border-radius: 28px;
  background: linear-gradient(135deg, rgba(var(--detail-accent-rgb), 0.14), rgba(var(--detail-accent-rgb), 0.04));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.detail-float-card__icon img,
.detail-float-card__icon svg {
  width: 74px;
  height: 74px;
}

.detail-float-card::after {
  content: "";
  position: absolute;
  inset: auto 20px 16px;
  height: 16px;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(220, 231, 255, 0.72), rgba(244, 248, 255, 0.18));
}

.detail-floating-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 72px;
  height: 56px;
  padding: 0 16px;
  border-radius: 18px;
  color: #fff;
  font-size: 22px;
  font-weight: 700;
  background: linear-gradient(135deg, rgba(var(--detail-accent-rgb), 0.78), rgba(var(--detail-accent-rgb), 0.94));
  box-shadow: 0 14px 34px rgba(var(--detail-accent-rgb), 0.24);
}

.detail-floating-chip.chip-left {
  left: 54px;
  top: 18px;
}

.detail-floating-chip.chip-right {
  right: 0;
  top: 188px;
}

.detail-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(var(--detail-accent-rgb), 0.34), rgba(255, 255, 255, 0.08));
}

.detail-dot.dot-1 {
  left: 32px;
  top: 182px;
}

.detail-dot.dot-2 {
  right: 38px;
  top: 104px;
  width: 14px;
  height: 14px;
}

.detail-dot.dot-3 {
  left: 164px;
  top: 74px;
  width: 10px;
  height: 10px;
}

.detail-stats {
  padding: 10px 0 28px;
}

.detail-stats-grid,
.detail-feature-grid,
.detail-grid,
.detail-scenario-grid,
.detail-faq-grid {
  display: grid;
  gap: 16px;
}

.detail-stats-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.detail-stat,
.detail-panel,
.detail-card,
.detail-scenario-card,
.detail-faq details,
.detail-cta-card {
  background: var(--detail-card);
  box-shadow: 0 18px 60px rgba(119, 150, 210, 0.14);
}

.detail-stat {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 22px 22px 20px;
  border-radius: 18px;
  border: 1px solid var(--detail-border);
}

.detail-stat__icon {
  display: grid;
  place-items: center;
  flex: none;
  width: 52px;
  height: 52px;
  border-radius: 16px;
  background: var(--detail-accent-soft);
  color: var(--detail-accent);
}

.detail-stat__icon svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.detail-stat strong {
  display: block;
  color: var(--detail-text);
  font-size: 18px;
  font-weight: 800;
  line-height: 1.25;
}

.detail-stat span {
  display: block;
  margin-top: 6px;
  color: var(--detail-text-soft);
  font-size: 14px;
  line-height: 1.65;
}

.detail-section {
  padding: 14px 0 32px;
}

.detail-section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 22px;
}

.detail-section-head__copy h2 {
  margin: 0;
  color: var(--detail-text);
  font-size: 32px;
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.04em;
}

.detail-section-head__copy p {
  margin: 8px 0 0;
  color: var(--detail-text-soft);
  font-size: 16px;
  line-height: 1.72;
  max-width: 720px;
}

.detail-grid {
  grid-template-columns: minmax(0, 1.12fr) minmax(280px, 0.88fr);
  align-items: stretch;
}

.detail-panel {
  border: 1px solid var(--detail-border);
  border-radius: 22px;
  padding: 28px 28px 26px;
}

.detail-panel h3 {
  margin: 0;
  color: var(--detail-text);
  font-size: 24px;
  font-weight: 800;
  line-height: 1.22;
}

.detail-panel p {
  margin: 14px 0 0;
  color: var(--detail-text-soft);
  font-size: 15px;
  line-height: 1.88;
}

.detail-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.detail-tags span {
  display: inline-flex;
  align-items: center;
  height: 28px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(var(--detail-accent-rgb), 0.08);
  color: var(--detail-accent);
  font-size: 12px;
  font-weight: 700;
}

.detail-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 18px;
  color: var(--detail-accent);
  font-size: 15px;
  font-weight: 700;
}

.detail-link svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.detail-card-group {
  display: grid;
  gap: 14px;
}

.detail-card {
  border: 1px solid var(--detail-border);
  border-radius: 18px;
  padding: 22px 20px;
}

.detail-card__head {
  display: flex;
  align-items: center;
  gap: 12px;
}

.detail-card__icon {
  display: grid;
  place-items: center;
  flex: none;
  width: 42px;
  height: 42px;
  border-radius: 14px;
  background: var(--detail-accent-soft);
  color: var(--detail-accent);
}

.detail-card__icon svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.detail-card h3 {
  margin: 0;
  color: var(--detail-text);
  font-size: 17px;
  font-weight: 800;
  line-height: 1.35;
}

.detail-card p {
  margin: 12px 0 0;
  color: var(--detail-text-soft);
  font-size: 14px;
  line-height: 1.75;
}

.detail-card ul {
  margin: 12px 0 0;
  padding-left: 18px;
  color: var(--detail-text-soft);
  font-size: 14px;
  line-height: 1.75;
}

.detail-card li + li {
  margin-top: 6px;
}

.detail-feature-grid,
.detail-scenario-grid,
.detail-faq-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.detail-faq-grid {
  align-items: start;
}

.detail-scenario-grid.is-four,
.detail-faq-grid.is-four {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.detail-faq {
  padding-bottom: 36px;
}

.detail-faq details {
  border: 1px solid var(--detail-border);
  border-radius: 18px;
  overflow: hidden;
}

.detail-faq details[open] {
  border-color: rgba(var(--detail-accent-rgb), 0.26);
  box-shadow: 0 16px 42px rgba(var(--detail-accent-rgb), 0.12);
}

.detail-faq summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 22px 20px;
  color: var(--detail-text);
  font-size: 16px;
  font-weight: 800;
  line-height: 1.55;
  cursor: pointer;
  list-style: none;
  user-select: none;
  transition: transform 0.22s ease;
}

.detail-faq summary::-webkit-details-marker {
  display: none;
}

.detail-faq summary::after {
  content: "+";
  flex: none;
  color: var(--detail-accent);
  font-size: 24px;
  font-weight: 300;
  transition: transform 0.24s ease;
}

.detail-faq details[open] summary::after {
  transform: rotate(45deg);
}

.detail-faq__body {
  padding: 0 22px 22px;
  color: var(--detail-text-soft);
  font-size: 14px;
  line-height: 1.8;
}

.detail-faq__body p + p,
.detail-faq__body ul + p,
.detail-faq__body p + ul {
  margin-top: 10px;
}

.detail-faq__body ul {
  padding-left: 18px;
}

.detail-faq__body li + li {
  margin-top: 6px;
}

.detail-cta {
  padding: 6px 0 40px;
}

.detail-cta-card {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 28px 34px;
  border-radius: 22px;
  color: #fff;
  background:
    radial-gradient(circle at 90% 24%, rgba(255, 255, 255, 0.18), transparent 18%),
    linear-gradient(100deg, #13378f 0%, #1d53cb 44%, var(--detail-accent) 100%);
}

.detail-cta-card::before {
  content: "";
  position: absolute;
  left: 220px;
  right: 140px;
  bottom: -70px;
  height: 140px;
  border-radius: 50%;
  background: radial-gradient(circle at center, rgba(124, 171, 255, 0.34), rgba(124, 171, 255, 0) 70%);
}

.detail-cta__copy,
.detail-cta__actions {
  position: relative;
  z-index: 1;
}

.detail-cta__copy {
  display: flex;
  align-items: center;
  gap: 18px;
}

.detail-cta__logo {
  display: grid;
  place-items: center;
  flex: none;
  width: 66px;
  height: 66px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.16);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.24);
}

.detail-cta__logo img,
.detail-cta__logo svg {
  width: 42px;
  height: 42px;
}

.detail-cta__copy h2 {
  margin: 0;
  color: #fff;
  font-size: 28px;
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.04em;
}

.detail-cta__copy p {
  margin: 10px 0 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: 15px;
  line-height: 1.7;
}

.detail-cta__actions {
  display: flex;
  gap: 14px;
  flex: none;
}

.detail-cta .detail-btn-primary {
  background: #fff;
  color: #1d2330;
  box-shadow: 0 16px 36px rgba(12, 28, 78, 0.16);
}

.detail-cta .detail-btn-primary svg {
  fill: currentColor;
}

.detail-cta .detail-btn-secondary {
  color: var(--detail-accent);
  background: rgba(255, 255, 255, 0.96);
  border-color: transparent;
}

@media (max-width: 1100px) {
  .open-source-detail-page .container {
    width: min(1240px, calc(100% - 48px));
  }

  .detail-hero__inner,
  .detail-grid,
  .detail-cta-card {
    grid-template-columns: 1fr;
  }

  .detail-feature-grid,
  .detail-scenario-grid.is-four,
  .detail-faq-grid.is-four {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .detail-cta-card {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 960px) {
  .open-source-detail-page .container {
    width: min(1180px, calc(100% - 40px));
  }

  .detail-hero {
    padding-top: 28px;
  }

  .detail-hero-art {
    min-height: 308px;
  }

  .detail-browser {
    inset: 26px 6px 32px 54px;
  }

  .detail-float-card {
    left: 96px;
    width: 164px;
    height: 182px;
  }

  .detail-float-card__icon {
    width: 84px;
    height: 84px;
  }

  .detail-float-card__icon img,
  .detail-float-card__icon svg {
    width: 58px;
    height: 58px;
  }

  .detail-floating-chip {
    min-width: 60px;
    height: 48px;
    font-size: 18px;
  }

  .detail-floating-chip.chip-left {
    left: 22px;
  }

  .detail-floating-chip.chip-right {
    top: 154px;
  }

  .detail-stats-grid,
  .detail-feature-grid,
  .detail-scenario-grid,
  .detail-faq-grid,
  .detail-scenario-grid.is-four,
  .detail-faq-grid.is-four {
    grid-template-columns: 1fr;
  }

  .detail-actions,
  .detail-cta__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .detail-btn {
    width: 100%;
  }
}

@media (max-width: 640px) {
  .open-source-detail-page .container {
    width: calc(100% - 28px);
  }

  .detail-title {
    font-size: 34px;
  }

  .detail-subtitle {
    font-size: 24px;
  }

  .detail-desc,
  .detail-section-head__copy p,
  .detail-panel p,
  .detail-card p,
  .detail-card ul,
  .detail-faq__body,
  .detail-cta__copy p {
    font-size: 14px;
  }

  .detail-section-head__copy h2,
  .detail-cta__copy h2 {
    font-size: 26px;
  }

  .detail-panel,
  .detail-card,
  .detail-stat,
  .detail-faq details,
  .detail-cta-card {
    border-radius: 18px;
  }

  .detail-panel,
  .detail-card,
  .detail-faq summary,
  .detail-faq__body,
  .detail-stat,
  .detail-cta-card {
    padding-inline: 18px;
  }

  .detail-hero-art {
    min-height: 250px;
  }

  .detail-browser {
    inset: 32px 0 34px 46px;
  }

  .detail-float-card {
    left: 78px;
    top: 18px;
    width: 126px;
    height: 142px;
    border-radius: 22px;
  }

  .detail-float-card__icon {
    width: 66px;
    height: 66px;
    border-radius: 18px;
  }

  .detail-float-card__icon img,
  .detail-float-card__icon svg {
    width: 46px;
    height: 46px;
  }

  .detail-floating-chip.chip-left {
    left: 8px;
    top: 10px;
  }

  .detail-floating-chip.chip-right {
    right: -6px;
    top: 126px;
  }

  .detail-cta__copy {
    flex-direction: column;
    align-items: flex-start;
  }
}
