/* ============================================
   Chenzhou 15th Five-Year Plan - Style Sheet
   Modern Government English Page - V4
   ============================================ */

/* === Design Tokens === */
:root {
  /* Primary palette */
  --color-primary: #0d1b2a;
  --color-primary-mid: #1a2332;
  --color-primary-light: #243447;
  /* Gold / Accent */
  --color-gold: #d4a843;
  --color-gold-hover: #e2bc5a;
  --color-gold-muted: rgba(212, 168, 67, 0.25);
  /* Green (Rural) */
  --color-green: #2d6a4f;
  --color-green-light: #40916c;
  --color-green-muted: rgba(45, 106, 79, 0.12);
  /* Blue-Grey (Gov) */
  --color-gov-bg: #e8edf2;
  --color-gov-accent: #2c5f8a;
  /* Text */
  --color-text: #23272e;
  --color-text-light: #525a65;
  --color-text-muted: #8a919e;
  /* Backgrounds */
  --color-bg-light: #f7f8fa;
  --color-bg-warm: #f8f6f0;
  /* Borders & Cards */
  --color-border: #e0e3e8;
  --color-card-bg: #ffffff;
  /* Shadows */
  --shadow-sm: 0 2px 6px rgba(10, 22, 40, 0.06);
  --shadow-md: 0 6px 20px rgba(10, 22, 40, 0.10);
  --shadow-lg: 0 12px 36px rgba(10, 22, 40, 0.14);
  --shadow-xl: 0 16px 48px rgba(10, 22, 40, 0.18);
  /* Radii */
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 14px;
}

/* === Reset & Base === */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: "Segoe UI", "Roboto", "Open Sans", "Helvetica Neue", Arial, sans-serif;
  color: var(--color-text);
  background-color: var(--color-bg-light);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

a {
  color: var(--color-primary-light);
  text-decoration: none;
}

a:hover {
  color: var(--color-gold);
}

img {
  max-width: 100%;
  display: block;
}

ul, ol {
  list-style: none;
}

/* === Layout Container === */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* === Header === */
.site-header {
  background-color: var(--color-primary);
  color: #ffffff;
}

/* Hide the header-top bar on PC */
.header-top {
  display: none;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

/* === Navigation === */
.main-nav {
  display: none;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background-color: #ffffff;
  transition: transform 0.3s, opacity 0.3s;
}

.nav-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.active span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

.nav-menu {
  display: flex;
  gap: 28px;
}

.nav-menu a {
  color: rgba(255, 255, 255, 0.85);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.3px;
  padding: 4px 0;
  border-bottom: 2px solid transparent;
  transition: color 0.2s, border-color 0.2s;
}

.nav-menu a:hover,
.nav-menu a.active {
  color: #ffffff;
  border-bottom-color: var(--color-gold);
}

/* === Banner === */
.banner {
  padding: 100px 0 90px;
  text-align: center;
  border-top: 5px solid var(--color-gold);
  position: relative;
  background-image: url('../img/15th_img.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-color: var(--color-primary);
}

.banner::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(13, 27, 42, 0.6);
  z-index: 0;
}

.banner .container {
  position: relative;
  z-index: 1;
}

.banner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 200px;
  height: 5px;
  background-color: #ffffff;
  opacity: 0.08;
}

.banner-label {
  display: inline-block;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 28px;
  padding: 8px 28px;
  border: 2px solid rgba(212, 168, 67, 0.5);
  border-radius: 2px;
}

.banner-en-title {
  font-size: 48px;
  font-weight: 900;
  line-height: 1.15;
  color: #ffffff;
  margin-bottom: 32px;
  letter-spacing: -0.5px;
  max-width: 880px;
  margin-left: auto;
  margin-right: auto;
}

.banner-divider {
  width: 90px;
  height: 5px;
  background-color: var(--color-gold);
  margin: 0 auto;
  border-radius: 3px;
}

/* === Section Common === */
.section {
  padding: 80px 0;
}

.section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 48px;
}

.section-title {
  display: flex;
  align-items: center;
  gap: 16px;
}

.section-title-accent {
  width: 6px;
  height: 36px;
  border-radius: 3px;
  flex-shrink: 0;
}

.section-title-en {
  font-size: 34px;
  font-weight: 900;
  letter-spacing: -0.3px;
}

/* =========================================================
   SECTION 1: NEWS — White/Light Theme + Gold Accents
   ========================================================= */
.section-news {
  background-color: #ffffff;
}

.section-news .section-title-accent {
  background-color: var(--color-gold);
}

.section-news .section-title-en {
  color: var(--color-primary);
}

.section-news .more-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 700;
  color: var(--color-primary);
  padding: 12px 26px;
  border: 2px solid var(--color-gold);
  border-radius: var(--radius-sm);
  white-space: nowrap;
  transition: all 0.3s;
  letter-spacing: 0.5px;
}

.section-news .more-link:hover {
  color: #ffffff;
  background-color: var(--color-gold);
  box-shadow: var(--shadow-md);
}

/* News layout */
.news-top {
  display: flex;
  gap: 36px;
  margin-bottom: 24px;
}

.news-featured {
  flex: 1;
}

/* News featured image wrapper */
.news-img-wrap {
  overflow: hidden;
  flex-shrink: 0;
}

.news-img-wrap a {
  display: block;
}

.news-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s;
}

.news-img-wrap:hover img {
  transform: scale(1.03);
}

/* Featured image: taller fixed height for prominent display */
.news-img-featured {
  width: 100%;
  height: 380px;
  margin-bottom: 18px;
  border-radius: var(--radius-lg);
  background-color: #e8e3d8;
}

.news-img-featured img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.news-featured .news-title {
  font-size: 24px;
  font-weight: 800;
  color: var(--color-primary);
  margin-bottom: 14px;
  line-height: 1.35;
}

.news-featured .news-title a {
  color: inherit;
  transition: color 0.25s;
}

.news-featured .news-title a:hover {
  color: var(--color-gold);
}

.news-featured .news-summary {
  font-size: 15px;
  color: var(--color-text-light);
  line-height: 1.8;
  margin-bottom: 12px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.news-featured .news-summary a {
  color: inherit;
  transition: color 0.25s;
}

.news-featured .news-summary a:hover {
  color: var(--color-gold);
}

.news-featured .news-date {
  font-size: 13px;
  color: var(--color-text-muted);
  font-weight: 500;
}

/* News sidebar - vertical card layout (2 cards stacked) */
.news-sidebar-cards {
  width: 420px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.news-card-item {
  background-color: var(--color-card-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: box-shadow 0.3s, transform 0.3s;
}

.news-card-item:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

/* Card image - full width, fixed height */
.news-card-img {
  width: 100%;
  height: 180px;
  border-radius: 0;
  background-color: #ede9df;
  overflow: hidden;
  display: block;
}

.news-card-img a {
  display: block;
  width: 100%;
  height: 100%;
}

.news-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
}

/* Card text info below image */
.news-card-info {
  padding: 16px 18px;
}

.news-card-info .news-title {
  font-size: 15px;
  font-weight: 700;
  color: var(--color-text);
  line-height: 1.5;
  margin-bottom: 8px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.news-card-info .news-title a {
  color: inherit;
  transition: color 0.25s;
}

.news-card-info .news-title a:hover {
  color: var(--color-gold);
}

.news-card-info .news-date {
  font-size: 12px;
  color: var(--color-text-muted);
  font-weight: 400;
}

/* =========================================================
   SECTION 2: INDUSTRIAL — Dark Theme + Gold/Amber Accents
   ========================================================= */
.section-industrial {
  background-color: var(--color-primary);
  color: #ffffff;
}

.section-industrial .section-title-accent {
  background-color: var(--color-gold);
}

.section-industrial .section-title-en {
  color: #ffffff;
}

.section-industrial .more-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 700;
  color: var(--color-gold);
  padding: 12px 26px;
  border: 2px solid var(--color-gold);
  border-radius: var(--radius-sm);
  white-space: nowrap;
  transition: all 0.3s;
  letter-spacing: 0.5px;
}

.section-industrial .more-link:hover {
  color: var(--color-primary);
  background-color: var(--color-gold);
  box-shadow: var(--shadow-md);
}

/* Industrial header wrapper - centered with max-width */
.industrial-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 50px;
}

/* Industrial cards - full-width row with horizontal scroll fallback */
.industrial-cards {
  display: flex;
  gap: 22px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  padding: 0 50px 8px;
}

/* Custom scrollbar for industrial cards */
.industrial-cards::-webkit-scrollbar {
  height: 6px;
}

.industrial-cards::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 3px;
}

.industrial-cards::-webkit-scrollbar-thumb {
  background: rgba(212, 168, 67, 0.4);
  border-radius: 3px;
}

.industrial-cards::-webkit-scrollbar-thumb:hover {
  background: rgba(212, 168, 67, 0.6);
}

.card-item {
  flex: 1 1 0;
  min-width: 320px;
  flex-shrink: 0;
  background-color: var(--color-primary-mid);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: box-shadow 0.3s, transform 0.3s;
}

.card-item:hover {
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
  transform: translateY(-6px);
}

/* Card image wrapper */
.card-img-wrap {
  width: 100%;
  height: 260px;
  overflow: hidden;
  background-color: #1a2e42;
}

.card-img-wrap a {
  display: block;
  width: 100%;
  height: 100%;
}

.card-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s;
}

.card-img-wrap:hover img {
  transform: scale(1.05);
}

.card-item .card-body {
  padding: 22px;
}

.card-item .news-title {
  font-size: 17px;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.45;
  margin-bottom: 10px;
}

.card-item .news-title a {
  color: inherit;
  transition: color 0.25s;
}

.card-item .news-title a:hover {
  color: var(--color-gold);
}

.card-item .news-summary {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.7;
  margin-bottom: 10px;
}

.card-item .news-date {
  font-size: 12px;
  color: var(--color-gold);
  font-weight: 600;
  letter-spacing: 0.5px;
}

/* (Carousel arrows removed - no longer needed) */

/* =========================================================
   SECTION 3: RURAL — Warm Earthy + Green Accents
   ========================================================= */
.section-rural {
  background-color: var(--color-bg-warm);
}

.section-rural .section-title-accent {
  background-color: var(--color-green);
}

.section-rural .section-title-en {
  color: var(--color-green);
}

.section-rural .more-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 700;
  color: var(--color-green);
  padding: 12px 26px;
  border: 2px solid var(--color-green);
  border-radius: var(--radius-sm);
  white-space: nowrap;
  transition: all 0.3s;
  letter-spacing: 0.5px;
}

.section-rural .more-link:hover {
  color: #ffffff;
  background-color: var(--color-green);
  box-shadow: var(--shadow-md);
}

/* Grid layout */
.grid-layout {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.grid-layout .grid-item:first-child {
  grid-column: span 2;
}

.grid-item {
  background-color: var(--color-card-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: box-shadow 0.3s, transform 0.3s;
  border-bottom: 4px solid var(--color-green-muted);
}

.grid-item:hover {
  box-shadow: var(--shadow-xl);
  transform: translateY(-5px);
  border-bottom-color: var(--color-green);
}

/* Grid image wrapper */
.grid-img-wrap {
  width: 100%;
  height: 240px;
  overflow: hidden;
  background-color: #e2edd8;
}

.grid-img-wrap a {
  display: block;
  width: 100%;
  height: 100%;
}

.grid-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s;
}

.grid-img-wrap:hover img {
  transform: scale(1.05);
}

.grid-item:first-child .grid-img-wrap {
  height: 300px;
}

.grid-item .card-body {
  padding: 22px;
}

.grid-item .news-title {
  font-size: 17px;
  font-weight: 700;
  color: var(--color-text);
  line-height: 1.45;
  margin-bottom: 10px;
}

.grid-item .news-title a {
  color: inherit;
  transition: color 0.25s;
}

.grid-item .news-title a:hover {
  color: var(--color-green);
}

.grid-item .news-summary {
  font-size: 14px;
  color: var(--color-text-light);
  line-height: 1.7;
  margin-bottom: 10px;
}

.grid-item .news-date {
  font-size: 12px;
  color: var(--color-green-light);
  font-weight: 600;
}

/* =========================================================
   SECTION 4: GOVERNMENT — Blue-Grey + Navy Accents
   ========================================================= */
.section-government {
  background-color: var(--color-gov-bg);
}

.section-government .section-title-accent {
  background-color: var(--color-gov-accent);
}

.section-government .section-title-en {
  color: var(--color-primary);
}

.section-government .more-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 700;
  color: var(--color-gov-accent);
  padding: 12px 26px;
  border: 2px solid var(--color-gov-accent);
  border-radius: var(--radius-sm);
  white-space: nowrap;
  transition: all 0.3s;
  letter-spacing: 0.5px;
}

.section-government .more-link:hover {
  color: #ffffff;
  background-color: var(--color-gov-accent);
  box-shadow: var(--shadow-md);
}

/* Gov top cards */
.gov-top {
  display: flex;
  gap: 28px;
  margin-bottom: 36px;
}

.gov-card {
  flex: 1;
  display: flex;
  gap: 22px;
  background-color: var(--color-card-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 24px;
  transition: box-shadow 0.3s, transform 0.3s;
  border-top: 4px solid var(--color-gov-accent);
}

.gov-card:hover {
  box-shadow: var(--shadow-xl);
  transform: translateY(-4px);
}

/* Gov image wrapper */
.gov-img-wrap {
  width: 220px;
  height: 160px;
  flex-shrink: 0;
  border-radius: var(--radius-sm);
  overflow: hidden;
  background-color: #d0dae6;
}

.gov-img-wrap a {
  display: block;
  width: 100%;
  height: 100%;
}

.gov-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s;
}

.gov-img-wrap:hover img {
  transform: scale(1.05);
}

.gov-card .news-info {
  flex: 1;
}

.gov-card .news-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--color-text);
  line-height: 1.45;
  margin-bottom: 12px;
}

.gov-card .news-title a {
  color: inherit;
  transition: color 0.25s;
}

.gov-card .news-title a:hover {
  color: var(--color-gov-accent);
}

.gov-card .news-summary {
  font-size: 14px;
  color: var(--color-text-light);
  line-height: 1.7;
  margin-bottom: 10px;
}

.gov-card .news-date {
  font-size: 12px;
  color: var(--color-text-muted);
  font-weight: 400;
}

/* Gov list */
.gov-list {
  border-top: 2px solid var(--color-gov-accent);
}

.gov-list-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  border-bottom: 1px solid var(--color-border);
  transition: padding-left 0.3s;
}

.gov-list-item:hover {
  padding-left: 12px;
}

.gov-list-item .news-title {
  font-size: 15px;
  font-weight: 600;
  color: var(--color-text);
  flex: 1;
  padding-right: 20px;
}

.gov-list-item .news-title::before {
  content: "\2014";
  color: var(--color-gov-accent);
  margin-right: 12px;
  font-weight: 700;
}

.gov-list-item .news-title a {
  color: inherit;
  transition: color 0.25s;
}

.gov-list-item .news-title a:hover {
  color: var(--color-gov-accent);
}

.gov-list-item .news-date {
  font-size: 13px;
  color: var(--color-text-muted);
  white-space: nowrap;
  font-weight: 400;
}

/* === More link arrow animation === */
.more-arrow {
  display: inline-block;
  transition: transform 0.3s;
  font-size: 16px;
}

.more-link:hover .more-arrow {
  transform: translateX(5px);
}

/* === Footer === */
.site-footer {
  background-color: var(--color-primary);
  color: rgba(255, 255, 255, 0.5);
  padding: 44px 0;
  text-align: center;
  font-size: 14px;
  border-top: 4px solid var(--color-gold);
}

.footer-copy {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: 0.3px;
}

/* === Back to Top === */
.back-to-top {
  position: fixed;
  bottom: 40px;
  right: 30px;
  width: 46px;
  height: 46px;
  background-color: var(--color-primary);
  color: #ffffff;
  border: 2px solid var(--color-gold);
  border-radius: var(--radius-sm);
  cursor: pointer;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s, background-color 0.3s;
  z-index: 100;
  box-shadow: var(--shadow-md);
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  background-color: var(--color-gold);
  color: var(--color-primary);
}

/* =========================================================
   RESPONSIVE: Tablet (768px - 1200px)
   ========================================================= */
@media (max-width: 1200px) {
  .industrial-inner {
    padding: 0 30px;
  }
  .industrial-cards {
    padding: 0 30px 8px;
  }
}

/* =========================================================
   RESPONSIVE: Mobile (below 768px)
   ========================================================= */
@media (max-width: 768px) {
  /* Show header-top and nav on mobile */
  .header-top {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    position: relative;
  }

  .main-nav {
    display: flex;
    align-items: center;
  }

  .nav-toggle {
    display: flex;
  }

  .nav-menu {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: var(--color-primary);
    padding: 12px 24px 20px;
    gap: 0;
    z-index: 200;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
  }

  .nav-menu.open {
    display: flex;
  }

  .nav-menu a {
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    font-size: 15px;
  }

  /* Banner */
  .banner {
    padding: 56px 0 48px;
  }

  .banner-en-title {
    font-size: 26px;
    line-height: 1.3;
  }

  .banner-label {
    font-size: 11px;
    letter-spacing: 2px;
    margin-bottom: 16px;
    padding: 5px 16px;
  }

  /* Section */
  .section {
    padding: 52px 0;
  }

  .section-header {
    margin-bottom: 30px;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .section-title-en {
    font-size: 24px;
  }

  .section-title-accent {
    height: 28px;
  }

  .section-news .more-link,
  .section-industrial .more-link,
  .section-rural .more-link,
  .section-government .more-link {
    padding: 9px 18px;
    font-size: 13px;
  }

  /* News */
  .news-top {
    flex-direction: column;
    gap: 24px;
  }

  /* News sidebar cards - side by side on mobile */
  .news-sidebar-cards {
    width: 100%;
    flex-direction: row;
    gap: 16px;
  }

  .news-card-item {
    flex: 1;
  }

  .news-card-img {
    height: 140px;
  }

  /* Featured image adapts on mobile */
  .news-img-featured {
    height: 240px;
  }

  .news-featured .news-title {
    font-size: 20px;
  }

  /* Industrial section - prevent page-level horizontal overflow */
  .section-industrial {
    overflow: hidden;
  }

  /* Industrial header - reduce padding for mobile */
  .industrial-inner {
    padding: 0 16px;
  }

  /* Industrial cards - mobile horizontal scroll */
  .industrial-cards {
    gap: 14px;
    padding: 0 16px 12px;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
    scrollbar-width: none; /* Firefox */
  }

  .industrial-cards::-webkit-scrollbar {
    display: none; /* Hide scrollbar on mobile for cleaner touch experience */
  }

  .card-item {
    flex: 0 0 auto;
    width: 78vw;
    min-width: 240px;
    max-width: 300px;
    scroll-snap-align: start;
  }

  .card-img-wrap {
    height: 180px;
  }

  .card-item .card-body {
    padding: 16px;
  }

  .card-item .news-title {
    font-size: 15px;
    margin-bottom: 8px;
  }

  .card-item .news-summary {
    font-size: 13px;
    line-height: 1.6;
    margin-bottom: 8px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  /* Grid */
  .grid-layout {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .grid-layout .grid-item:first-child {
    grid-column: span 1;
  }

  .grid-img-wrap {
    height: 200px;
  }

  .grid-item:first-child .grid-img-wrap {
    height: 220px;
  }

  /* Gov */
  .gov-top {
    flex-direction: column;
    gap: 20px;
  }

  .gov-card {
    padding: 16px;
  }

  .gov-img-wrap {
    width: 130px;
    height: 100px;
  }

  .gov-card .news-title {
    font-size: 15px;
  }

  .gov-list-item .news-title {
    font-size: 14px;
  }

  /* Footer */
  .site-footer {
    padding: 28px 0;
  }

  .back-to-top {
    bottom: 20px;
    right: 16px;
    width: 40px;
    height: 40px;
  }
}
