/**
 * ColorCoat News Page Stylesheet
 * Style Philosophy: Neo-Industrial Premium
 * Color Palette: Deep Blue (#001A3A), Classic Navy (#002B63), Electric Blue (#0B4EDB), Light Gray (#F5F7FA)
 */

/* ==========================================================================
   1. Reset & Global Base
   ========================================================================== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  /* Color Tokens */
  --color-primary-dark: #001A3A;   /* 深蓝 - 背景与主标题 */
  --color-primary-navy: #002B63;   /* 经典海军蓝 - 次要深色 */
  --color-accent-blue: #0B4EDB;    /* 极速亮蓝 - 按钮、激活态、链接 */
  --color-accent-hover: #083cb3;   /* 亮蓝 Hover */
  --color-bg-light: #F5F7FA;       /* 浅灰底色 */
  --color-text-dark: #1E293B;      /* 深灰文本 */
  --color-text-muted: #64748B;     /* 柔和灰色文本 */
  --color-border: #E2E8F0;         /* 浅灰分割线 */
  --color-white: #FFFFFF;
  
  /* Fonts */
  --font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  
  /* Transitions */
  --transition-fast: 0.15s ease-out;
  --transition-normal: 0.25s cubic-bezier(0.23, 1, 0.32, 1); /* Snappy ease-out */
  
  /* Shadows */
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.05), 0 4px 6px -2px rgba(0, 0, 0, 0.02);
  --shadow-hover: 0 20px 25px -5px rgba(0, 0, 0, 0.08), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

body {
  font-family: var(--font-family);
  background-color: var(--color-bg-light);
  color: var(--color-text-dark);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition-fast);
}

img {
  max-width: 100%;
  display: block;
  object-fit: cover;
}

button {
  font-family: inherit;
  border: none;
  background: none;
  cursor: pointer;
  outline: none;
}

/* Container */
.container {
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 80px);
}

/* Icons */
.icon {
  width: 16px;
  height: 16px;
  vertical-align: middle;
}

/* ==========================================================================
   4. Hero Section (首屏)
   ========================================================================== */
.hero-section {
  position: relative;
  height: 290px;
  background-color: var(--color-primary-dark);
  color: var(--color-white);
  overflow: hidden;
  display: flex;
  align-items: center;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: right center;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, rgba(0, 26, 58, 0.95) 0%, rgba(0, 26, 58, 0.8) 40%, rgba(0, 26, 58, 0.2) 100%);
}

.hero-container {
  position: relative;
  z-index: 2;
}

.hero-content {
  max-width: 600px;
}

.hero-title {
  font-size: 48px;
  font-weight: 800;
  margin-bottom: 16px;
  letter-spacing: -1px;
}

.hero-desc {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.5;
  font-weight: 400;
}

/* ==========================================================================
   5. Filter Section (分类 Tab + 搜索)
   ========================================================================== */
.filter-section {
  background-color: var(--color-white);
  border-bottom: 1px solid var(--color-border);
  padding: 16px 0;
}

.filter-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}

.tabs-wrapper {
  overflow-x: auto;
  scrollbar-width: none; /* Firefox */
}

.tabs-wrapper::-webkit-scrollbar {
  display: none; /* Chrome, Safari, Opera */
}

.tabs {
  display: flex;
  gap: 28px;
  white-space: nowrap;
}

.tab-btn {
  display: inline-block;
  font-size: 15px;
  font-weight: 500;
  color: var(--color-text-muted);
  padding: 12px 0;
  position: relative;
  transition: var(--transition-fast);
  text-decoration: none;
}

.tab-btn:hover {
  color: var(--color-primary-navy);
}

.tab-btn::after {
  content: '';
  position: absolute;
  bottom: -16px; /* Align to the filter-section bottom border */
  left: 0;
  width: 100%;
  height: 3px;
  background-color: var(--color-accent-blue);
  transform: scaleX(0);
  transition: transform var(--transition-normal);
  z-index: 2;
}

.tab-btn.active {
  color: var(--color-accent-blue);
  font-weight: 600;
}

.tab-btn.active::after {
  transform: scaleX(1);
}

/* Search Box */
.search-box {
  position: relative;
  width: 300px;
  flex-shrink: 0;
}

.search-box input {
  width: 100%;
  height: 44px;
  padding: 10px 44px 10px 16px;
  border: 1px solid var(--color-border);
  border-radius: 6px;
  font-size: 14px;
  font-family: inherit;
  color: var(--color-text-dark);
  transition: var(--transition-normal);
  background-color: var(--color-bg-light);
}

.search-box input:focus {
  border-color: var(--color-accent-blue);
  background-color: var(--color-white);
  box-shadow: 0 0 0 3px rgba(11, 78, 219, 0.15);
  outline: none;
}

.search-btn {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--color-text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-fast);
}

.search-btn:hover {
  color: var(--color-accent-blue);
}

/* ==========================================================================
   6. Main Content Layout (两栏布局)
   ========================================================================== */
.main-content {
  padding: 48px 0;
}

.main-layout {
  display: flex;
  gap: 36px;
}

.news-area {
  width: 74%;
  display: flex;
  flex-direction: column;
  gap: 36px;
}

.sidebar {
  width: 26%;
  display: flex;
  flex-direction: column;
  gap: 36px;
}

/* ==========================================================================
   7. Featured News Card (置顶新闻大卡片)
   ========================================================================== */
.featured-card {
  display: flex;
  background-color: var(--color-white);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--color-border);
  transition: var(--transition-normal);
}

.featured-img-box {
  width: 45%;
  position: relative;
  overflow: hidden;
}

.featured-img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.featured-content {
  width: 55%;
  padding: 32px;
  display: flex;
  flex-direction: column;
}

/* Card hover states */
.featured-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}

.featured-card:hover .featured-img-box img {
  transform: scale(1.03);
}

/* News Meta */
.news-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
  font-size: 12px;
  font-weight: 600;
}

.news-category {
  color: var(--color-accent-blue);
  letter-spacing: 0.5px;
}

.news-date {
  color: var(--color-text-muted);
}

/* Titles */
.featured-content .news-title {
  font-size: 24px;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 16px;
  color: var(--color-primary-dark);
}

.featured-content .news-title a:hover {
  color: var(--color-accent-blue);
}

/* Excerpt */
.news-excerpt {
  font-size: 14px;
  color: var(--color-text-muted);
  line-height: 1.6;
  margin-bottom: 24px;
  flex-grow: 1;
}

/* Read More Link */
.read-more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  color: var(--color-accent-blue);
}

.arrow-icon {
  width: 16px;
  height: 16px;
  transition: transform var(--transition-normal);
}

.read-more:hover {
  color: var(--color-accent-hover);
}

.read-more:hover .arrow-icon {
  transform: translateX(4px);
}

/* ==========================================================================
   8. News Grid (3列新闻网格)
   ========================================================================== */
.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.news-card {
  background-color: var(--color-white);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--color-border);
  display: flex;
  flex-direction: column;
  transition: var(--transition-normal);
}

.card-img-box {
  height: 145px;
  overflow: hidden;
  position: relative;
}

.card-img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.card-content {
  padding: 20px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.news-card .news-title {
  font-size: 16px;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 12px;
  color: var(--color-primary-dark);
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  height: 67px; /* Fix height for alignment */
}

.news-card .news-title a:hover {
  color: var(--color-accent-blue);
}

.news-card .news-excerpt {
  font-size: 13px;
  margin-bottom: 20px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  height: 62px; /* Fix height for alignment */
}

/* Card hover states */
.news-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}

.news-card:hover .card-img-box img {
  transform: scale(1.05);
}

/* ==========================================================================
   9. Pagination (分页)
   ========================================================================== */
.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
}

.page-btn, .page-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 6px;
  border: 1px solid var(--color-border);
  background-color: var(--color-white);
  font-size: 14px;
  font-weight: 600;
  color: var(--color-text-dark);
  transition: var(--transition-normal);
}

.page-btn:hover, .page-num:hover {
  border-color: var(--color-accent-blue);
  color: var(--color-accent-blue);
}

.page-num.active {
  background-color: var(--color-primary-dark);
  border-color: var(--color-primary-dark);
  color: var(--color-white);
}

.page-dots {
  color: var(--color-text-muted);
  width: 24px;
  text-align: center;
  font-weight: 600;
}

/* ==========================================================================
   10. Sidebar Widgets (侧边栏模块)
   ========================================================================== */
.widget {
  background-color: var(--color-white);
  border-radius: 8px;
  border: 1px solid var(--color-border);
  padding: 24px;
  box-shadow: var(--shadow-sm);
}

.widget-title {
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 1px;
  color: var(--color-primary-dark);
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
}

.widget-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 2px;
  background-color: var(--color-accent-blue);
}

/* Widget 1: Categories */
.category-list {
  list-style: none;
  display: flex;
  flex-direction: column;
}

.category-list li {
  border-bottom: 1px solid var(--color-bg-light);
}

.category-list li:last-child {
  border-bottom: none;
}

.category-link {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  font-size: 14px;
  font-weight: 500;
  color: var(--color-text-dark);
}

.category-link:hover {
  color: var(--color-accent-blue);
  padding-left: 4px;
}

.category-link.active {
  color: var(--color-accent-blue);
  font-weight: 600;
}

.cat-count {
  background-color: var(--color-bg-light);
  color: var(--color-text-muted);
  font-size: 12px;
  font-weight: 600;
  padding: 2px 8px;
  border-radius: 10px;
}

.category-link:hover .cat-count, .category-link.active .cat-count {
  background-color: rgba(11, 78, 219, 0.1);
  color: var(--color-accent-blue);
}

/* Widget 2: Popular Posts */
.popular-posts {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.popular-item {
  display: flex;
  gap: 12px;
  align-items: center;
}

.popular-img-box {
  width: 64px;
  height: 64px;
  border-radius: 6px;
  overflow: hidden;
  flex-shrink: 0;
}

.popular-img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-normal);
}

.popular-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.popular-item-title {
  font-size: 13px;
  font-weight: 600;
  line-height: 1.3;
  color: var(--color-primary-navy);
  margin-bottom: 4px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.popular-item-date {
  font-size: 11px;
  color: var(--color-text-muted);
}

.popular-item:hover .popular-item-title {
  color: var(--color-accent-blue);
}

.popular-item:hover .popular-img-box img {
  transform: scale(1.05);
}

/* Widget 3: Deep Blue CTA Card */
.question-cta-widget {
  background-color: var(--color-primary-dark);
  color: var(--color-white);
  border: none;
  text-align: center;
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.cta-icon-box {
  width: 54px;
  height: 54px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.cta-icon {
  width: 24px;
  height: 24px;
  color: var(--color-white);
}

.cta-title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 8px;
}

.cta-desc {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.5;
  margin-bottom: 24px;
}

.cta-btn {
  width: 100%;
  padding: 12px 20px;
}

/* ==========================================================================
   11. News Subscription Banner (订阅横幅)
   ========================================================================== */
.subscribe-section {
  background-color: var(--color-primary-navy);
  color: var(--color-white);
  padding: 48px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.subscribe-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
}

.subscribe-left {
  display: flex;
  align-items: center;
  gap: 24px;
  max-width: 600px;
}

.subscribe-icon-box {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.subscribe-icon {
  width: 24px;
  height: 24px;
  color: var(--color-white);
}

.subscribe-text {
  display: flex;
  flex-direction: column;
}

.subscribe-title {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 8px;
  letter-spacing: -0.5px;
}

.subscribe-desc {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.4;
}

.subscribe-right {
  flex-grow: 1;
  max-width: 480px;
}

.subscribe-form {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.subscribe-form .input-group {
  display: flex;
  width: 100%;
}

.subscribe-form input {
  flex-grow: 1;
  height: 48px;
  padding: 12px 16px;
  border-radius: 6px 0 0 6px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background-color: rgba(255, 255, 255, 0.1);
  color: var(--color-white);
  font-size: 14px;
  font-family: inherit;
}

.subscribe-form input::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.subscribe-form input:focus {
  outline: none;
  background-color: rgba(255, 255, 255, 0.15);
  border-color: var(--color-white);
}

.btn-subscribe {
  border-radius: 0 6px 6px 0;
  height: 48px;
  padding: 0 28px;
}

.subscribe-consent {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.5);
}


/* ==========================================================================
   13. Responsive Design (响应式适配)
   ========================================================================== */
@media (max-width: 1200px) {
  .news-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
}

@media (max-width: 992px) {
  .main-layout {
    flex-direction: column;
  }
  
  .news-area {
    width: 100%;
  }
  
  .sidebar {
    width: 100%;
    margin-top: 24px;
  }
  
  .subscribe-container {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
  }
  
  .subscribe-right {
    width: 100%;
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  
  /* Hero Mobile */
  .hero-title {
    font-size: 32px;
  }
  
  .hero-desc {
    font-size: 14px;
  }
  
  /* Filter Section */
  .filter-container {
    flex-direction: column;
    align-items: stretch;
  }
  
  .search-box {
    width: 100%;
  }
  
  /* Cards */
  .featured-card {
    flex-direction: column;
  }
  
  .featured-img-box {
    width: 100%;
    height: 200px;
  }
  
  .featured-content {
    width: 100%;
    padding: 24px;
  }
  
  .news-grid {
    grid-template-columns: 1fr;
  }
  
}


/* ========================================================================== 
   NEWS PAGE TYPOGRAPHY & SPACING REFINEMENT
   保留原有风格，仅优化电脑端字体层级、字号、字重与基础间距
   ========================================================================== */

@media (min-width: 1201px) {
  .hero-section {
    height: 330px;
  }

  .hero-content {
    max-width: 760px;
  }

  .hero-title {
    font-size: 60px;
    line-height: 1.08;
    margin-bottom: 22px;
    letter-spacing: -1.2px;
  }

  .hero-desc {
    font-size: 20px;
    line-height: 1.62;
    max-width: 720px;
  }

  .filter-section {
    padding: 18px 0;
  }

  .tabs {
    gap: 34px;
  }

  .tab-btn {
    font-size: 16px;
    font-weight: 600;
    padding: 13px 0;
  }

  .tab-btn.active {
    font-weight: 700;
  }

  .search-box {
    width: 330px;
  }

  .search-box input {
    height: 48px;
    padding: 12px 46px 12px 18px;
    font-size: 15px;
  }

  .search-box input::placeholder {
    font-size: 15px;
    color: #7B8798;
    opacity: 1;
  }

  .main-content {
    padding: 56px 0;
  }

  .main-layout {
    gap: 40px;
  }

  .news-area,
  .sidebar {
    gap: 38px;
  }

  .featured-content {
    padding: 36px;
  }

  .news-meta {
    margin-bottom: 14px;
    font-size: 13px;
    font-weight: 700;
    line-height: 1.35;
  }

  .featured-content .news-title {
    font-size: 30px;
    line-height: 1.28;
    font-weight: 800;
    margin-bottom: 18px;
    letter-spacing: -0.3px;
  }

  .featured-content .news-excerpt {
    font-size: 16px;
    line-height: 1.68;
    margin-bottom: 26px;
  }

  .news-grid {
    gap: 28px;
  }

  .card-img-box {
    height: 158px;
  }

  .card-content {
    padding: 22px;
  }

  .news-card .news-title {
    font-size: 18px;
    line-height: 1.38;
    font-weight: 800;
    margin-bottom: 13px;
    height: 75px;
  }

  .news-card .news-excerpt {
    font-size: 14px;
    line-height: 1.62;
    margin-bottom: 22px;
    height: 68px;
  }

  .read-more {
    font-size: 15px;
    font-weight: 700;
  }

  .pagination {
    margin-top: 18px;
  }

  .page-btn,
  .page-num {
    width: 42px;
    height: 42px;
    font-size: 15px;
  }

  .widget {
    padding: 28px;
  }

  .widget-title {
    font-size: 15px;
    line-height: 1.35;
    margin-bottom: 22px;
  }

  .category-link {
    padding: 14px 0;
    font-size: 15px;
    font-weight: 600;
    line-height: 1.45;
  }

  .cat-count {
    font-size: 12px;
    font-weight: 700;
  }

  .popular-posts {
    gap: 18px;
  }

  .popular-item-title {
    font-size: 15px;
    line-height: 1.42;
    font-weight: 700;
    margin-bottom: 6px;
  }

  .popular-item-date {
    font-size: 12px;
    line-height: 1.4;
  }

  .question-cta-widget {
    padding: 34px 26px;
  }

  .cta-title {
    font-size: 22px;
    line-height: 1.25;
    margin-bottom: 10px;
  }

  .cta-desc {
    font-size: 14px;
    line-height: 1.58;
    margin-bottom: 24px;
  }

  .cta-btn {
    font-size: 15px;
    padding: 13px 20px;
  }

  .subscribe-title {
    font-size: 24px;
    line-height: 1.25;
  }

  .subscribe-desc {
    font-size: 14px;
    line-height: 1.55;
  }

  .subscribe-form input {
    height: 50px;
    font-size: 15px;
    padding: 13px 17px;
  }

  .subscribe-form input::placeholder {
    font-size: 15px;
  }

  .btn-subscribe {
    height: 50px;
    font-size: 15px;
  }
}

@media (min-width: 769px) and (max-width: 1200px) {
  .hero-section {
    height: 310px;
  }

  .hero-content {
    max-width: 720px;
  }

  .hero-title {
    font-size: 54px;
    line-height: 1.1;
  }

  .hero-desc {
    font-size: 19px;
    line-height: 1.58;
  }

  .tab-btn {
    font-size: 15px;
    font-weight: 600;
  }

  .search-box input {
    height: 46px;
    font-size: 15px;
  }

  .main-content {
    padding: 50px 0;
  }

  .featured-content {
    padding: 32px;
  }

  .featured-content .news-title {
    font-size: 28px;
    line-height: 1.3;
  }

  .featured-content .news-excerpt {
    font-size: 15px;
    line-height: 1.65;
  }

  .news-meta {
    font-size: 12px;
    font-weight: 700;
  }

  .news-card .news-title {
    font-size: 17px;
    line-height: 1.4;
    font-weight: 800;
    height: 72px;
  }

  .news-card .news-excerpt {
    font-size: 14px;
    line-height: 1.6;
    height: 67px;
  }

  .read-more {
    font-size: 15px;
  }

  .widget-title {
    font-size: 15px;
  }

  .category-link {
    font-size: 15px;
  }

  .popular-item-title {
    font-size: 15px;
    line-height: 1.42;
  }

  .cta-title {
    font-size: 22px;
  }

  .cta-desc {
    font-size: 14px;
    line-height: 1.58;
  }
}


/* Breadcrumbs in hero, aligned with Contact page structure */
.hero-section .breadcrumbs {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
  font-size: 13px;
  line-height: 1.4;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.72);
}

.hero-section .breadcrumbs a {
  color: rgba(255, 255, 255, 0.72);
}

.hero-section .breadcrumbs a:hover {
  color: var(--color-white);
}

.hero-section .bc-divider {
  display: inline-flex;
  align-items: center;
  color: rgba(255, 255, 255, 0.48);
  font-size: 10px;
}

.hero-section .bc-current {
  color: rgba(255, 255, 255, 0.92);
  font-weight: 600;
}

@media (min-width: 1201px) {
  .hero-section .breadcrumbs {
    margin-bottom: 18px;
    font-size: 13px;
  }
}

@media (max-width: 768px) {
  .hero-section .breadcrumbs {
    margin-bottom: 12px;
    font-size: 12px;
  }
}
