/* ==========================================================================
   base
   ========================================================================== */

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", "Noto Sans CJK SC", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #1a1a1a;
  background-color: #f5f5f5;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: #1a1a1a;
  text-decoration: none;
  transition: color 0.2s ease;
}

a:hover {
  color: #e63946;
}

ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

h1,
h2,
h3,
h4 {
  margin: 0;
  font-weight: 700;
  line-height: 1.3;
  color: #1a1a1a;
}

p {
  margin: 0;
}

figure {
  margin: 0;
}

/* ==========================================================================
   layout
   ========================================================================== */

.site-header {
  background-color: #ffffff;
  border-bottom: 1px solid #e5e5e5;
  position: sticky;
  top: 0;
  z-index: 100;
}

.header-shell {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
}

.brand {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.brand-name {
  font-size: 20px;
  font-weight: 700;
  color: #1a1a1a;
}

.brand-slogan {
  font-size: 12px;
  color: #888888;
  margin-top: 2px;
}

.site-nav {
  display: flex;
  align-items: center;
}

.nav-list {
  display: flex;
  gap: 32px;
}

.nav-list a {
  display: block;
  padding: 8px 0;
  font-size: 15px;
  font-weight: 500;
  color: #333333;
  border-bottom: 2px solid transparent;
}

.nav-list a:hover {
  color: #e63946;
  border-bottom-color: #e63946;
}

.nav-list a.is-current {
  color: #e63946;
  border-bottom-color: #e63946;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 10px;
  background: none;
  border: none;
  cursor: pointer;
}

.nav-toggle-line {
  display: block;
  width: 24px;
  height: 2px;
  background-color: #1a1a1a;
  border-radius: 2px;
}

.site-main {
  min-height: 60vh;
}

.inner-main {
  max-width: 1200px;
  margin: 0 auto;
  padding: 32px 24px 64px;
}

.site-footer {
  background-color: #1a1a1a;
  color: #cccccc;
  padding: 48px 0 24px;
}

.footer-shell {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.footer-brand {
  font-size: 18px;
  font-weight: 700;
  color: #ffffff;
}

.footer-desc {
  font-size: 14px;
  color: #999999;
  margin-top: 8px;
  max-width: 520px;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 32px;
  padding-bottom: 32px;
  border-bottom: 1px solid #333333;
}

.footer-heading {
  font-size: 14px;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 12px;
}

.footer-group ul li + li {
  margin-top: 8px;
}

.footer-group a {
  font-size: 14px;
  color: #999999;
}

.footer-group a:hover {
  color: #ffffff;
}

.copyright {
  font-size: 13px;
  color: #777777;
  text-align: center;
  margin-top: 24px;
}

/* ==========================================================================
   components
   ========================================================================== */

/* 面包屑 */
.breadcrumb {
  font-size: 14px;
  color: #888888;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}

.breadcrumb a {
  color: #666666;
}

.breadcrumb a:hover {
  color: #e63946;
}

.breadcrumb-sep {
  color: #bbbbbb;
}

.breadcrumb-current {
  color: #1a1a1a;
  font-weight: 500;
}

/* 页面标题区 */
.page-header {
  margin-bottom: 32px;
}

.page-title {
  font-size: 32px;
  color: #1a1a1a;
  margin-bottom: 8px;
}

.page-description {
  font-size: 16px;
  color: #666666;
  max-width: 720px;
}

/* 区块标题 */
.section-title {
  font-size: 24px;
  color: #1a1a1a;
  margin-bottom: 8px;
}

.section-desc,
.section-intro {
  font-size: 15px;
  color: #666666;
  margin-bottom: 24px;
}

/* 按钮 */
.btn-primary,
.btn-secondary {
  display: inline-block;
  padding: 12px 28px;
  font-size: 15px;
  font-weight: 600;
  border-radius: 4px;
  text-align: center;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.btn-primary {
  background-color: #e63946;
  color: #ffffff;
}

.btn-primary:hover {
  background-color: #c92f3d;
  color: #ffffff;
}

.btn-secondary {
  background-color: transparent;
  color: #1a1a1a;
  border: 1px solid #1a1a1a;
}

.btn-secondary:hover {
  background-color: #1a1a1a;
  color: #ffffff;
}

/* 文本链接 */
.text-link,
.card-link {
  display: inline-block;
  font-size: 14px;
  font-weight: 500;
  color: #e63946;
}

.text-link:hover,
.card-link:hover {
  color: #c92f3d;
  text-decoration: underline;
}

/* 标签 */
.tag,
.tag-link {
  display: inline-block;
  font-size: 13px;
  padding: 4px 12px;
  border-radius: 4px;
  background-color: #f0f0f0;
  color: #333333;
}

.tag-link {
  background-color: #ffffff;
  border: 1px solid #dddddd;
  transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.tag-link:hover {
  background-color: #e63946;
  border-color: #e63946;
  color: #ffffff;
}

/* ==========================================================================
   pages - 首页
   ========================================================================== */

.home-main {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px 64px;
}

/* hero */
.hero-section {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 48px;
  align-items: center;
  padding: 56px 0 48px;
}

.hero-copy {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.hero-title {
  font-size: 40px;
  color: #1a1a1a;
}

.hero-lead {
  font-size: 17px;
  color: #555555;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-figure {
  border-radius: 8px;
  overflow: hidden;
  background-color: #e8e8e8;
}

.hero-figure img {
  width: 100%;
  height: 360px;
  object-fit: cover;
}

.hero-figure figcaption {
  font-size: 13px;
  color: #888888;
  padding: 8px 12px;
  background-color: #fafafa;
}

/* 分类导航带 */
.category-strip {
  padding: 40px 0;
  border-top: 1px solid #e5e5e5;
}

.category-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

/* 最近更新 */
.recent-updates {
  padding: 40px 0;
  border-top: 1px solid #e5e5e5;
}

.update-group + .update-group {
  margin-top: 32px;
}

.update-date {
  font-size: 18px;
  color: #1a1a1a;
  padding-bottom: 8px;
  border-bottom: 2px solid #1a1a1a;
  margin-bottom: 16px;
}

.update-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.update-item {
  background-color: #ffffff;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid #eeeeee;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.update-item:hover {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  transform: translateY(-2px);
}

.update-item img {
  width: 100%;
  height: 160px;
  object-fit: cover;
}

.update-info {
  padding: 12px 16px 16px;
}

.update-title {
  font-size: 15px;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 6px;
}

.update-chapter,
.update-status {
  display: block;
  font-size: 13px;
  color: #888888;
}

.update-status {
  color: #e63946;
  margin-top: 4px;
}

/* 人气榜单 */
.popular-rankings {
  padding: 40px 0;
  border-top: 1px solid #e5e5e5;
}

.ranking-list {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}

.ranking-item {
  background-color: #ffffff;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid #eeeeee;
  transition: box-shadow 0.2s ease;
}

.ranking-item:hover {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.ranking-item img {
  width: 100%;
  height: 140px;
  object-fit: cover;
}

.ranking-content {
  padding: 12px 16px 16px;
}

.ranking-title {
  font-size: 15px;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 6px;
}

.ranking-reason {
  font-size: 13px;
  color: #777777;
  line-height: 1.5;
}

/* 阅读指南入口 */
.guide-entry {
  padding: 40px 0;
  border-top: 1px solid #e5e5e5;
}

.guide-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.guide-card {
  background-color: #ffffff;
  border: 1px solid #eeeeee;
  border-radius: 8px;
  padding: 28px;
  transition: box-shadow 0.2s ease;
}

.guide-card:hover {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.guide-card-title {
  font-size: 18px;
  color: #1a1a1a;
  margin-bottom: 8px;
}

.guide-card p {
  font-size: 15px;
  color: #666666;
  margin-bottom: 16px;
}

/* 长尾推荐预告 */
.featured-topics {
  padding: 40px 0;
  border-top: 1px solid #e5e5e5;
}

.topic-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.topic-card {
  display: flex;
  gap: 20px;
  background-color: #ffffff;
  border: 1px solid #eeeeee;
  border-radius: 8px;
  padding: 20px;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.topic-card:hover {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  transform: translateY(-2px);
}

.topic-card img {
  width: 120px;
  height: 160px;
  object-fit: cover;
  border-radius: 4px;
  flex-shrink: 0;
}

.topic-info {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.topic-title {
  font-size: 18px;
  color: #1a1a1a;
}

.topic-info p {
  font-size: 14px;
  color: #666666;
  line-height: 1.6;
}

/* ==========================================================================
   pages - 分类页
   ========================================================================== */

.category-grid-section {
  padding-bottom: 40px;
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.category-card {
  background-color: #ffffff;
  border: 1px solid #eeeeee;
  border-radius: 8px;
  overflow: hidden;
  transition: box-shadow 0.2s ease;
}

.category-card:hover {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.category-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.category-card h3 {
  font-size: 17px;
  color: #1a1a1a;
  padding: 16px 16px 0;
}

.category-card p {
  font-size: 14px;
  color: #666666;
  padding: 8px 16px 0;
  line-height: 1.6;
}

.example-tag {
  display: inline-block;
  font-size: 13px;
  color: #888888;
  padding: 8px 16px 0;
}

.category-card .text-link {
  margin: 12px 16px 16px;
}

.category-details-section {
  padding: 40px 0;
  border-top: 1px solid #e5e5e5;
}

.detail-blocks {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.detail-item {
  background-color: #ffffff;
  border: 1px solid #eeeeee;
  border-radius: 8px;
  padding: 24px;
}

.detail-item h3 {
  font-size: 16px;
  color: #1a1a1a;
  margin-bottom: 8px;
}

.detail-item p {
  font-size: 14px;
  color: #666666;
  line-height: 1.6;
}

.more-link-line {
  margin-top: 24px;
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

/* ==========================================================================
   pages - 阅读指南页
   ========================================================================== */

.layout-shell.sidebar-left {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 40px;
  align-items: start;
}

.sidebar {
  position: sticky;
  top: 96px;
}

.sidebar-card {
  background-color: #ffffff;
  border: 1px solid #eeeeee;
  border-radius: 8px;
  padding: 20px;
}

.sidebar-card + .sidebar-card {
  margin-top: 16px;
}

.sidebar-title {
  font-size: 16px;
  color: #1a1a1a;
  margin-bottom: 12px;
  padding-bottom: 8px;
  border-bottom: 2px solid #1a1a1a;
}

.sidebar-links li + li {
  margin-top: 8px;
}

.sidebar-links a {
  font-size: 14px;
  color: #555555;
}

.sidebar-links a:hover {
  color: #e63946;
}

.main-content {
  min-width: 0;
}

.guide-section {
  margin-bottom: 40px;
}

.guide-section .section-title {
  font-size: 22px;
}

.guide-figure {
  border-radius: 8px;
  overflow: hidden;
  margin: 16px 0;
  background-color: #e8e8e8;
}

.guide-figure img {
  width: 100%;
  height: 280px;
  object-fit: cover;
}

.guide-figure figcaption {
  font-size: 13px;
  color: #888888;
  padding: 8px 12px;
  background-color: #fafafa;
}

.guide-steps {
  counter-reset: step;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 16px;
}

.guide-steps li {
  counter-increment: step;
  background-color: #ffffff;
  border: 1px solid #eeeeee;
  border-radius: 8px;
  padding: 20px;
  position: relative;
}

.guide-steps li::before {
  content: counter(step);
  position: absolute;
  top: 16px;
  right: 16px;
  font-size: 28px;
  font-weight: 700;
  color: #f0f0f0;
}

.step-title {
  font-size: 16px;
  color: #1a1a1a;
  margin-bottom: 6px;
}

.step-desc {
  font-size: 14px;
  color: #666666;
  line-height: 1.6;
}

.guide-tips,
.guide-methods {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 16px;
}

.guide-tips li,
.guide-methods li {
  background-color: #ffffff;
  border: 1px solid #eeeeee;
  border-radius: 8px;
  padding: 20px;
}

.tip-title,
.method-title {
  font-size: 16px;
  color: #1a1a1a;
  margin-bottom: 6px;
}

.tip-desc,
.method-desc {
  font-size: 14px;
  color: #666666;
  line-height: 1.6;
}

.related-reads {
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid #e5e5e5;
}

.related-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.related-card {
  background-color: #ffffff;
  border: 1px solid #eeeeee;
  border-radius: 8px;
  padding: 24px;
}

.card-title {
  font-size: 17px;
  color: #1a1a1a;
  margin-bottom: 8px;
}

.card-desc {
  font-size: 14px;
  color: #666666;
  line-height: 1.6;
  margin-bottom: 12px;
}

/* ==========================================================================
   pages - 恋爱 / 热血漫画推荐页
   ========================================================================== */

.recommendation-list {
  margin-bottom: 48px;
}

.recommend-item {
  display: flex;
  gap: 24px;
  background-color: #ffffff;
  border: 1px solid #eeeeee;
  border-radius: 8px;
  padding: 20px;
  margin-bottom: 20px;
  transition: box-shadow 0.2s ease;
}

.recommend-item:hover {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.recommend-cover {
  flex-shrink: 0;
  width: 160px;
}

.recommend-cover img {
  width: 160px;
  height: 220px;
  object-fit: cover;
  border-radius: 4px;
}

.recommend-info {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.recommend-info h3 {
  font-size: 20px;
  color: #1a1a1a;
  margin-bottom: 8px;
}

.tags,
.recommend-tags {
  display: flex;
  gap: 8px;
  margin-bottom: 10px;
  flex-wrap: wrap;
}

.tag {
  font-size: 13px;
  padding: 3px 10px;
  border-radius: 4px;
  background-color: #f0f0f0;
  color: #333333;
}

.recommend-info p {
  font-size: 14px;
  color: #666666;
  line-height: 1.6;
  margin-bottom: 8px;
}

.suitable,
.recommend-audience {
  font-size: 14px;
  color: #555555;
}

.suitable strong,
.recommend-audience strong {
  color: #e63946;
  font-weight: 600;
}

/* 选材指南 / 推荐指南 */
.selection-guide,
.recommend-guide {
  padding: 32px 0;
  border-top: 1px solid #e5e5e5;
}

.guide-columns,
.guide-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.guide-col,
.guide-grid .guide-card {
  background-color: #ffffff;
  border: 1px solid #eeeeee;
  border-radius: 8px;
  padding: 24px;
}

.guide-col h3,
.guide-grid .guide-card h3 {
  font-size: 16px;
  color: #1a1a1a;
  margin-bottom: 8px;
}

.guide-col p,
.guide-grid .guide-card p {
  font-size: 14px;
  color: #666666;
  line-height: 1.6;
}

.guide-tip,
.guide-more {
  margin-top: 20px;
  font-size: 14px;
  color: #555555;
}

.guide-tip a,
.guide-more a {
  color: #e63946;
  font-weight: 500;
}

.guide-tip a:hover,
.guide-more a:hover {
  text-decoration: underline;
}

.guide-more {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

/* 相关推荐 */
.related-links {
  margin-top: 32px;
  padding: 24px;
  background-color: #ffffff;
  border: 1px solid #eeeeee;
  border-radius: 8px;
}

.related-links h2 {
  font-size: 17px;
  color: #1a1a1a;
  margin-bottom: 12px;
}

.related-list {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.related-list a {
  font-size: 14px;
  color: #555555;
}

.related-list a:hover {
  color: #e63946;
}

/* 热血页布局 */
.layout-shell:not(.sidebar-left) {
  display: block;
}

/* ==========================================================================
   pages - 404
   ========================================================================== */

.error-main {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 60vh;
  padding: 48px 24px;
}

.error-section {
  text-align: center;
  max-width: 520px;
}

.error-title {
  font-size: 28px;
  color: #1a1a1a;
  margin-bottom: 8px;
}

.error-code {
  font-size: 72px;
  font-weight: 700;
  color: #e63946;
  line-height: 1;
  margin-bottom: 16px;
}

.error-desc {
  font-size: 16px;
  color: #666666;
  margin-bottom: 24px;
}

.error-btn {
  display: inline-block;
  padding: 12px 28px;
  font-size: 15px;
  font-weight: 600;
  background-color: #e63946;
  color: #ffffff;
  border-radius: 4px;
  margin-bottom: 16px;
}

.error-btn:hover {
  background-color: #c92f3d;
  color: #ffffff;
}

.error-help {
  font-size: 14px;
  color: #888888;
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.error-help a {
  color: #555555;
}

.error-help a:hover {
  color: #e63946;
}

/* ==========================================================================
   responsive
   ========================================================================== */

@media (max-width: 992px) {
  .hero-section {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .hero-figure img {
    height: 300px;
  }

  .ranking-list {
    grid-template-columns: repeat(3, 1fr);
  }

  .category-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .update-list {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .header-shell {
    min-height: 64px;
    flex-wrap: wrap;
    padding: 0 16px;
  }

  .nav-toggle {
    display: flex;
  }

  .site-nav {
    width: 100%;
  }

  .nav-list {
    display: none;
    flex-direction: column;
    gap: 0;
    padding: 8px 0 16px;
  }

  .nav-list.is-open {
    display: flex;
  }

  .nav-list a {
    padding: 12px 0;
    border-bottom: 1px solid #f0f0f0;
  }

  .nav-list a.is-current {
    border-bottom-color: #f0f0f0;
    color: #e63946;
  }

  .inner-main {
    padding: 24px 16px 48px;
  }

  .home-main {
    padding: 0 16px 48px;
  }

  .hero-section {
    padding: 32px 0;
  }

  .hero-title {
    font-size: 30px;
  }

  .hero-figure img {
    height: 220px;
  }

  .category-tags {
    gap: 8px;
  }

  .tag-link {
    font-size: 13px;
    padding: 6px 12px;
  }

  .update-list,
  .ranking-list,
  .category-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .ranking-item img {
    height: 120px;
  }

  .guide-cards,
  .topic-cards,
  .related-cards,
  .detail-blocks {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .topic-card {
    flex-direction: column;
  }

  .topic-card img {
    width: 100%;
    height: 200px;
  }

  .layout-shell.sidebar-left {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .sidebar {
    position: static;
    order: 2;
  }

  .main-content {
    order: 1;
  }

  .guide-steps,
  .guide-tips,
  .guide-methods,
  .guide-columns,
  .guide-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .guide-figure img {
    height: 200px;
  }

  .recommend-item {
    flex-direction: column;
    gap: 16px;
    padding: 16px;
  }

  .recommend-cover,
  .recommend-cover img {
    width: 100%;
    height: 200px;
  }

  .footer-links {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .error-code {
    font-size: 56px;
  }
}

@media (max-width: 480px) {
  .brand-name {
    font-size: 17px;
  }

  .brand-slogan {
    font-size: 11px;
  }

  .hero-title {
    font-size: 26px;
  }

  .hero-lead {
    font-size: 15px;
  }

  .hero-actions {
    flex-direction: column;
    gap: 12px;
  }

  .btn-primary,
  .btn-secondary {
    width: 100%;
    text-align: center;
  }

  .update-list,
  .ranking-list,
  .category-grid {
    grid-template-columns: 1fr;
  }

  .ranking-item,
  .update-item {
    display: flex;
    gap: 12px;
    align-items: center;
  }

  .ranking-item img,
  .update-item img {
    width: 80px;
    height: 100px;
    flex-shrink: 0;
  }

  .ranking-content,
  .update-info {
    padding: 8px 12px 8px 0;
  }

  .ranking-reason {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  .page-title {
    font-size: 26px;
  }

  .page-description {
    font-size: 15px;
  }

  .section-title {
    font-size: 20px;
  }

  .guide-card,
  .detail-item,
  .related-card,
  .guide-col,
  .guide-grid .guide-card {
    padding: 18px;
  }

  .related-list {
    flex-direction: column;
    gap: 12px;
  }
}
