/* === 重置与基础 === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg: #f5f0e8;
  --card-bg: #fff;
  --text: #3e2723;
  --text-secondary: #5d4037;
  --text-muted: #8d6e63;
  --nav-bg: #2c3e50;
  --police-blue: #1a3a5c;
  --nav-text: #ecf0f1;
  --accent-red: #c0392b;
  --accent-orange: #e67e22;
  --accent-blue: #2980b9;
  --accent-green: #27ae60;
  --accent-purple: #8e44ad;
  --border: #d6cec4;
  --shadow: 0 1px 3px rgba(0,0,0,0.08);
  --radius: 4px;
  --max-width: 1200px;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Microsoft YaHei", "PingFang SC", sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  min-height: 100vh;
}

a { color: var(--accent-blue); text-decoration: none; }
a:hover { text-decoration: underline; }

/* === 顶部导航栏 === */
.topnav {
  background: var(--nav-bg);
  color: var(--nav-text);
  padding: 10px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: sticky;
  top: 0;
  z-index: 100;
}

.topnav .logo {
  font-size: 18px;
  font-weight: bold;
  display: flex;
  align-items: center;
  gap: 6px;
}

.topnav .nav-links { display: flex; gap: 16px; font-size: 14px; }
.topnav .nav-links a { color: #bbb; }
.topnav .nav-links a.active { color: #e74c3c; border-bottom: 2px solid #e74c3c; }

/* 导航栏下拉菜单 */
.dropdown { position: relative; display: inline-block; }
.dropdown-toggle { color: #bbb; cursor: pointer; font-size: 14px; user-select: none; }
.dropdown-toggle:hover { color: #fff; }
.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  right: 0;
  background: var(--nav-bg);
  min-width: 140px;
  border-radius: 4px;
  padding: 6px 0;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
  z-index: 200;
}
.dropdown:hover .dropdown-menu { display: block; }
.dropdown-menu a {
  display: block;
  padding: 8px 16px;
  color: #bbb !important;
  font-size: 13px;
  white-space: nowrap;
}
.dropdown-menu a:hover { background: rgba(255,255,255,0.1); color: #fff !important; }

.hamburger {
  display: none;
  background: none;
  border: none;
  color: var(--nav-text);
  font-size: 22px;
  cursor: pointer;
}

@media (max-width: 900px) {
  .topnav .nav-links { display: none; flex-direction: column; position: absolute; top: 44px; left: 0; right: 0; background: var(--nav-bg); padding: 10px 16px; max-height: 80vh; overflow-y: auto; }
  .topnav .nav-links.open { display: flex; }
  .hamburger { display: block; }
}

/* === 搜索栏 === */
.search-bar {
  max-width: var(--max-width);
  margin: 20px auto;
  padding: 0 16px;
}

.search-bar input {
  width: 100%;
  padding: 10px 14px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: 15px;
  background: var(--card-bg);
  color: var(--text);
}

/* === 卡片网格 === */
.card-grid {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 16px 24px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

@media (max-width: 900px) { .card-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .card-grid { grid-template-columns: repeat(2, 1fr); } }

.module-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 28px 20px 22px;
  text-align: center;
  box-shadow: var(--shadow);
  transition: transform 0.15s;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 180px;
}

.module-card:hover { transform: translateY(-2px); }

.module-card .icon { font-size: 42px; margin-bottom: 10px; line-height: 1; }
.module-card .name { font-weight: bold; font-size: 16px; margin-bottom: 6px; color: var(--text); }
.module-card .desc { color: var(--text-secondary); font-size: 13px; margin-bottom: 4px; }

.module-card .count {
  font-size: 12px;
  color: var(--text-muted);
  margin-bottom: 6px;
  background: var(--bg);
  padding: 2px 10px;
  border-radius: 10px;
  display: inline-block;
}

.module-card .hot-links {
  font-size: 11px;
  color: var(--text-muted);
  margin-top: 8px;
  line-height: 1.7;
}

.module-card.accent-red    { border-top: 3px solid var(--accent-red); }
.module-card.accent-blue   { border-top: 3px solid var(--accent-blue); }
.module-card.accent-green  { border-top: 3px solid var(--accent-green); }
.module-card.accent-purple { border-top: 3px solid var(--accent-purple); }
.module-card.accent-orange { border-top: 3px solid var(--accent-orange); }
.module-card.accent-dark   { border-top: 3px solid var(--nav-bg); }
.module-card.accent-teal   { border-top: 3px solid #16a085; }

/* === 面包屑 === */
.breadcrumb {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 12px 16px 0;
  font-size: 13px;
  color: var(--text-muted);
}

.breadcrumb a { color: var(--accent-blue); }
.breadcrumb .current { color: var(--accent-red); font-weight: bold; }

/* === 页面容器 === */
.page-container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 16px 40px;
}

/* === 页面标题区 === */
.page-title {
  margin-bottom: 16px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--border);
}

.page-title h1 { font-size: 22px; color: var(--text); }

.page-title .meta {
  display: flex;
  gap: 12px;
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 4px;
  flex-wrap: wrap;
}

.meta .tag {
  background: var(--bg);
  padding: 2px 8px;
  border-radius: 3px;
  font-size: 11px;
}

.tag {
  display: inline-block;
  background: var(--bg);
  padding: 2px 10px;
  border-radius: 3px;
  font-size: 12px;
  color: var(--text-muted);
}

.meta .tag.risk-high { color: var(--accent-red); font-weight: bold; }
.meta .tag.risk-mid  { color: var(--accent-orange); font-weight: bold; }

/* === 步骤卡片 === */
.step-card {
  background: var(--card-bg);
  border-left: 3px solid var(--accent-red);
  border-radius: var(--radius);
  padding: 18px 20px;
  margin-bottom: 16px;
  box-shadow: var(--shadow);
}

.step-card .step-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}

.step-card .step-num {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  color: #fff;
  text-align: center;
  line-height: 26px;
  font-size: 13px;
  font-weight: bold;
  flex-shrink: 0;
}

.step-card .step-title { font-weight: bold; font-size: 16px; }

.step-card .step-text {
  color: var(--text-secondary);
  font-size: 15px;
  line-height: 1.9;
  margin-bottom: 10px;
}

.step-text p {
  margin-bottom: 10px;
}

.step-card .step-media {
  background: var(--bg);
  padding: 10px 14px;
  border-radius: var(--radius);
  margin-bottom: 6px;
  font-size: 13px;
  color: var(--text-muted);
  text-align: center;
}

/* 步骤颜色变体 */
.step-red    { border-left-color: var(--accent-red); }
.step-red    .step-num { background: var(--accent-red); }
.step-orange { border-left-color: var(--accent-orange); }
.step-orange .step-num { background: var(--accent-orange); }
.step-blue   { border-left-color: var(--accent-blue); }
.step-blue   .step-num { background: var(--accent-blue); }
.step-green  { border-left-color: var(--accent-green); }
.step-green  .step-num { background: var(--accent-green); }
.step-purple { border-left-color: var(--accent-purple); }
.step-purple .step-num { background: var(--accent-purple); }

/* === 底部导航 === */
.page-nav {
  display: flex;
  justify-content: space-between;
  margin-top: 20px;
  padding-top: 12px;
  border-top: 1px solid var(--border);
  font-size: 14px;
}

/* === 内容列表（装备/巡逻页用） === */
.content-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.content-item {
  background: var(--card-bg);
  border-left: 3px solid var(--accent-blue);
  border-radius: var(--radius);
  padding: 18px 20px;
  box-shadow: var(--shadow);
  margin-bottom: 16px;
}

.content-item h3 { font-size: 16px; margin-bottom: 6px; color: var(--text); }
.content-item p  { font-size: 13px; color: var(--text-secondary); line-height: 1.7; }

.content-item .legal-ref {
  display: inline-block;
  margin-top: 6px;
  background: var(--bg);
  padding: 3px 8px;
  border-radius: 3px;
  font-size: 11px;
  color: var(--text-muted);
}

/* === 列表分组标题 === */
.list-section-title {
  font-size: 14px;
  font-weight: bold;
  color: var(--text-secondary);
  margin: 20px 0 8px;
  padding-bottom: 4px;
  border-bottom: 1px solid var(--border);
}

.list-section-title:first-child { margin-top: 0; }

/* === 列表页 === */
.list-page .list-item {
  display: block;
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 14px 18px;
  margin-bottom: 10px;
  box-shadow: var(--shadow);
}

.list-page .list-item:hover { border-color: var(--accent-red); }

.list-page .list-item .item-title { font-weight: bold; font-size: 15px; color: var(--text); }
.list-page .list-item .item-desc { font-size: 12px; color: var(--text-muted); margin-top: 2px; }

/* === 展开/收起 === */
.show-more {
  text-align: center;
  margin-top: 8px;
  font-size: 13px;
  color: var(--text-muted);
  cursor: pointer;
}

/* === 占位媒体 === */
.media-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  color: var(--text-muted);
}

.media-placeholder.img { min-height: 80px; border: 1px dashed var(--border); border-radius: var(--radius); }
.media-placeholder.video { min-height: 60px; border: 1px dashed var(--border); border-radius: var(--radius); }

/* === 速览卡片 === */
.quick-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-left: 4px solid var(--nav-bg);
  border-radius: var(--radius);
  padding: 16px 20px;
  margin-bottom: 20px;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  box-shadow: var(--shadow);
}

.quick-card .quick-icon {
  font-size: 36px;
  flex-shrink: 0;
  line-height: 1;
}

.quick-card .quick-body h2 {
  font-size: 18px;
  margin-bottom: 6px;
  color: var(--text);
}

.quick-card .quick-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 4px;
}

.quick-card .quick-flow {
  font-size: 13px;
  color: var(--text-secondary);
  margin-top: 4px;
}

/* === 核心结论 === */
.step-lead {
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 12px;
  line-height: 1.6;
}

/* === 步骤媒体（真实图片/视频） === */
.step-media {
  margin: 10px 0;
  text-align: center;
}

.step-media img,
.step-media video {
  max-width: 100%;
  border-radius: 4px;
  border: 1px solid var(--border);
}

.step-media .caption {
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 4px;
}

/* 多图并排布局 */
.step-media.col2 { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.step-media.col3 { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 10px; }
.step-media.col2 img,
.step-media.col2 video,
.step-media.col3 img,
.step-media.col3 video { width: 100%; height: auto; object-fit: cover; aspect-ratio: 4/3; }
@media (max-width: 768px) {
  .step-media.col3 { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 500px) {
  .step-media.col2,
  .step-media.col3 { grid-template-columns: 1fr; }
}

/* === 折叠组件 === */
.expandable-full {
  display: none;
  margin-top: 6px;
}

.expandable-full.open {
  display: block;
}

.expand-btn {
  display: inline-block;
  background: none;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 4px 12px;
  font-size: 13px;
  color: var(--accent-blue);
  cursor: pointer;
  margin-top: 6px;
}

.expand-btn:hover {
  background: var(--bg);
}

/* === 每日一学 === */
.daily-section {
  max-width: var(--max-width);
  margin: 0 auto 40px;
  padding: 0 16px;
}

.daily-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-left: 4px solid var(--accent-red);
  border-radius: var(--radius);
  padding: 24px 28px;
  box-shadow: var(--shadow);
}

.daily-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--border);
}

.daily-header .daily-label {
  font-weight: bold;
  font-size: 16px;
  color: var(--accent-red);
}

.daily-header .daily-date {
  font-size: 13px;
  color: var(--text-muted);
}

.daily-case-title {
  font-size: 18px;
  font-weight: bold;
  color: var(--text);
  margin-bottom: 14px;
}

.daily-case-body {
  font-size: 14px;
  line-height: 1.9;
  color: var(--text-secondary);
  margin-bottom: 16px;
}

.daily-tips {
  background: var(--bg);
  border-radius: var(--radius);
  padding: 14px 18px;
  margin-bottom: 16px;
}

.daily-tips .tips-title {
  font-size: 14px;
  font-weight: bold;
  color: var(--text);
  margin-bottom: 8px;
}

.daily-tips ul {
  list-style: none;
  padding: 0;
}

.daily-tips li {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.8;
  padding-left: 12px;
  position: relative;
}

.daily-tips li::before {
  content: '·';
  position: absolute;
  left: 0;
  font-weight: bold;
  color: var(--accent-red);
}

.daily-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
}

.daily-nav button {
  background: none;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 4px 14px;
  font-size: 13px;
  color: var(--accent-blue);
  cursor: pointer;
}

.daily-nav button:hover {
  background: var(--bg);
  border-color: var(--accent-blue);
}

.daily-nav .daily-counter {
  color: var(--text-muted);
}

/* === 每月一学首页横幅 === */
.monthly-hero {
  max-width: var(--max-width);
  margin: 0 auto 24px;
  padding: 0 16px;
}

.monthly-hero-inner {
  background: var(--police-blue);
  border-radius: 8px;
  padding: 32px 36px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  display: flex;
  flex-direction: column;
  gap: 10px;
  position: relative;
  overflow: hidden;
}

.monthly-hero-inner::before {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 120px; height: 120px;
  background: radial-gradient(circle, rgba(212,168,67,0.15) 0%, transparent 70%);
  pointer-events: none;
}

.monthly-hero .hero-label {
  font-size: 12px;
  color: #d4a843;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 600;
}

.monthly-hero .hero-theme {
  font-size: 24px;
  font-weight: bold;
  color: #fff;
  line-height: 1.3;
}

.monthly-hero .hero-summary {
  font-size: 14px;
  color: #bbb;
  line-height: 1.6;
}

.monthly-hero .hero-link {
  display: inline-block;
  margin-top: 6px;
  padding: 8px 20px;
  background: #d4a843;
  color: #1a1a2e;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  align-self: flex-start;
  transition: background 0.15s;
}

.monthly-hero .hero-link:hover {
  background: #c59a30;
  text-decoration: none;
}

@media (max-width: 600px) {
  .monthly-hero-inner {
    padding: 24px 20px;
  }
  .monthly-hero .hero-theme {
    font-size: 20px;
  }
}

/* === 导航栏金色入口 === */
.nav-links a.monthly-link {
  color: #d4a843 !important;
  font-weight: 600;
  border: 1px solid #d4a843;
  border-radius: 4px;
  padding: 2px 10px;
}

.nav-links a.monthly-link:hover {
  background: rgba(212,168,67,0.15);
}

.nav-links a.monthly-link.active {
  background: #d4a843;
  color: #1a1a2e !important;
  border-bottom: none;
}

/* === 杂志内页 === */
.magazine-page {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 16px 60px;
}

.magazine-header {
  text-align: center;
  padding: 40px 0 32px;
}

.magazine-header .magazine-month {
  font-size: 14px;
  color: #d4a843;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.magazine-header .magazine-title {
  font-size: 28px;
  font-weight: bold;
  color: var(--text);
  line-height: 1.3;
  margin-bottom: 12px;
}

.magazine-header .magazine-subtitle {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.6;
  max-width: 600px;
  margin: 0 auto;
}

.magazine-cover {
  margin: 0 auto 36px;
  max-width: 700px;
}

.magazine-cover img {
  width: 100%;
  border-radius: 6px;
  border: 1px solid var(--border);
}

.magazine-cover .cover-placeholder {
  width: 100%;
  height: 200px;
  background: linear-gradient(135deg, var(--police-blue) 0%, #2c5a8a 100%);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #d4a843;
  font-size: 48px;
}

.magazine-body {
  font-size: 15px;
  line-height: 1.9;
  color: var(--text-secondary);
}

.magazine-body h2 {
  font-size: 20px;
  color: var(--text);
  margin: 36px 0 14px;
  padding-left: 12px;
  border-left: 3px solid #d4a843;
}

.magazine-body h2:first-child {
  margin-top: 0;
}

.magazine-body p {
  margin-bottom: 14px;
}

.magazine-body ul,
.magazine-body ol {
  margin: 8px 0 16px 20px;
}

.magazine-body li {
  margin-bottom: 6px;
}

.magazine-body blockquote {
  margin: 16px 0;
  padding: 12px 18px;
  background: var(--bg);
  border-left: 3px solid var(--accent-orange);
  border-radius: var(--radius);
  font-size: 14px;
  color: var(--text-muted);
}

/* 参考资料区 */
.magazine-refs {
  margin-top: 40px;
  padding: 20px 24px;
  background: var(--bg);
  border-radius: 6px;
}

.magazine-refs h3 {
  font-size: 15px;
  color: var(--text);
  margin-bottom: 10px;
}

.magazine-refs a {
  display: block;
  font-size: 13px;
  color: var(--accent-blue);
  margin-bottom: 4px;
}

/* 往期精选 */
.magazine-archive {
  margin-top: 48px;
  padding-top: 24px;
  border-top: 2px solid var(--border);
}

.magazine-archive h3 {
  font-size: 16px;
  color: var(--text);
  margin-bottom: 16px;
}

.magazine-archive .archive-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

@media (max-width: 600px) {
  .magazine-archive .archive-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .magazine-header .magazine-title {
    font-size: 22px;
  }
  .magazine-body h2 {
    font-size: 18px;
  }
}

.magazine-archive .archive-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px 16px;
  text-align: center;
  box-shadow: var(--shadow);
  transition: transform 0.15s;
  display: block;
  text-decoration: none;
}

.magazine-archive .archive-card:hover {
  transform: translateY(-2px);
  text-decoration: none;
}

.magazine-archive .archive-card .archive-date {
  font-size: 12px;
  color: #d4a843;
  margin-bottom: 6px;
}

.magazine-archive .archive-card .archive-title {
  font-size: 14px;
  font-weight: bold;
  color: var(--text);
}

/* === 搜索下拉面板 === */
.search-dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 16px;
  right: 16px;
  max-width: calc(var(--max-width) - 32px);
  margin: 4px auto 0;
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 6px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
  z-index: 200;
  max-height: 480px;
  overflow-y: auto;
}

.search-dropdown.open {
  display: block;
}

.search-result-item {
  display: block;
  padding: 14px 18px;
  border-bottom: 1px solid var(--bg);
  text-decoration: none;
  transition: background 0.1s;
}

.search-result-item:last-child {
  border-bottom: none;
}

.search-result-item:hover {
  background: var(--bg);
  text-decoration: none;
}

.search-result-item .result-title {
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 4px;
}

.search-result-item .result-module {
  display: inline-block;
  font-size: 11px;
  color: var(--text-muted);
  background: var(--bg);
  padding: 1px 8px;
  border-radius: 3px;
  margin-bottom: 4px;
}

.search-result-item .result-desc {
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.5;
}

.search-highlight {
  color: var(--accent-red);
  font-weight: bold;
}

.search-more {
  display: block;
  text-align: center;
  padding: 12px;
  font-size: 13px;
  color: var(--accent-blue);
  border-top: 1px solid var(--bg);
  text-decoration: none;
}

.search-more:hover {
  background: var(--bg);
  text-decoration: none;
}

.search-empty {
  text-align: center;
  padding: 24px 18px;
  color: var(--text-muted);
  font-size: 14px;
}

.search-empty .empty-hint {
  font-size: 12px;
  margin-top: 6px;
  color: #bbb;
}

/* 搜索框下拉时的样式 */
.search-wrapper {
  position: relative;
  max-width: var(--max-width);
  margin: 20px auto;
  padding: 0 16px;
}

/* === 搜索结果全页 === */
.search-page {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 16px 60px;
}

.search-page .search-header {
  padding: 28px 0 20px;
  border-bottom: 2px solid var(--border);
  margin-bottom: 24px;
}

.search-page .search-query {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 4px;
}

.search-page .search-query strong {
  color: var(--accent-red);
  font-size: 15px;
}

.search-page .search-count {
  font-size: 12px;
  color: var(--text-muted);
}

.search-page .result-card {
  display: block;
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px 22px;
  margin-bottom: 12px;
  box-shadow: var(--shadow);
  text-decoration: none;
  transition: border-color 0.15s;
}

.search-page .result-card:hover {
  border-color: var(--accent-red);
  text-decoration: none;
}

.search-page .result-card .card-title {
  font-size: 17px;
  font-weight: bold;
  color: var(--text);
  margin-bottom: 6px;
}

.search-page .result-card .card-module {
  font-size: 12px;
  color: var(--text-muted);
  margin-bottom: 6px;
}

.search-page .result-card .card-desc {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.7;
}

.search-page .result-card .card-tags {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  margin-top: 8px;
}

.search-page .back-link {
  display: inline-block;
  margin-top: 20px;
  font-size: 14px;
  color: var(--accent-blue);
}
