/* ============================================================
   乡间拾趣夏日谈 - Countryside Summer Theme
   Cicada greens, sun-drenched golds, dragonfly motifs
   Light warm background | Mobile-first | No frameworks
   ============================================================ */

/* ========== CSS VARIABLES ========== */
:root {
  --bg-warm: #FFF8F0;
  --bg-cream: #FEF5E7;
  --bg-card: #FFFFFF;
  --bg-footer: #3D2B1F;
  --bg-nav: rgba(255, 250, 242, 0.96);
  --bg-hero-overlay: rgba(61, 43, 31, 0.45);

  --green-cicada: #5B8C5A;
  --green-cicada-dark: #3D6B3A;
  --green-cicada-light: #8AB889;
  --green-cicada-pale: #D4E8D3;
  --green-leaf: #6B9B37;
  --green-forest: #2D5A27;

  --gold-sun: #D4A243;
  --gold-sun-light: #E8C97A;
  --gold-sun-pale: #F5E6C8;
  --gold-wheat: #C4953A;

  --amber-warm: #C1753E;
  --amber-light: #E09E6B;

  --text-primary: #3D2B1F;
  --text-secondary: #5C4A3A;
  --text-muted: #8B7B6B;
  --text-light: #A89888;
  --text-on-dark: #F5EDE3;
  --text-on-dark-muted: #C4B5A5;

  --accent-dragonfly: #4A90A4;
  --accent-sky: #87CEEB;

  --border-warm: #E8D5C0;
  --border-card: #EDE0D2;
  --shadow-card: 0 4px 24px rgba(61, 43, 31, 0.08);
  --shadow-hover: 0 8px 32px rgba(61, 43, 31, 0.14);
  --shadow-hero: 0 2px 48px rgba(0, 0, 0, 0.3);

  --font-heading: 'Georgia', 'Noto Serif SC', 'SimSun', serif;
  --font-body: 'Segoe UI', 'PingFang SC', 'Microsoft YaHei', 'Hiragino Sans GB', sans-serif;

  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;

  --nav-height: 68px;
  --max-width: 1200px;
  --content-width: 860px;
}

/* ========== RESET ========== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  color: var(--text-primary);
  background: var(--bg-warm);
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--green-cicada); text-decoration: none; transition: color 0.25s ease; }
a:hover { color: var(--green-cicada-dark); }
ul, ol { list-style: none; }

/* ========== NAVIGATION ========== */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-height);
  background: var(--bg-nav);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-warm);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 24px;
}

.nav-brand {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--green-forest);
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-brand::before {
  content: '';
  display: inline-block;
  width: 22px;
  height: 22px;
  background: var(--green-cicada);
  border-radius: 50% 50% 50% 0;
  transform: rotate(-15deg);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-links a {
  display: inline-block;
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  font-size: 0.925rem;
  color: var(--text-secondary);
  font-weight: 500;
  transition: all 0.25s ease;
  position: relative;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--green-cicada-dark);
  background: var(--green-cicada-pale);
}

.nav-links a.active::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 50%;
  transform: translateX(-50%);
  width: 20px;
  height: 3px;
  background: var(--gold-sun);
  border-radius: 2px;
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: linear-gradient(135deg, var(--gold-sun), var(--amber-warm));
  color: #FFFFFF !important;
  padding: 8px 20px !important;
  border-radius: var(--radius-xl) !important;
  font-weight: 600 !important;
  font-size: 0.9rem !important;
  box-shadow: 0 2px 12px rgba(212, 162, 67, 0.35);
  transition: all 0.3s ease !important;
}

.nav-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 20px rgba(212, 162, 67, 0.5);
  color: #FFFFFF !important;
  background: linear-gradient(135deg, var(--amber-warm), var(--gold-sun)) !important;
}

.nav-cta::after {
  content: '⬇';
  font-size: 0.85rem;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}

.hamburger span {
  display: block;
  width: 26px;
  height: 3px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: all 0.3s ease;
}

/* ========== HEADER ========== */
header {
  margin-top: var(--nav-height);
}

/* ========== HERO ========== */
.hero {
  position: relative;
  overflow: hidden;
  min-height: 520px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 30%;
  background-repeat: no-repeat;
  z-index: 0;
}

/* Per-page hero backgrounds */
.hero-home .hero-bg { background-image: url('../img/cover.jpg'); }
.hero-story .hero-bg { background-image: url('../img/screenshot-01.jpg'); }
.hero-characters .hero-bg { background-image: url('../img/screenshot-02.jpg'); }
.hero-guide .hero-bg { background-image: url('../img/screenshot-03.jpg'); }
.hero-faq .hero-bg { background-image: url('../img/cover.jpg'); }

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(45, 90, 39, 0.55) 0%,
    rgba(61, 43, 31, 0.4) 50%,
    rgba(255, 248, 240, 0.92) 100%
  );
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: var(--content-width);
  padding: 80px 24px 60px;
}

.hero-tag {
  display: inline-block;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #FFFFFF;
  padding: 6px 18px;
  border-radius: var(--radius-xl);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  margin-bottom: 20px;
}

.hero h1 {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 700;
  color: #FFFFFF;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.4);
  margin-bottom: 16px;
  line-height: 1.3;
}

.hero-subtitle {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.9);
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.3);
  margin-bottom: 32px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.hero-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--gold-sun), var(--amber-warm));
  color: #FFFFFF;
  padding: 14px 36px;
  border-radius: var(--radius-xl);
  font-size: 1.05rem;
  font-weight: 700;
  box-shadow: 0 4px 20px rgba(212, 162, 67, 0.45);
  transition: all 0.3s ease;
}

.hero-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 28px rgba(212, 162, 67, 0.6);
  color: #FFFFFF;
}

.hero-btn::after {
  content: '↓';
  font-size: 1rem;
}

/* ========== MAIN CONTENT ========== */
main {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

/* ========== SECTIONS ========== */
section {
  padding: 64px 0;
}

.section-header {
  text-align: center;
  margin-bottom: 48px;
}

.section-header h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  color: var(--text-primary);
  margin-bottom: 12px;
  position: relative;
  display: inline-block;
}

/* Dragonfly motif on section headers */
.section-header h2::before {
  content: '𓆣';
  display: block;
  font-size: 1.4rem;
  color: var(--green-cicada);
  margin-bottom: 4px;
  opacity: 0.7;
}

.section-header h2::after {
  content: '';
  display: block;
  width: 50px;
  height: 3px;
  background: linear-gradient(90deg, var(--gold-sun), var(--green-cicada));
  border-radius: 2px;
  margin: 10px auto 0;
}

.section-header p {
  color: var(--text-secondary);
  font-size: 1rem;
  max-width: 600px;
  margin: 0 auto;
}

/* Alternating section backgrounds */
.section-alt {
  background: var(--bg-cream);
  margin: 0 calc(-50vw + 50%);
  padding-left: calc(50vw - 50%);
  padding-right: calc(50vw - 50%);
}

/* ========== INTRO SECTION ========== */
.intro-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  align-items: center;
}

.intro-text {
  font-size: 1.05rem;
  color: var(--text-secondary);
  line-height: 1.9;
}

.intro-text p {
  margin-bottom: 16px;
}

.intro-text p:last-child { margin-bottom: 0; }

.intro-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 16px;
}

.stat-card {
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-md);
  padding: 24px 16px;
  text-align: center;
  box-shadow: var(--shadow-card);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.stat-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}

.stat-icon {
  font-size: 2rem;
  margin-bottom: 8px;
}

.stat-value {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--green-cicada);
}

.stat-label {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-top: 4px;
}

/* ========== FEATURE CARDS ========== */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  box-shadow: var(--shadow-card);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--green-cicada), var(--gold-sun));
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}

.feature-icon {
  font-size: 2.5rem;
  margin-bottom: 16px;
}

.feature-card h3 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  color: var(--text-primary);
  margin-bottom: 8px;
}

.feature-card p {
  color: var(--text-secondary);
  font-size: 0.925rem;
  line-height: 1.7;
}

/* ========== SCREENSHOT GALLERY ========== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}

.gallery-item {
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: pointer;
  box-shadow: var(--shadow-card);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
}

.gallery-item::after {
  content: '🔍';
  position: absolute;
  top: 12px;
  right: 12px;
  background: rgba(0, 0, 0, 0.5);
  color: #FFF;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.gallery-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}

.gallery-item:hover::after { opacity: 1; }

.gallery-item img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
}

/* ========== REVIEWS ========== */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}

.review-card {
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  box-shadow: var(--shadow-card);
  position: relative;
}

.review-card::before {
  content: '"';
  font-family: var(--font-heading);
  font-size: 4rem;
  position: absolute;
  top: -8px;
  left: 16px;
  color: var(--green-cicada-pale);
  line-height: 1;
  pointer-events: none;
}

.review-text {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.8;
  margin-bottom: 16px;
  padding-top: 12px;
}

.review-author {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 600;
}

.review-stars {
  color: var(--gold-sun);
  margin-bottom: 8px;
}

/* ========== CTA SECTION ========== */
.cta-section {
  text-align: center;
  padding: 80px 24px;
}

.cta-section h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: var(--text-primary);
  margin-bottom: 16px;
}

.cta-section p {
  color: var(--text-secondary);
  font-size: 1.05rem;
  margin-bottom: 32px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--green-cicada), var(--green-leaf));
  color: #FFFFFF;
  padding: 16px 40px;
  border-radius: var(--radius-xl);
  font-size: 1.1rem;
  font-weight: 700;
  box-shadow: 0 4px 24px rgba(91, 140, 90, 0.4);
  transition: all 0.3s ease;
}

.cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 32px rgba(91, 140, 90, 0.55);
  color: #FFFFFF;
}

/* ========== ARTICLE / PROSE ========== */
.article-wrapper {
  max-width: var(--content-width);
  margin: 0 auto;
}

.content-page {
  padding-top: 32px;
  padding-bottom: 80px;
}

.content-page .section-header {
  margin-bottom: 40px;
}

.prose {
  font-size: 1.05rem;
  line-height: 1.9;
  color: var(--text-secondary);
}

.prose h3 {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  color: var(--text-primary);
  margin: 40px 0 16px;
  padding-left: 16px;
  border-left: 3px solid var(--green-cicada);
}

.prose h3:first-child { margin-top: 0; }

.prose p {
  margin-bottom: 20px;
}

.prose ul, .prose ol {
  margin: 16px 0 24px 24px;
}

.prose li {
  list-style: disc;
  margin-bottom: 8px;
  color: var(--text-secondary);
}

.prose ol li { list-style: decimal; }

.prose .highlight-box {
  background: var(--green-cicada-pale);
  border-left: 4px solid var(--green-cicada);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  padding: 20px 24px;
  margin: 24px 0;
  color: var(--text-primary);
  font-size: 0.95rem;
}

.prose .highlight-box strong {
  color: var(--green-forest);
}

/* ========== CHARACTER CARDS ========== */
.char-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
}

.char-card {
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.char-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}

.char-card-img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  background: linear-gradient(135deg, var(--green-cicada-pale), var(--gold-sun-pale));
}

.char-card-body {
  padding: 24px;
}

.char-card-body h3 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  color: var(--text-primary);
  margin-bottom: 6px;
}

.char-role {
  display: inline-block;
  background: var(--gold-sun-pale);
  color: var(--gold-wheat);
  padding: 2px 12px;
  border-radius: var(--radius-xl);
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 12px;
}

.char-card-body p {
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.7;
}

.char-traits {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 12px;
}

.char-trait {
  background: var(--green-cicada-pale);
  color: var(--green-cicada-dark);
  padding: 3px 10px;
  border-radius: var(--radius-sm);
  font-size: 0.8rem;
  font-weight: 500;
}

/* ========== GUIDE TABLE ========== */
.guide-table-wrap {
  overflow-x: auto;
  margin: 24px 0;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-card);
}

.guide-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.95rem;
}

.guide-table thead {
  background: var(--green-forest);
  color: #FFFFFF;
}

.guide-table th {
  padding: 14px 16px;
  text-align: left;
  font-weight: 600;
  white-space: nowrap;
}

.guide-table td {
  padding: 12px 16px;
  color: var(--text-secondary);
  border-bottom: 1px solid var(--border-card);
}

.guide-table tbody tr:nth-child(even) {
  background: var(--bg-cream);
}

.guide-table tbody tr:hover {
  background: var(--green-cicada-pale);
}

/* ========== FAQ ACCORDION ========== */
.faq-list {
  max-width: var(--content-width);
  margin: 0 auto;
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-md);
  margin-bottom: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-card);
}

.faq-question {
  width: 100%;
  padding: 20px 24px;
  background: none;
  border: none;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-primary);
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  transition: background 0.25s ease;
}

.faq-question:hover {
  background: var(--bg-cream);
}

.faq-icon {
  font-size: 1.2rem;
  color: var(--green-cicada);
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.faq-item.open .faq-icon { transform: rotate(45deg); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-item.open .faq-answer {
  max-height: 600px;
}

.faq-answer-content {
  padding: 0 24px 20px;
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.8;
  border-top: 1px solid var(--border-card);
  margin-top: -1px;
}

/* ========== LIGHTBOX ========== */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0, 0, 0, 0.92);
  align-items: center;
  justify-content: center;
  cursor: zoom-out;
}

.lightbox.open {
  display: flex;
}

.lightbox img {
  max-width: 92vw;
  max-height: 92vh;
  border-radius: var(--radius-md);
  box-shadow: 0 8px 64px rgba(0, 0, 0, 0.6);
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 28px;
  font-size: 2rem;
  color: #FFFFFF;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 2;
  opacity: 0.8;
  transition: opacity 0.2s;
}

.lightbox-close:hover { opacity: 1; }

.lightbox-prev,
.lightbox-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 2.5rem;
  color: #FFFFFF;
  background: rgba(255, 255, 255, 0.1);
  border: none;
  cursor: pointer;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
  z-index: 2;
}

.lightbox-prev:hover, .lightbox-next:hover { background: rgba(255, 255, 255, 0.25); }
.lightbox-prev { left: 20px; }
.lightbox-next { right: 20px; }

/* ========== FOOTER ========== */
footer {
  background: var(--bg-footer);
  color: var(--text-on-dark-muted);
  text-align: center;
  padding: 32px 24px;
  font-size: 0.875rem;
  line-height: 1.8;
}

footer p { margin: 0; }

/* ========== BREADCRUMB ========== */
.breadcrumb {
  max-width: var(--content-width);
  margin: 0 auto;
  padding: 16px 0 0;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.breadcrumb a {
  color: var(--text-muted);
}

.breadcrumb a:hover { color: var(--green-cicada); }

.breadcrumb span { margin: 0 6px; }

/* ========== CONTENT PAGE HERO (shorter) ========== */
.hero-short {
  min-height: 300px;
}

.hero-short .hero-content {
  padding: 60px 24px 40px;
}

.hero-short .hero-overlay {
  background: linear-gradient(
    180deg,
    rgba(45, 90, 39, 0.6) 0%,
    rgba(61, 43, 31, 0.45) 40%,
    rgba(255, 248, 240, 0.9) 100%
  );
}

/* ========== RESPONSIVE ========== */
@media (min-width: 768px) {
  .intro-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .hamburger { display: flex; }

  .nav-links {
    position: fixed;
    top: var(--nav-height);
    left: 0;
    right: 0;
    flex-direction: column;
    background: var(--bg-nav);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-warm);
    padding: 12px 24px 20px;
    gap: 4px;
    transform: translateY(-120%);
    transition: transform 0.35s ease;
    z-index: 999;
  }

  .nav-links.open {
    transform: translateY(0);
  }

  .nav-links a {
    display: block;
    padding: 12px 16px;
    text-align: center;
  }

  .hero {
    min-height: 400px;
  }

  .hero h1 {
    font-size: 1.6rem;
  }

  .hero-subtitle {
    font-size: 0.95rem;
  }

  section {
    padding: 40px 0;
  }

  .features-grid,
  .char-grid {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  }
}

@media (max-width: 480px) {
  .hero {
    min-height: 340px;
  }

  .hero-content {
    padding: 50px 16px 40px;
  }

  .hero h1 {
    font-size: 1.4rem;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .stat-value {
    font-size: 1.2rem;
  }
}
