/* ============================================
   Column detail page — 신문 사설 스타일
   외부 컨테이너는 --max-w (1240px)로 통일,
   본문 텍스트는 내부에서 좁은 컬럼으로 가독성 유지
   ============================================ */

/* 목록으로 되돌아가기 바 */
.col-back {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 20px 40px 0;
}
.col-back a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-mute);
  border: 1px solid var(--line);
  border-radius: 20px;
  background: #fff;
  transition: all .18s;
  text-decoration: none;
}
.col-back a:hover {
  color: var(--text-strong);
  border-color: var(--text-strong);
  transform: translateX(-2px);
}
.col-back a svg {
  width: 14px; height: 14px;
}

.col-hero {
  padding: 32px 40px 56px;
  max-width: var(--max-w); margin: 0 auto;
  border-bottom: 2px solid var(--text-strong);
  display: flex;
  flex-direction: column;
  align-items: center;
}
.col-hero > * {
  max-width: 820px;
  width: 100%;
}
.col-hero .cat {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 12px; border-radius: 3px;
  font-size: 12px; font-weight: 700;
  letter-spacing: 0.02em;
  margin-bottom: 24px;
}
.col-hero .cat .dot {
  width: 6px; height: 6px; border-radius: 50%;
}
.col-hero h1 {
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1.25;
  font-weight: 800;
  letter-spacing: -0.035em;
  color: var(--text-strong);
}
.col-hero .subtitle {
  margin-top: 20px;
  font-size: 19px;
  color: var(--text-mute);
  line-height: 1.6;
  font-weight: 500;
}
.col-hero .byline {
  margin-top: 36px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  display: flex; gap: 24px; flex-wrap: wrap; align-items: center;
  font-size: 13.5px; color: var(--text-mute);
}
.col-hero .byline b {
  color: var(--text-strong); font-weight: 700;
}
.col-hero .byline .en {
  font-family: var(--font-en); font-weight: 600;
  letter-spacing: 0.02em;
}

/* byline 안 공유 버튼 */
.col-hero .byline .byline-share {
  margin-left: auto;
  display: inline-flex;
  align-items: center;
  position: relative;
}
.byline-share-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  height: 34px;
  padding: 0 16px;
  border-radius: 17px;
  border: 1px solid var(--text-strong);
  background: var(--text-strong);
  color: #fff;
  font-family: var(--font-kr);
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: all .18s;
}
.byline-share-btn:hover {
  background: var(--mainColor);
  border-color: var(--mainColor);
}
.byline-share-btn svg {
  width: 15px; height: 15px;
  flex-shrink: 0;
}
.byline-share .share-toast {
  position: absolute;
  right: 0; bottom: -44px;
  padding: 8px 16px;
  background: var(--text-strong);
  color: #fff;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 500;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s;
  z-index: 10;
}
.byline-share .share-toast.show { opacity: 1; }

@media (max-width: 720px) {
  .col-hero .byline {
    gap: 16px;
    font-size: 12.5px;
  }
  .col-hero .byline .byline-share {
    margin-left: 0;
    margin-top: 4px;
    width: 100%;
  }
}

/* 본문 래퍼: 폭은 --max-w로 통일 · 내부에서 텍스트 컬럼 좁게 (flex column으로 중앙 정렬) */
.col-body {
  max-width: var(--max-w); margin: 0 auto;
  padding: 56px 40px 96px;
  font-size: 17px;
  line-height: 1.85;
  color: var(--text);
  display: flex;
  flex-direction: column;
  align-items: center;
}
.col-body > * {
  max-width: 720px;
  width: 100%;
}

/* ==========================================
   GEO 최적화 컴포넌트
   ========================================== */

/* TL;DR / 핵심 요약 박스 (AI 인용용) */
.col-tldr {
  margin: 32px 0 40px;
  padding: 24px 28px;
  background: linear-gradient(180deg, var(--bg-tint) 0%, #fff 100%);
  border: 1px solid var(--line);
  border-left: 4px solid var(--mainColor);
  border-radius: 4px;
}
.col-tldr .tldr-label {
  display: inline-block;
  font-family: var(--font-en);
  font-size: 11px; font-weight: 800;
  letter-spacing: 0.14em;
  color: var(--mainColor);
  text-transform: uppercase;
  margin-bottom: 12px;
}
.col-tldr h2 {
  all: unset;
  display: block;
  font-family: var(--font-kr);
  font-size: 14px; font-weight: 700;
  color: var(--text-strong);
  letter-spacing: -0.01em;
  margin-bottom: 12px;
}
.col-tldr ul {
  margin: 0; padding-left: 20px;
  list-style: disc;
}
.col-tldr li {
  font-size: 15px; line-height: 1.65;
  color: var(--text);
  margin-bottom: 6px;
}
.col-tldr li:last-child { margin-bottom: 0; }
.col-tldr li b { color: var(--text-strong); font-weight: 700; }

/* Table of Contents */
.col-toc {
  margin: 24px 0 40px;
  padding: 20px 24px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 4px;
}
.col-toc-label {
  font-family: var(--font-en);
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--text-mute);
  text-transform: uppercase;
  margin-bottom: 12px;
}
.col-toc ol {
  margin: 0; padding-left: 0;
  list-style: none;
  font-family: var(--font-kr);
  color: var(--text-mute);
  counter-reset: none;
}
.col-toc li {
  padding: 4px 0;
  font-size: 14px;
}
/* 앵커 이동 시 sticky 헤더 가림 방지 */
.col-body h2[id] {
  scroll-margin-top: 88px;
}
.col-toc li a {
  color: var(--text);
  font-family: var(--font-kr);
  font-weight: 500;
  border-bottom: 1px solid transparent;
  transition: all .15s;
}
.col-toc li a:hover {
  color: var(--mainColor);
  border-bottom-color: var(--mainColor);
}

/* ==========================================
   FAQ 섹션 (본문 하단, AEO/FAQPage용)
   ========================================== */
.col-faq {
  max-width: var(--max-w); margin: 0 auto;
  padding: 0 40px 72px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.col-faq > * {
  max-width: 820px;
  width: 100%;
}
.col-faq .h {
  font-family: var(--font-en);
  font-size: 12px; font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--mainColor);
  margin-bottom: 12px;
  display: inline-flex; align-items: center; gap: 10px;
}
.col-faq .h::before {
  content: ''; width: 20px; height: 2px; background: var(--mainColor);
}
.col-faq h2 {
  font-size: 28px; font-weight: 800;
  letter-spacing: -0.025em;
  color: var(--text-strong);
  margin-bottom: 8px;
  line-height: 1.25;
}
.col-faq .faq-lead {
  font-size: 15px;
  color: var(--text-mute);
  line-height: 1.6;
  margin-bottom: 36px;
}

/* 각 FAQ 아이템: 카드 스타일 */
.col-faq-item {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 28px 32px;
  margin-bottom: 14px;
  transition: border-color .18s;
}
.col-faq-item:hover {
  border-color: var(--text-strong);
}
.col-faq-item:last-child { margin-bottom: 0; }

/* 질문 — 진하고 명확한 상단 라인 */
.col-faq-item .q {
  position: relative;
  padding-left: 44px;
  font-size: 18px;
  font-weight: 700;
  color: var(--text-strong);
  letter-spacing: -0.02em;
  line-height: 1.5;
  margin-bottom: 18px;
}
.col-faq-item .q::before {
  content: 'Q';
  position: absolute;
  left: 0; top: -2px;
  width: 30px; height: 30px;
  background: var(--mainColor);
  color: #fff;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-en);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
  flex-shrink: 0;
}

/* 답변 — 넉넉한 여백 + 큰 폰트 + 회색 배경으로 분리 */
.col-faq-item .a {
  position: relative;
  padding: 20px 22px 20px 62px;
  background: var(--bg-tint);
  border-left: 3px solid var(--mainColor);
  border-radius: 4px;
  font-size: 16px;
  line-height: 1.75;
  color: var(--text);
  letter-spacing: -0.005em;
}
.col-faq-item .a::before {
  content: 'A';
  position: absolute;
  left: 22px; top: 20px;
  width: 26px; height: 26px;
  background: #fff;
  color: var(--mainColor);
  border: 1.5px solid var(--mainColor);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-en);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0;
  flex-shrink: 0;
}
.col-faq-item .a b {
  color: var(--text-strong);
  font-weight: 700;
}

@media (max-width: 720px) {
  .col-faq-item {
    padding: 22px 20px;
  }
  .col-faq-item .q {
    font-size: 16px;
    padding-left: 38px;
  }
  .col-faq-item .q::before {
    width: 26px; height: 26px;
    font-size: 12px;
  }
  .col-faq-item .a {
    padding: 18px 18px 18px 52px;
    font-size: 15px;
  }
  .col-faq-item .a::before {
    left: 16px; top: 18px;
    width: 22px; height: 22px;
    font-size: 11px;
  }
}

/* 공유 버튼 — 히어로 byline 우측에 통합 · 또는 히어로 하단 별도 */
.col-share {
  max-width: var(--max-w); margin: 0 auto;
  padding: 0 40px;
  display: flex; align-items: center; justify-content: center;
  flex-wrap: wrap;
}
.col-share .share-inner {
  max-width: 820px;
  width: 100%;
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}
.col-share .share-label {
  font-family: var(--font-en);
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--text-mute);
  text-transform: uppercase;
  margin-right: 6px;
}
.col-share button {
  display: inline-flex; align-items: center; gap: 6px;
  height: 36px; padding: 0 14px;
  border-radius: 18px;
  border: 1px solid var(--line);
  background: #fff;
  font-family: var(--font-kr);
  font-size: 13px; font-weight: 600;
  color: var(--text);
  cursor: pointer;
  transition: all .18s;
}
.col-share button:hover {
  border-color: var(--text-strong);
  color: var(--text-strong);
  transform: translateY(-1px);
}
.col-share button svg {
  width: 16px; height: 16px;
  flex-shrink: 0;
}
.col-share .btn-share {
  /* 기본 button 스타일 상속. 필요 시 추가 강조 */
}
.col-share .btn-share:first-of-type {
  background: var(--text-strong);
  border-color: var(--text-strong);
  color: #fff;
}
.col-share .btn-share:first-of-type:hover {
  background: var(--mainColor);
  border-color: var(--mainColor);
  color: #fff;
}
.col-share .share-toast {
  position: fixed;
  bottom: 40px; left: 50%;
  transform: translateX(-50%);
  padding: 12px 24px;
  background: var(--text-strong);
  color: #fff;
  border-radius: 4px;
  font-size: 13px; font-weight: 500;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s;
  z-index: 100;
}
.col-share .share-toast.show { opacity: 1; }

/* 앵커된 h2 (TOC 스크롤용) */
.col-body h2[id] {
  scroll-margin-top: 90px;
}
.col-body .drop-cap::first-letter {
  float: left;
  font-family: var(--font-en);
  font-size: 72px;
  font-weight: 800;
  line-height: 0.85;
  padding: 8px 12px 0 0;
  color: var(--mainColor);
}
.col-body p {
  margin: 0 0 22px;
  text-align: justify;
}
.col-body p b { color: var(--text-strong); font-weight: 700; }
.col-body h2 {
  margin: 56px 0 20px;
  font-size: 26px; font-weight: 800;
  letter-spacing: -0.025em;
  color: var(--text-strong);
  padding-left: 14px;
  border-left: 4px solid var(--mainColor);
  line-height: 1.35;
}
.col-body h3 {
  margin: 40px 0 14px;
  font-size: 19px; font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--text-strong);
}
.col-body blockquote {
  margin: 36px 0;
  padding: 28px 34px;
  background: var(--bg-tint);
  border-left: 4px solid var(--text-strong);
  font-size: 18px;
  line-height: 1.7;
  color: var(--text-strong);
  font-weight: 500;
}
.col-body blockquote p:last-child { margin-bottom: 0; }
.col-body blockquote cite {
  display: block; margin-top: 12px;
  font-size: 13px; color: var(--text-mute);
  font-style: normal; font-weight: 500;
}
.col-body ul, .col-body ol {
  margin: 0 0 22px 24px;
}
.col-body li { margin-bottom: 10px; }
.col-body .callout {
  margin: 32px 0;
  padding: 28px 32px;
  background: #1a1a1a;
  color: #fff;
  border-radius: 8px;
}
.col-body .callout .label {
  font-family: var(--font-en); font-size: 11px;
  font-weight: 700; letter-spacing: 0.14em;
  color: #ff6b7a; text-transform: uppercase;
  margin-bottom: 12px;
}
.col-body .callout h4 {
  font-size: 18px; font-weight: 800;
  letter-spacing: -0.02em; color: #fff;
  margin-bottom: 10px;
}
.col-body .callout p {
  color: rgba(255,255,255,0.85); margin: 0;
  font-size: 15px; line-height: 1.65;
}
.col-body .callout p + p { margin-top: 12px; }
.col-body .callout p b,
.col-body .callout b,
.col-body .callout strong { color: #fff; font-weight: 700; }
.col-body .callout ul,
.col-body .callout ol { margin: 12px 0 0 22px; color: rgba(255,255,255,0.85); }
.col-body .callout li { margin-bottom: 6px; }
.col-body .callout a { color: #ff9aa8; text-decoration: underline; }
.col-body .callout code {
  background: rgba(255,255,255,0.12);
  color: #ffb3bd;
}
.col-body table {
  width: 100%;
  border-collapse: collapse;
  margin: 24px 0;
  font-size: 14px;
}
.col-body pre {
  background: #1a1a1a;
  color: #d0d0d0;
  padding: 20px;
  border-radius: 6px;
  font-size: 12.5px;
  overflow-x: auto;
  line-height: 1.6;
  font-family: 'Menlo', 'Monaco', 'SF Mono', monospace;
  margin: 20px 0;
}
.col-body pre code { font-family: inherit; }
.col-body code {
  background: var(--bg-tint);
  color: var(--mainColor);
  padding: 2px 6px;
  border-radius: 3px;
  font-size: 0.9em;
  font-family: 'Menlo', monospace;
}
.col-body pre code {
  background: transparent;
  color: inherit;
  padding: 0;
}

.col-footer {
  max-width: var(--max-w); margin: 0 auto;
  padding: 0 40px 96px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.col-footer > * {
  max-width: 820px;
  width: 100%;
}
.col-footer .divider {
  height: 1px; background: var(--line);
  margin-bottom: 40px;
}
.col-footer .author-box {
  display: flex; gap: 20px; align-items: flex-start;
  padding: 28px 32px;
  background: var(--bg-tint);
  border-radius: 10px;
}
.col-footer .author-mark {
  width: 60px; height: 60px;
  background: var(--mainColor);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-en);
  font-size: 20px; font-weight: 800;
  border-radius: 50%; flex-shrink: 0;
  letter-spacing: -0.02em;
}
.col-footer .author-info h5 {
  font-size: 16px; font-weight: 800;
  color: var(--text-strong); letter-spacing: -0.02em;
  margin-bottom: 4px;
}
.col-footer .author-info p {
  font-size: 13.5px; color: var(--text-mute);
  line-height: 1.6;
}
.col-footer .author-info p b {
  color: var(--text-strong); font-weight: 700;
}

.col-cta {
  margin-top: 48px;
  padding: 40px 44px;
  background: var(--text-strong);
  color: #fff;
  border-radius: 10px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 32px; flex-wrap: wrap;
}
.col-cta h4 {
  font-size: 20px; font-weight: 800;
  letter-spacing: -0.02em; color: #fff;
  margin-bottom: 8px;
}
.col-cta p {
  font-size: 14px; line-height: 1.6;
  color: rgba(255,255,255,0.75);
}
.col-cta a {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 24px;
  background: var(--mainColor); color: #fff;
  font-size: 13px; font-weight: 700;
  letter-spacing: -0.01em;
  border-radius: 3px;
  transition: background .2s;
  flex-shrink: 0;
}
.col-cta a:hover { background: #fff; color: var(--mainColor); }

.col-related {
  max-width: var(--max-w); margin: 0 auto;
  padding: 0 40px 96px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.col-related > * {
  max-width: 820px;
  width: 100%;
}
.col-related .h {
  font-family: var(--font-en); font-size: 12px;
  font-weight: 700; letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--mainColor);
  margin-bottom: 20px;
  display: inline-flex; align-items: center; gap: 10px;
}
.col-related .h::before {
  content:''; width: 20px; height: 2px; background: var(--mainColor);
}
.col-related-grid {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.col-related-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 24px 26px;
  transition: all .2s;
}
.col-related-card:hover {
  border-color: var(--mainColor);
  transform: translateY(-2px);
}
.col-related-card .date {
  font-family: var(--font-en); font-size: 12px;
  color: var(--text-mute); font-weight: 600;
  letter-spacing: 0.02em;
}
.col-related-card .title {
  margin-top: 8px;
  font-size: 16px; font-weight: 700;
  color: var(--text-strong); letter-spacing: -0.02em;
  line-height: 1.4;
}

@media (max-width: 720px) {
  .col-hero, .col-body, .col-footer, .col-related {
    padding-left: 24px; padding-right: 24px;
  }
  .col-hero { padding-top: 48px; padding-bottom: 40px; }
  .col-body { padding-top: 40px; padding-bottom: 72px; font-size: 16px; }
  .col-body h2 { font-size: 22px; margin: 40px 0 16px; }
  .col-related-grid { grid-template-columns: 1fr; }
  .col-cta { padding: 28px; }
}

/* ==========================================
   2컬럼 레이아웃 (좌: 월별 아카이브 · 우: 본문)
   ========================================== */
.col-detail-layout {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 32px 40px 0;
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 48px;
  align-items: start;
}

/* 좌측 사이드바 (sticky) */
.col-detail-sidebar {
  position: sticky;
  top: 96px;
}
.col-detail-sidebar .col-sidebar-title {
  font-family: var(--font-en);
  font-size: 11px; font-weight: 800;
  letter-spacing: 0.14em;
  color: var(--mainColor);
  text-transform: uppercase;
  margin-bottom: 14px;
  display: inline-flex; align-items: center; gap: 10px;
}
.col-detail-sidebar .col-sidebar-title::before {
  content: ''; width: 20px; height: 2px; background: var(--mainColor);
}
.col-detail-sidebar h3 {
  font-size: 18px; font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--text-strong);
  margin-bottom: 18px;
  padding-bottom: 14px;
  border-bottom: 2px solid var(--text-strong);
}
.col-detail-sidebar .month-list {
  list-style: none; padding: 0; margin: 0;
}
.col-detail-sidebar .month-list li { padding: 0; margin: 0; }
.col-detail-sidebar .month-list a {
  display: flex; align-items: center; justify-content: space-between;
  width: 100%;
  padding: 12px 4px;
  text-decoration: none;
  color: var(--text);
  font-size: 14.5px; font-weight: 500;
  letter-spacing: -0.01em;
  border-bottom: 1px solid var(--line);
  transition: all .18s;
}
.col-detail-sidebar .month-list a:hover {
  color: var(--text-strong);
  padding-left: 8px;
}
.col-detail-sidebar .month-list .count {
  font-family: var(--font-en);
  font-size: 12px; font-weight: 600;
  color: var(--text-light);
  background: var(--bg-tint);
  padding: 2px 8px;
  border-radius: 10px;
  min-width: 26px;
  text-align: center;
}
.col-detail-sidebar .month-list-en {
  font-family: var(--font-en);
  font-size: 11px; font-weight: 700;
  color: var(--text-light);
  letter-spacing: 0.08em;
  margin-left: 6px;
}

/* 우측 본문 — 기존 col-* 컨테이너의 max-width를 sub-container 폭으로 재조정 */
.col-detail-main {
  min-width: 0;
}
.col-detail-main .col-hero,
.col-detail-main .col-share,
.col-detail-main .col-body,
.col-detail-main .col-faq,
.col-detail-main .col-footer,
.col-detail-main .col-related {
  max-width: 100% !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
}
.col-detail-main .col-hero {
  padding-top: 0 !important;
  padding-bottom: 40px !important;
  align-items: flex-start !important;
}
.col-detail-main .col-hero > * {
  max-width: 100%;
}
.col-detail-main .col-body,
.col-detail-main .col-faq,
.col-detail-main .col-footer,
.col-detail-main .col-related,
.col-detail-main .col-share {
  --col-hero-align: flex-start;
}
.col-detail-main .col-body > *,
.col-detail-main .col-faq > *,
.col-detail-main .col-footer > *,
.col-detail-main .col-related > *,
.col-detail-main .col-share > * {
  max-width: 100%;
}
/* 본문 텍스트는 여전히 720px 안쪽에서 가독성 유지 */
.col-detail-main .col-body {
  padding-top: 40px !important;
  padding-bottom: 72px !important;
}

/* 파일명 코드 (필자 정보 아래) */
.col-file-id {
  margin-top: 14px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 4px 10px 4px 8px;
  background: var(--bg-tint);
  border: 1px solid var(--line);
  border-radius: 4px;
}
.col-file-id .file-id-label {
  font-family: var(--font-en);
  font-size: 10px; font-weight: 800;
  letter-spacing: 0.14em;
  color: var(--mainColor);
  text-transform: uppercase;
  padding: 1px 6px;
  background: var(--mainColor-tint, rgba(185,8,33,0.08));
  border-radius: 2px;
}
.col-file-id .file-id-code {
  font-family: 'Menlo', 'Monaco', 'SF Mono', monospace;
  font-size: 12px;
  color: var(--text-mute);
  letter-spacing: 0.02em;
  background: transparent;
  padding: 0;
  user-select: all;
}

/* 반응형: 900px 이하 사이드바 위로 이동 */
@media (max-width: 900px) {
  .col-detail-layout {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 24px 24px 0;
  }
  .col-detail-sidebar { position: static; }
  .col-detail-sidebar h3 { font-size: 16px; margin-bottom: 12px; }
  .col-detail-sidebar .month-list {
    display: flex; flex-wrap: wrap; gap: 6px;
  }
  .col-detail-sidebar .month-list li { flex: 0 0 auto; }
  .col-detail-sidebar .month-list a {
    border: 1px solid var(--line);
    border-radius: 20px;
    padding: 8px 14px;
    gap: 8px;
  }
  .col-detail-sidebar .month-list a:hover {
    border-color: var(--text-strong);
    padding-left: 14px;
  }
}
