@charset "UTF-8";
/* 资源概况页面专属样式 (zygk.css) */

/* ============================================================
   通用辅助
   ============================================================ */

/* 各大章节之间的间距 */
.zygk-section-gap {
  margin-top: 5.5rem;
}

/* 子标题（森林类别 / 起源统计 / 龄组统计 等） */
.zygk-sub-header {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 1.8rem;
  margin-top: 3rem;
}

.zygk-sub-bar {
  display: inline-block;
  width: 4px;
  height: 1.8rem;
  border-radius: 2px;
  background: linear-gradient(to bottom, rgb(41, 101, 211), rgb(15, 223, 172));
  flex-shrink: 0;
}

.zygk-sub-title-text {
  font-family: "Source Han Sans CN", sans-serif;
  font-size: 1.6rem;
  font-weight: 600;
  color: rgb(15, 89, 146);
  letter-spacing: 0.08em;
}

/* ============================================================
   资源概况 · 文字+地图 两列布局
   ============================================================ */

.zygk-overview-layout {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 3.5rem;
  align-items: start;
  margin-bottom: 0;
}

/* 左：描述文字 */
.zygk-overview-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1.6rem;
  padding: 1rem 0;
}

.zygk-overview-text p {
  font-family: "Source Han Sans CN", sans-serif;
  font-size: 1.5rem;
  font-weight: 350;
  line-height: 2.6rem;
  color: #444;
  text-indent: 2em;
  margin: 0;
}

.zygk-overview-text p strong {
  color: rgb(15, 89, 146);
  font-weight: 600;
}

/* 右：地图图片区域 */
.zygk-overview-map {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.zygk-map-img-wrap {
  width: 100%;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(15, 89, 146, 0.12), 0 2px 8px rgba(0, 0, 0, 0.06);
  position: relative;
  /* 预留位置：固定高宽比 */
  aspect-ratio: 4 / 3;
  background: linear-gradient(135deg, #e8f4fd, #f0faff);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: zoom-in;
}

.zygk-map-img-wrap img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.zygk-map-img-wrap:hover img {
  transform: scale(1.08);
}

.stgk-overview-layout {
  grid-template-columns: minmax(0, 1fr) minmax(400px, 20%);
}

.stgk-map-img-wrap {
  aspect-ratio: auto;
}

.stgk-map-img-wrap img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.zygk-map-caption {
  font-family: "Source Han Sans CN", sans-serif;
  font-size: 1.2rem;
  font-weight: 400;
  color: #888;
  letter-spacing: 0.05em;
  text-align: center;
  margin: 0;
}

/* ============================================================
   资源概况 · 四项核心指标横条
   ============================================================ */

.zygk-stats-bar {
  display: flex;
  align-items: center;
  margin-top: 2.5rem;
  margin-bottom: 2rem;
  background: linear-gradient(135deg, rgba(41, 101, 211, 1) 0%, rgba(15, 223, 172, 1) 100%);
  border-radius: 10px;
  padding: 2.2rem 3rem;
  box-shadow: 0 6px 28px rgba(15, 89, 146, 0.22);
  position: relative;
  overflow: hidden;
}

/* 背景装饰波纹 */
.zygk-stats-bar::before {
  content: '';
  position: absolute;
  right: -60px;
  top: -60px;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  pointer-events: none;
}
.zygk-stats-bar::after {
  content: '';
  position: absolute;
  left: -40px;
  bottom: -50px;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.04);
  pointer-events: none;
}

.zygk-stat-bar-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  text-align: center;
  position: relative;
  z-index: 1;
}

.zygk-stat-bar-value {
  font-family: 'SF Mono', 'JetBrains Mono', 'Consolas', 'PingFang SC', monospace;
  font-size: 2.8rem;
  font-weight: 900;
  color: #fff;
  line-height: 1;
  letter-spacing: -0.01em;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.zygk-stat-bar-unit {
  font-size: 1.4rem;
  font-weight: 500;
  margin-left: 0.3rem;
  opacity: 0.9;
}

.zygk-stat-bar-label {
  font-family: "Source Han Sans CN", sans-serif;
  font-size: 1.2rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.82);
  letter-spacing: 0.12em;
}

/* 分隔线 */
.zygk-stat-bar-divider {
  flex: 0 0 1px;
  height: 3.5rem;
  background: rgba(255, 255, 255, 0.25);
  margin: 0 1rem;
  align-self: center;
  position: relative;
  z-index: 1;
}

/* ============================================================
   资源概况 · 右侧指标卡片（替换 leaf-data-card 用于本页）
   ============================================================ */

/* 覆盖 ecology-data-panel 中子项的间距使更紧凑 */
.ecology-data-panel .zygk-stat-card + .zygk-stat-card {
  margin-top: 0;
}

.zygk-stat-card {
  position: relative;
  background: linear-gradient(135deg, rgb(15, 89, 146) 0%, rgb(18, 160, 177) 100%);
  border-radius: 10px;
  padding: 1.8rem 2rem;
  color: #fff;
  overflow: hidden;
  cursor: default;
  transition: transform 0.35s cubic-bezier(0.22, 0.61, 0.36, 1),
              box-shadow 0.35s ease;
  box-shadow: 0 4px 20px rgba(15, 89, 146, 0.25);
}

.zygk-stat-card:nth-child(odd) {
  background: linear-gradient(135deg, rgb(20, 110, 170) 0%, rgb(18, 206, 177) 100%);
}

.zygk-stat-card:hover {
  transform: translateX(6px);
  box-shadow: 0 8px 32px rgba(15, 89, 146, 0.35);
}

/* 大数值 */
.zygk-stat-value {
  font-family: 'SF Mono', 'JetBrains Mono', 'Consolas', 'PingFang SC', monospace;
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.01em;
  color: #fff;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

/* 标签 */
.zygk-stat-label {
  font-family: "Source Han Sans CN", sans-serif;
  font-size: 1.2rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  margin-top: 0.5rem;
  color: rgba(255, 255, 255, 0.85);
}

/* 右下角装饰圆 */
.zygk-stat-accent {
  position: absolute;
  right: -24px;
  bottom: -24px;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  pointer-events: none;
}
.zygk-stat-card::after {
  content: '';
  position: absolute;
  right: 16px;
  top: 16px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  pointer-events: none;
}

/* ============================================================
   森林资源 · 二列图片网格（森林类别 / 起源统计）
   ============================================================ */

.zygk-img-grid-2col {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.6rem;
  margin-bottom: 2rem;
}

/* ============================================================
   森林类别 · 左宽60% 右乀40% ，hover右侧时反转
   ============================================================ */

.zygk-img-grid-expand {
  display: flex;          /* 覆盖 grid，改为 flex 实现宽度过渡 */
  gap: 0;
  height: 320px;          /* 固定容器高度以支撑 flex-grow 动画 */
}

.zygk-img-grid-expand .zygk-img-card {
  flex-basis: 0%;
  flex-shrink: 1;
  min-width: 0;
  height: 100%;
  border-radius: 0;       /* 无缝连接：清除全部圆角 */
  transition: flex-grow 0.55s cubic-bezier(0.22, 0.61, 0.36, 1);
}

/* 禁止高度方向的任何变化 */
.zygk-img-grid-expand .zygk-img-card:hover {
  transform: none;
  box-shadow: none;
}

/* 左图：左两角圆角 */
.zygk-img-grid-expand .zygk-img-card:first-child {
  flex-grow: 6;
  border-radius: 8px 0 0 8px;
}

/* 右图：右两角圆角 */
.zygk-img-grid-expand .zygk-img-card:last-child {
  flex-grow: 4;
  border-radius: 0 8px 8px 0;
}

/* hover 右侧：右侧底择60%，左侧缩为40% */
.zygk-img-grid-expand:has(.zygk-img-card:last-child:hover) .zygk-img-card:first-child {
  flex-grow: 4;
}

.zygk-img-grid-expand:has(.zygk-img-card:last-child:hover) .zygk-img-card:last-child {
  flex-grow: 6;
}

/* ============================================================
   龄组统计 · 5列展开交互（任意卡片hover时横向展开）
   ============================================================ */

.zygk-img-grid-5col-expand {
  display: flex;
  gap: 0;
  height: 200px;
  margin-bottom: 2rem;
}

.zygk-img-grid-5col-expand .zygk-img-card {
  flex-basis: 0%;
  flex-shrink: 1;
  min-width: 0;
  height: 100%;
  border-radius: 0;
  transition: flex-grow 0.5s cubic-bezier(0.22, 0.61, 0.36, 1);
}

/* 左端圆角 */
.zygk-img-grid-5col-expand .zygk-img-card:first-child {
  border-radius: 8px 0 0 8px;
}

/* 右端圆角 */
.zygk-img-grid-5col-expand .zygk-img-card:last-child {
  border-radius: 0 8px 8px 0;
}

/* 禁止高度方向变化 */
.zygk-img-grid-5col-expand .zygk-img-card:hover {
  transform: none;
  box-shadow: none;
}

/*
  默认：第一项 flex-grow:8（40%），其余 4 项各 flex-grow:3（15%）
  总和 = 8 + 3×4 = 20，比例尺寸不变
*/
.zygk-img-grid-5col-expand .zygk-img-card:first-child {
  flex-grow: 8;
}
.zygk-img-grid-5col-expand .zygk-img-card:not(:first-child) {
  flex-grow: 3;
}

/* hover 任意一项：全部先重置为 3 */
.zygk-img-grid-5col-expand:has(.zygk-img-card:hover) .zygk-img-card {
  flex-grow: 3;
}

/* hover 项自身覆盖为 8（加 :has 提升至 0,5,0 就能赢过上面的 0,4,0） */
.zygk-img-grid-5col-expand:has(.zygk-img-card:hover) .zygk-img-card:hover {
  flex-grow: 8;
  transform: none;
  box-shadow: none;
}

.zygk-img-grid-5col {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1rem;
  margin-bottom: 2rem;
}

/* ============================================================
   通用图片卡片（森林类别 / 起源 / 龄组共用）
   ============================================================ */

.zygk-img-card {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  height: 240px;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.4s cubic-bezier(0.22, 0.61, 0.36, 1),
              box-shadow 0.4s ease;
}

.zygk-img-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(15, 89, 146, 0.2);
}

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

.zygk-img-card:hover img {
  transform: scale(1.06);
}

/* 渐变遮罩 */
.zygk-img-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.5rem 1.6rem;
  background: linear-gradient(to top,
    rgba(5, 30, 60, 0.75) 0%,
    rgba(5, 30, 60, 0.35) 60%,
    transparent 100%);
  color: #fff;
}

.zygk-img-value {
  font-family: 'SF Mono', 'JetBrains Mono', 'Consolas', 'PingFang SC', monospace;
  font-size: 2rem;
  font-weight: 800;
  line-height: 1.2;
  color: #fff;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
}

.zygk-img-name {
  font-family: "Source Han Sans CN", sans-serif;
  font-size: 1.3rem;
  font-weight: 600;
  margin-top: 0.3rem;
  letter-spacing: 0.06em;
  color: rgba(255, 255, 255, 0.9);
}

/* 龄组卡片高度更矮 */
.zygk-age-card {
  height: 180px;
}

/* ============================================================
   龄组卡片 · 名称常显 / 数据 hover 后展入
   ============================================================ */

/* 常显：底部名称栏 */
.zygk-age-name {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.2rem 1rem 1rem;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.62) 0%, transparent 100%);
  color: #fff;
  font-family: "Source Han Sans CN", sans-serif;
  font-size: 1.4rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-align: center;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

/* 默认隐藏：顶部数据区 */
.zygk-age-stats {
  position: absolute;
  inset: 0;
  padding: 1.2rem;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 1.2rem;
  pointer-events: none;
  opacity: 0;
  transform: translateY(-6px);
  transition: opacity 0.35s ease, transform 0.35s ease;
}

/* 默认状态：第一张卡片是 40%，显示数据 */
.zygk-img-grid-5col-expand .zygk-img-card:first-child .zygk-age-stats {
  opacity: 1;
  transform: translateY(0);
}

/* 有卡片被 hover 时：第一张卡片缩回 15%，隐藏数据 */
.zygk-img-grid-5col-expand:has(.zygk-img-card:hover) .zygk-img-card:first-child .zygk-age-stats {
  opacity: 0;
  transform: translateY(-6px);
}

/* 被 hover 的卡片是 40%，显示数据 */
.zygk-img-grid-5col-expand:has(.zygk-img-card:hover) .zygk-img-card:hover .zygk-age-stats {
  opacity: 1;
  transform: translateY(0);
}

/* 单个指标 */
.zygk-age-stat {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.zygk-age-stat-val {
  font-family: 'SF Mono', 'JetBrains Mono', 'Consolas', 'PingFang SC', monospace;
  font-size: 1.8rem;
  font-weight: 800;
  color: #fff;
  line-height: 1.2;
  white-space: nowrap;
  text-shadow: 0 1px 6px rgba(0,0,0,0.5);
}

.zygk-age-stat-lbl {
  font-family: "Source Han Sans CN", sans-serif;
  font-size: 1.3rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
  letter-spacing: 0.06em;
  text-shadow: 0 1px 4px rgba(0,0,0,0.5);
}

/* ============================================================
   草原湿地资源 · 大图 + 副统计卡片
   ============================================================ */

.zygk-wetland-row {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 1.6rem;
  align-items: stretch;
  margin-bottom: 1rem;
}

/* ============================================================
   草原湿地资源 · 磨玻璃全宽布局
   ============================================================ */

/* 图片容器 */
.zygk-wetland-glass {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  height: 200px;
  margin-bottom: 1rem;
}

.zygk-wetland-glass img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* 四个磨玻璃面板横向排列，覆盖在图片上 */
.zygk-wetland-glass-panels {
  position: absolute;
  top: 15%;
  left: 5%;
  right: 5%;
  height: 70%;
  display: flex;
  gap: 1rem;
}

.zygk-wetland-glass-panel {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
}

/* 主分类面板：固定宽度，无磨玻璃 */
.zygk-wetland-glass-main {
  flex: 0 0 22%;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  background: transparent;
}

.zygk-wetland-glass-main:hover {
  background: transparent;
}

/* 轮播容器 */
.zygk-wetland-sub-carousel {
  flex: 1;
  position: relative;
  overflow: hidden;
  height: 100%;
}

/* 轮播轨道 */
.zygk-wetland-sub-track {
  display: flex;
  height: 100%;
  gap: 0.8rem;
  transition: transform 0.45s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.zygk-wetland-sub-carousel1 {
  background: rgba(23, 74, 69, .4);
}

.zygk-wetland-sub-carousel2 {
  background: rgba(60, 87, 6, .58);
}

.zygk-wetland-sub-carousel3 {
  background: rgba(47, 86, 118, .68);
}

/* 轨道内面板：3个可见，扣除 2 个间距后平分 */
.zygk-wetland-sub-track .zygk-wetland-glass-panel {
  flex: 0 0 calc((100% - 0.8rem * 2) / 3);
  border-radius: 4px;
}

.zygk-wetland-sub-track .zygk-wetland-glass-label {
  font-size: 1.5rem;
}

/* 左右切换按钮 */
.zygk-carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  border: 1px solid rgba(255, 255, 255, 0.35);
  color: #fff;
  font-size: 1.8rem;
  line-height: 1;
  cursor: pointer;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease;
  padding: 0;
}
.zygk-carousel-btn:hover  { background: rgba(255, 255, 255, 0.42); }
.zygk-carousel-btn.disabled { opacity: 0.3; cursor: default; pointer-events: none; }
.zygk-carousel-prev { left: 4px; }
.zygk-carousel-next { right: 4px; }

.zygk-wetland-glass-value {
  font-family: 'SF Mono', 'JetBrains Mono', 'Consolas', 'PingFang SC', monospace;
  font-size: 2.4rem;
  font-weight: 900;
  color: #fff;
  line-height: 1;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}

.zygk-wetland-glass-main .zygk-wetland-glass-value {
  font-size: 4rem;
}

.zygk-wetland-glass-unit {
  font-size: 2rem;
  font-weight: 500;
  margin-left: 0.3rem;
  opacity: 0.9;
}

.zygk-wetland-glass-label {
  font-family: "Source Han Sans CN", sans-serif;
  font-size: 2.5rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.88);
  letter-spacing: 0.1em;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.4);
}

.zygk-wetland-main-card {
  border-radius: 8px;
  overflow: hidden;
  height: 260px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.zygk-wetland-main-card img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.zygk-wetland-main-overlay {
  position: absolute;
  left: 0;
  bottom: 0;
  right: 0;
  padding: 2rem 2.2rem;
  background: linear-gradient(to top,
    rgba(5, 30, 60, 0.72) 0%,
    transparent 100%);
  color: #fff;
}

.zygk-wetland-main-value {
  font-family: 'SF Mono', 'JetBrains Mono', 'Consolas', 'PingFang SC', monospace;
  font-size: 2.8rem;
  font-weight: 900;
  line-height: 1;
  color: #fff;
}

.zygk-wetland-main-label {
  font-size: 1.2rem;
  font-weight: 400;
  margin-top: 0.4rem;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.85);
}

/* 右侧副统计卡片网格 */
.zygk-wetland-sub-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  align-content: stretch;
}

.zygk-wetland-sub-card {
  background: #ffffff;
  border-radius: 8px;
  padding: 1.2rem 1.6rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  box-shadow: 0 2px 12px rgba(15, 89, 146, 0.07);
  border-left: 3px solid transparent;
  border-image: linear-gradient(to bottom, rgb(41, 101, 211), rgb(15, 223, 172)) 1;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
  flex: 1;
}

.zygk-wetland-sub-card:hover {
  box-shadow: 0 6px 24px rgba(15, 89, 146, 0.13);
  transform: translateX(4px);
}

.zygk-wetland-sub-value {
  font-family: 'SF Mono', 'JetBrains Mono', 'Consolas', 'PingFang SC', monospace;
  font-size: 1.8rem;
  font-weight: 800;
  color: rgb(15, 89, 146);
  line-height: 1.2;
}

.zygk-wetland-sub-label {
  font-family: "Source Han Sans CN", sans-serif;
  font-size: 1.1rem;
  font-weight: 400;
  color: #666;
  margin-top: 0.3rem;
  letter-spacing: 0.06em;
}

/* ============================================================
   自然保护地 · 左列表 + 右地图
   ============================================================ */

.zygk-reserve-section {
  display: grid;
  grid-template-columns: 430px 1fr;
  gap: 3rem;
  align-items: center;
  margin-bottom: 2rem;
  padding: 0 5rem;
}

.zygk-reserve-list {
  width: 100%;
  max-width: 430px;
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.zygk-reserve-summary {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  column-gap: 1.4rem;
  padding: 0 0.6rem 0.7rem;
}

.zygk-reserve-summary-cell {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
}

.zygk-reserve-summary-cell:first-child {
  justify-content: flex-start;
  gap: 0.8rem;
}

.zygk-reserve-summary-icon {
  flex: 0 0 44px;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.zygk-reserve-summary-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.zygk-reserve-summary-text,
.zygk-reserve-count,
.zygk-reserve-area {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-width: 0;
}

.zygk-reserve-summary-value {
  font-family: 'SF Mono', 'JetBrains Mono', 'Consolas', 'PingFang SC', monospace;
  font-size: 2.3rem;
  font-weight: 900;
  color: rgb(15, 89, 146);
  line-height: 1;
  white-space: nowrap;
}

.zygk-reserve-summary-value[data-reserve-map-src] {
  cursor: pointer;
}

.zygk-reserve-summary-value[data-reserve-map-src]:focus-visible {
  outline: 2px solid rgba(15, 89, 146, 0.55);
  outline-offset: 4px;
  border-radius: 6px;
}

.zygk-reserve-summary-label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 7.2rem;
  margin-top: 0.35rem;
  padding: 0.16rem 0.85rem;
  /*border: 1px solid rgba(32, 139, 224, 0.85);*/
  /*border-radius: 999px;*/
  /*background: linear-gradient(90deg, rgba(143, 224, 217, 0.9), rgba(245, 255, 251, 0.95));*/
  color: rgb(15, 89, 146);
  font-family: "Source Han Sans CN", sans-serif;
  font-size: 1.1rem;
  line-height: 1.2;
  white-space: nowrap;
}

.zygk-reserve-item {
  display: grid;
  grid-template-columns: 68px minmax(90px, 0.9fr) minmax(150px, 1.35fr);
  align-items: center;
  min-height: 68px;
  padding: 0.8rem 1.4rem 0.8rem 1rem;
  background:
    linear-gradient(90deg, rgba(153, 232, 224, 0.92) 0%, rgba(255, 255, 255, 0.96) 100%) padding-box,
    linear-gradient(90deg, rgba(41, 101, 211, 1) 0%, rgba(15, 223, 172, 0) 100%) border-box;
  border: 1px solid transparent;
  border-radius: 14px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.65), 0 4px 16px rgba(15, 89, 146, 0.08);
  transition: box-shadow 0.3s ease, transform 0.3s ease, border-color 0.3s ease;
  cursor: default;
}

.zygk-reserve-item[data-reserve-map-src] {
  cursor: pointer;
}

.zygk-reserve-item[data-reserve-map-src]:focus-visible,
.zygk-reserve-item[data-reserve-map-src].is-active {
  border-color: rgba(15, 89, 146, 0.5);
  outline: none;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.75), 0 8px 24px rgba(15, 89, 146, 0.16);
}

.zygk-reserve-item:hover {
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.75), 0 8px 24px rgba(15, 89, 146, 0.14);
  transform: translateX(4px);
}

.zygk-reserve-icon-wrap {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.zygk-reserve-icon-wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 2px 4px rgba(15, 89, 146, 0.14));
}

.zygk-reserve-value {
  font-family: 'SF Mono', 'JetBrains Mono', 'Consolas', 'PingFang SC', monospace;
  font-size: 2.2rem;
  font-weight: 900;
  color: rgb(15, 89, 146);
  line-height: 1;
  white-space: nowrap;
}

.zygk-reserve-unit {
  font-size: 1.15rem;
  font-weight: 700;
  margin-left: 0.12rem;
}

.zygk-reserve-summary-value .stat-number,
.zygk-reserve-value .stat-number {
  font-size: 1.08em;
  font-weight: inherit;
  line-height: 1;
}

.zygk-reserve-summary-value .stat-unit,
.zygk-reserve-value .stat-unit {
  font-size: 0.52em;
  font-weight: 700;
  margin-left: 0.12rem;
}

.zygk-reserve-name {
  font-family: "Source Han Sans CN", sans-serif;
  font-size: 1.15rem;
  font-weight: 500;
  color: rgb(15, 89, 146);
  line-height: 1.2;
  margin-top: 0.45rem;
  white-space: nowrap;
}

/* 右侧地图图片 */
.zygk-reserve-map {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.zygk-reserve-map img {
  display: block;
  max-width: 100%;
  height: auto;
  max-height: 800px;
  object-fit: contain;
  filter: drop-shadow(0 4px 24px rgba(15, 89, 146, 0.2));
  transition: filter 0.4s ease, transform 0.4s ease;
}

.zygk-reserve-map img:hover {
  filter: drop-shadow(0 8px 36px rgba(15, 89, 146, 0.3));
  transform: scale(1.02);
}

/* ============================================================
   野生动物
   ============================================================ */

.zygk-wildlife-section {
  position: relative;
  margin-bottom: 2rem;
  padding-bottom: 4.8rem;
  overflow: hidden;
}

.zygk-wildlife-section::before {
  content: '';
  position: absolute;
  left: -13rem;
  bottom: -16rem;
  width: 28rem;
  height: 28rem;
  border-radius: 50%;
  background: repeating-radial-gradient(circle, transparent 0 0.45rem, rgba(72, 154, 230, 0.28) 0.5rem 0.55rem);
  pointer-events: none;
}

.zygk-wildlife-section::after {
  content: '';
  position: absolute;
  right: -2rem;
  bottom: 0;
  width: 11rem;
  height: 11rem;
  background: rgba(35, 209, 221, 0.1);
  clip-path: polygon(100% 0, 100% 100%, 0 100%);
  pointer-events: none;
}

.zygk-wildlife-board {
  position: relative;
  z-index: 1;
  background: #dedede;
}

.zygk-wildlife-panel {
  --zygk-species-cols: 3;
  --zygk-species-rows: 2;
  display: none;
  grid-template-columns: minmax(0, 47.4%) minmax(0, 52.6%);
  min-height: max(26rem, calc(var(--zygk-species-rows) * 10.2rem));
}

.zygk-wildlife-panel.is-active {
  display: grid;
}

/* 左侧总量面板 */
.zygk-wildlife-hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4rem;
  min-height: max(26rem, calc(var(--zygk-species-rows) * 10.2rem));
  background: #dedede;
}

.zygk-wildlife-number {
  font-family: "Source Han Sans CN", sans-serif;
  font-size: 2.7rem;
  font-weight: 800;
  color: #fff;
  line-height: 1;
  letter-spacing: 0;
}

.zygk-wildlife-desc {
  font-family: "Source Han Sans CN", sans-serif;
  font-size: 2rem;
  font-weight: 800;
  color: #fff;
  line-height: 1.2;
  letter-spacing: 0;
}

/* 物种分类网格 */
.zygk-species-grid {
  display: grid;
  grid-template-columns: repeat(var(--zygk-species-cols), minmax(0, 1fr));
  grid-auto-rows: minmax(10.2rem, 1fr);
  min-width: 0;
  min-height: max(26rem, calc(var(--zygk-species-rows) * 10.2rem));
}

.zygk-species-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.9rem;
  min-width: 0;
  min-height: 10.2rem;
  text-align: center;
  background: #c3c3c3;
  transition: background-color 0.2s ease;
}

.zygk-species-card:nth-child(4n + 1),
.zygk-species-card:nth-child(4n) {
  background: #c8c8c8;
}

.zygk-species-card.zygk-species-card-light {
  background: #eeeeee;
}

.zygk-species-value {
  font-family: "Source Han Sans CN", sans-serif;
  font-size: 2.2rem;
  font-weight: 800;
  color: #fff;
  line-height: 1;
  letter-spacing: 0;
}

.zygk-species-label {
  font-family: "Source Han Sans CN", sans-serif;
  font-size: 1.7rem;
  font-weight: 800;
  color: #fff;
  line-height: 1.2;
  letter-spacing: 0;
}

/* 保护动物名录 */
.zygk-wildlife-links {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  padding-top: 2.1rem;
}

.zygk-wildlife-link {
  appearance: none;
  border: 0;
  background: transparent;
  padding: 0;
  font-family: "Source Han Sans CN", sans-serif;
  font-size: 1.15rem;
  font-weight: 800;
  line-height: 1.2;
  color: #0096e8;
  cursor: pointer;
  transition: color 0.2s ease, transform 0.2s ease;
}

.zygk-wildlife-link:hover,
.zygk-wildlife-link.is-active {
  color: #0078cc;
  transform: translateY(-1px);
}

.zygk-wildlife-link.is-active::before {
  content: '';
  display: inline-block;
  width: 0.45rem;
  height: 0.45rem;
  margin-right: 0.45rem;
  border-radius: 50%;
  background: currentColor;
  vertical-align: 0.1rem;
}

.zygk-wildlife-link:focus-visible {
  outline: 2px solid rgba(0, 150, 232, 0.45);
  outline-offset: 0.3rem;
}

@media (max-width: 768px) {
  .zygk-wildlife-section {
    padding-bottom: 3.8rem;
  }

  .zygk-wildlife-board {
    min-height: 0;
  }

  .zygk-wildlife-panel {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .zygk-wildlife-hero,
  .zygk-species-grid {
    min-height: 14rem;
  }

  .zygk-wildlife-hero {
    gap: 2rem;
  }

  .zygk-species-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: minmax(8rem, auto);
  }

  .zygk-wildlife-number,
  .zygk-species-value {
    font-size: 1.6rem;
  }

  .zygk-wildlife-desc,
  .zygk-species-label {
    font-size: 1.25rem;
  }
}

@media (max-width: 480px) {
  .zygk-species-grid {
    grid-template-columns: 1fr;
  }

  .zygk-species-card {
    min-height: 8rem;
  }

  .zygk-wildlife-links {
    gap: 1.1rem;
  }
}

.zygk-tag {
  display: inline-block;
  padding: 0.5rem 1.6rem;
  border-radius: 100px;
  font-family: "Source Han Sans CN", sans-serif;
  font-size: 1.2rem;
  font-weight: 500;
  letter-spacing: 0.06em;
}

.zygk-tag.primary {
  background: linear-gradient(135deg, rgb(41, 101, 211), rgb(15, 200, 190));
  color: #fff;
}

.zygk-tag.secondary {
  background: rgba(15, 89, 146, 0.08);
  color: rgb(15, 89, 146);
  border: 1px solid rgba(15, 89, 146, 0.2);
}

/* ============================================================
   野生植物
   ============================================================ */

.zygk-plant-section {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  width: 100%;
  min-height: 22rem;
  background: #dedede;
  margin: 1.5rem 0 2rem;
  position: relative;
  overflow: hidden;
}

.zygk-plant-section::before {
  content: none;
}

.zygk-plant-hero {
  min-width: 0;
  min-height: 12.25rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: #dedede;
  color: #fff;
  padding: 1rem;
}

.zygk-plant-number {
  display: block;
  font-family: "Source Han Sans CN", "Microsoft YaHei", sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.15;
}

.zygk-plant-desc {
  font-family: "Source Han Sans CN", sans-serif;
  font-size: 1.45rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.25;
  margin-top: 1.15rem;
  letter-spacing: 0;
}

.zygk-plant-hero::after {
  content: none;
}
.zygk-plant-hero,
.zygk-plant-stat-card {
  position: relative;
  overflow: hidden;
}

.zygk-plant-hero::before,
.zygk-plant-stat-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(to top, rgba(5, 35, 55, 0.7), rgba(5, 35, 55, 0.15));
}

.zygk-plant-hero img,
.zygk-plant-stat-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.zygk-plant-hero:hover img,
.zygk-plant-stat-card:hover img {
  transform: scale(1.06);
}

.zygk-plant-number,
.zygk-plant-desc,
.zygk-plant-stat-value,
.zygk-plant-stat-label {
  position: relative;
  z-index: 2;
}

.zygk-plant-stats {
  min-width: 0;
  display: grid;
  grid-column: span 2;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
}

.zygk-plant-stat-card {
  min-width: 0;
  min-height: 12.25rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: #d2d2d2;
  padding: 1rem;
  text-align: center;
  cursor: default;
}

.zygk-plant-stat-card:nth-child(even) {
  background: #dedede;
}

.zygk-plant-stat-value {
  font-family: "Source Han Sans CN", "Microsoft YaHei", sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.15;
}

.zygk-plant-stat-label {
  font-family: "Source Han Sans CN", sans-serif;
  font-size: 1.45rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.25;
  margin-top: 1.15rem;
  letter-spacing: 0;
}

.stgk1-page .stgk-catalog-title-area {
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  column-gap: 6.25rem;
  row-gap: 0.5rem;
}

.stgk1-page .stgk-catalog-title-area .business-subtitle {
  flex-basis: 100%;
}

.stgk-catalog-button {
  flex-shrink: 0;
  padding: 0.45rem 1rem;
  border: 1px solid transparent;
  border-radius: 999px;
  background:
    linear-gradient(#fff, #fff) padding-box,
    linear-gradient(to right, rgba(41, 101, 211, 1), rgba(15, 223, 172, 1)) border-box;
  font-family: "Source Han Sans CN", "Microsoft YaHei", sans-serif;
  font-size: 1rem;
  line-height: 1.2;
  cursor: pointer;
  transition: box-shadow 0.25s ease, transform 0.25s ease;
}

.stgk-catalog-button span {
  background: linear-gradient(to right, rgba(41, 101, 211, 1), rgba(15, 223, 172, 1));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

.stgk-catalog-button:hover {
  box-shadow: 0 4px 12px rgba(41, 101, 211, 0.18);
  transform: translateY(-1px);
}

.stgk-catalog-button:focus-visible {
  outline: 2px solid rgba(41, 101, 211, 0.35);
  outline-offset: 3px;
}
.stgk-catalog-modal {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  background: rgba(3, 20, 36, 0.82);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}

.stgk-catalog-modal.is-active {
  opacity: 1;
  visibility: visible;
}

.stgk-catalog-modal-dialog {
  position: relative;
  display: flex;
  flex-direction: column;
  width: min(1100px, calc(100vw - 4rem));
  max-height: calc(100vh - 4rem);
  padding: 1.5rem;
  overflow: hidden;
  border-radius: 1rem;
  background: #fff;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.32);
  transform: translateY(16px) scale(0.98);
  transition: transform 0.25s ease;
}

.stgk-catalog-modal.is-active .stgk-catalog-modal-dialog {
  transform: translateY(0) scale(1);
}

.stgk-catalog-modal-title {
  margin: 0 3rem 1rem 0;
  font-family: "Source Han Sans CN", "Microsoft YaHei", sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: rgb(15, 89, 146);
}

.stgk-catalog-modal-close {
  position: absolute;
  top: 0.9rem;
  right: 1rem;
  z-index: 3;
  width: 2.25rem;
  height: 2.25rem;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(15, 89, 146, 0.08);
  color: rgb(15, 89, 146);
  font-size: 1.8rem;
  line-height: 1;
  cursor: pointer;
}

.stgk-catalog-preview-stage {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 24rem;
  max-height: 65vh;
  overflow: hidden;
  border-radius: 0.75rem;
  background: #f2f6f8;
}

.stgk-catalog-preview-image {
  display: block;
  max-width: 100%;
  max-height: 65vh;
  object-fit: contain;
}

.stgk-catalog-empty {
  margin: 0;
  color: #999;
  font-size: 1rem;
}

.stgk-catalog-nav {
  position: absolute;
  top: 50%;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(41, 101, 211, 0.88), rgba(15, 223, 172, 0.88));
  box-shadow: 0 4px 14px rgba(15, 89, 146, 0.24);
  color: #fff;
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
  transform: translateY(-50%);
}

.stgk-catalog-nav-prev {
  left: 1rem;
}

.stgk-catalog-nav-next {
  right: 1rem;
}

.stgk-catalog-preview-caption {
  margin: 0.85rem 0 0;
  color: #555;
  font-size: 0.95rem;
  text-align: center;
}

.stgk-catalog-preview-counter {
  margin-top: 0.35rem;
  color: #999;
  font-size: 0.85rem;
  text-align: center;
}

.stgk-catalog-thumbnails {
  display: flex;
  justify-content: center;
  gap: 0.65rem;
  margin-top: 0.85rem;
  padding: 0.2rem 0.1rem;
  overflow-x: auto;
}

.stgk-catalog-thumbnail {
  flex: 0 0 5.25rem;
  height: 3.75rem;
  padding: 2px;
  overflow: hidden;
  border: 2px solid transparent;
  border-radius: 0.5rem;
  background: #e8eef1;
  cursor: pointer;
}

.stgk-catalog-thumbnail.is-active {
  border-color: rgba(41, 101, 211, 1);
  box-shadow: 0 0 0 1px rgba(15, 223, 172, 0.7);
}

.stgk-catalog-thumbnail img {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 0.3rem;
  object-fit: cover;
}

@media (max-width: 700px) {
  .stgk-catalog-modal {
    padding: 1rem;
  }

  .stgk-catalog-modal-dialog {
    width: calc(100vw - 2rem);
    max-height: calc(100vh - 2rem);
    padding: 1rem;
  }

  .stgk-catalog-preview-stage {
    min-height: 16rem;
  }

  .stgk-catalog-nav {
    width: 2.35rem;
    height: 2.35rem;
  }

  .stgk-catalog-nav-prev {
    left: 0.5rem;
  }

  .stgk-catalog-nav-next {
    right: 0.5rem;
  }
}
.stgk-wildlife-mosaic {
  display: grid;
  grid-template-columns: 2.1fr 1.2fr 1.4fr 1.1fr;
  grid-template-rows: 16rem 22rem;
  gap: 0;
  width: 100%;
  margin: 1.5rem 0 3rem;
  overflow: hidden;
  background: #bdbdbd;
}

.stgk-wildlife-card {
  position: relative;
  min-width: 0;
  min-height: 0;
  overflow: hidden;
  background: #bdbdbd;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}

.stgk-wildlife-card-main {
  grid-column: 1 / 2;
  grid-row: 1 / 3;
}

.stgk-wildlife-card:nth-child(2) {
  grid-column: 2 / 3;
  grid-row: 1 / 2;
}

.stgk-wildlife-card:nth-child(3) {
  grid-column: 3 / 5;
  grid-row: 1 / 2;
}

.stgk-wildlife-card:nth-child(4) {
  grid-column: 2 / 4;
  grid-row: 2 / 3;
}

.stgk-wildlife-card:nth-child(5) {
  grid-column: 4 / 5;
  grid-row: 2 / 3;
}

.stgk-wildlife-card img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.stgk-wildlife-card:hover img {
  transform: scale(1.06);
}

.stgk-wildlife-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: rgba(0, 0, 0, 0.18);
  padding: 1rem;
}

.stgk-wildlife-card-plain {
  flex-direction: column;
  text-align: center;
  padding: 1rem;
}

.stgk-wildlife-number {
  font-size: 1.85rem;
  line-height: 1.1;
  font-weight: 700;
  color: #fff;
}

.stgk-wildlife-label {
  margin-top: 0.9rem;
  font-size: 1.25rem;
  line-height: 1.2;
  font-weight: 700;
  color: #fff;
}

/* ============================================================
   响应式适配
   ============================================================ */

@media (max-width: 1200px) {
  .zygk-img-grid-5col {
    grid-template-columns: repeat(3, 1fr);
  }
  .zygk-reserve-section {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .zygk-reserve-map {
    max-height: 300px;
    overflow: hidden;
  }
  .stgk-wildlife-mosaic {
    grid-template-columns: 1.5fr 1fr 1fr;
    grid-template-rows: repeat(3, 15rem);
  }
  .stgk-wildlife-card-main {
    grid-column: 1 / 2;
    grid-row: 1 / 4;
  }
  .stgk-wildlife-card:nth-child(2) {
    grid-column: 2 / 3;
    grid-row: 1 / 2;
  }
  .stgk-wildlife-card:nth-child(3) {
    grid-column: 3 / 4;
    grid-row: 1 / 2;
  }
  .stgk-wildlife-card:nth-child(4) {
    grid-column: 2 / 4;
    grid-row: 2 / 3;
  }
  .stgk-wildlife-card:nth-child(5) {
    grid-column: 2 / 4;
    grid-row: 3 / 4;
  }
}

@media (max-width: 900px) {
  .stgk-overview-layout {
    grid-template-columns: 1fr;
  }
  .zygk-img-grid-2col {
    grid-template-columns: 1fr;
  }
  .zygk-wetland-row {
    grid-template-columns: 1fr;
  }
  .zygk-plant-section {
    grid-template-columns: 1fr;
    min-height: 0;
  }
  .zygk-plant-hero {
    min-height: 10rem;
  }
  .zygk-plant-stats {
    grid-column: auto;
  }
  .zygk-plant-stat-card {
    min-height: 10rem;
  }
  .stgk-wildlife-mosaic {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: 15rem;
    grid-template-rows: none;
  }
  .stgk-wildlife-card,
  .stgk-wildlife-card-main,
  .stgk-wildlife-card:nth-child(2),
  .stgk-wildlife-card:nth-child(3),
  .stgk-wildlife-card:nth-child(4),
  .stgk-wildlife-card:nth-child(5) {
    grid-column: auto;
    grid-row: auto;
  }
  .stgk-wildlife-card-main {
    grid-column: span 2;
  }
}

@media (max-width: 480px) {
  .zygk-reserve-list {
    max-width: none;
  }
  .zygk-reserve-summary {
    column-gap: 0.8rem;
    padding-left: 0;
    padding-right: 0;
  }
  .zygk-reserve-summary-icon {
    flex-basis: 38px;
    width: 38px;
    height: 38px;
  }
  .zygk-reserve-summary-value {
    font-size: 1.9rem;
  }
  .zygk-reserve-summary-label {
    min-width: 6.2rem;
    font-size: 1rem;
    padding-left: 0.55rem;
    padding-right: 0.55rem;
  }
  .zygk-reserve-item {
    grid-template-columns: 50px minmax(70px, 0.9fr) minmax(118px, 1.3fr);
    min-height: 64px;
    padding: 0.7rem 0.8rem;
  }
  .zygk-reserve-icon-wrap {
    width: 40px;
    height: 40px;
  }
  .zygk-reserve-value {
    font-size: 1.75rem;
  }
  .zygk-reserve-unit {
    font-size: 0.95rem;
  }
  .zygk-reserve-name {
    font-size: 1rem;
  }
  .zygk-plant-stats {
    grid-template-columns: 1fr;
  }
  .zygk-plant-number,
  .zygk-plant-stat-value {
    font-size: 1.7rem;
  }
  .zygk-plant-desc,
  .zygk-plant-stat-label {
    font-size: 1.2rem;
  }
  .stgk-wildlife-mosaic {
    grid-template-columns: 1fr;
    grid-auto-rows: 14rem;
  }
  .stgk-wildlife-card-main {
    grid-column: auto;
    min-height: 18rem;
  }
  .stgk-wildlife-number {
    font-size: 1.55rem;
  }
  .stgk-wildlife-label {
    font-size: 1.1rem;
  }
}
