/* ============================================================
   米莉亚战记 — War Chronicle Theme
   Battle-standard reds, armor-steel silvers, strategy-map motifs
   ============================================================ */

/* --- FONTS & ROOT --- */
@import url('https://fonts.googleapis.com/css2?family=Noto+Serif+SC:wght@400;600;700;900&family=Noto+Sans+SC:wght@300;400;500;700&display=swap');

:root {
  --font-serif: 'Noto Serif SC', 'SimSun', 'Songti SC', 'STSong', serif;
  --font-sans: 'Noto Sans SC', 'PingFang SC', 'Microsoft YaHei', 'Hiragino Sans GB', sans-serif;
  --crimson: #8B1A1A;
  --crimson-dark: #5C0E0E;
  --crimson-light: #B22222;
  --steel: #8A95A5;
  --steel-light: #BCC5D0;
  --steel-dark: #5A6470;
  --gold: #C8A84E;
  --gold-light: #D4B96A;
  --gold-dark: #9E8232;
  --bg: #F7F4EC;
  --bg-card: #FCFAF6;
  --bg-header: #1A1514;
  --text: #2D2826;
  --text-soft: #6B6560;
  --text-muted: #9B9490;
  --text-light: #CDC8C3;
  --white: #FEFEFE;
  --border: #DDD8D0;
  --border-dark: #C5BEB4;
  --shadow: 0 2px 12px rgba(0,0,0,0.07);
  --shadow-lg: 0 8px 32px rgba(0,0,0,0.10);
  --radius: 8px;
  --radius-sm: 4px;
  --radius-lg: 12px;
}

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

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

body {
  font-family: var(--font-sans);
  color: var(--text);
  background-color: var(--bg);
  line-height: 1.8;
  position: relative;
  min-height: 100vh;
}

/* Strategy-map background motif */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 30%, rgba(139,26,26,0.03) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(200,168,78,0.03) 0%, transparent 50%),
    linear-gradient(rgba(138,149,165,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(138,149,165,0.04) 1px, transparent 1px);
  background-size: 100% 100%, 100% 100%, 40px 40px, 40px 40px;
  pointer-events: none;
  z-index: 0;
}

a { color: var(--crimson); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--crimson-light); }

img { max-width: 100%; height: auto; display: block; }

/* --- ACCESSIBILITY --- */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

/* --- HEADER --- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--bg-header);
  border-bottom: 3px solid var(--crimson);
  box-shadow: 0 2px 16px rgba(0,0,0,0.3);
}

.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 24px;
}

.site-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--white);
}

.site-logo img {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-sm);
}

.site-logo-text {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.05em;
}

.header-nav { display: flex; gap: 4px; align-items: center; }

.header-nav a {
  color: var(--steel-light);
  text-decoration: none;
  font-size: 0.925rem;
  font-weight: 500;
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  transition: all 0.2s;
  position: relative;
}

.header-nav a:hover,
.header-nav a.active {
  color: var(--white);
  background: rgba(139,26,26,0.3);
}

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

.header-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: linear-gradient(135deg, var(--crimson), var(--crimson-light));
  color: var(--white) !important;
  padding: 10px 22px !important;
  border-radius: var(--radius);
  font-weight: 700;
  font-family: var(--font-serif);
  letter-spacing: 0.08em;
  transition: all 0.3s;
  border: 1px solid rgba(255,255,255,0.15);
}

.header-cta:hover {
  background: linear-gradient(135deg, var(--crimson-light), #CC3333);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(139,26,26,0.4);
  color: var(--white) !important;
}

.header-cta::after {
  content: '⚔';
  font-size: 0.85rem;
}

/* --- HERO (index) --- */
.hero {
  position: relative;
  background: linear-gradient(160deg, #1A1514 0%, #2D1F1C 40%, #3D2520 70%, #1A1514 100%);
  padding: 80px 24px 100px;
  text-align: center;
  overflow: hidden;
  z-index: 1;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 30% 20%, rgba(139,26,26,0.2) 0%, transparent 60%),
    radial-gradient(ellipse at 70% 80%, rgba(200,168,78,0.08) 0%, transparent 50%);
  z-index: 0;
}

/* Map-grid overlay on hero */
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(138,149,165,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(138,149,165,0.06) 1px, transparent 1px);
  background-size: 60px 60px;
  z-index: 0;
}

.hero-content { position: relative; z-index: 1; max-width: 800px; margin: 0 auto; }

.hero-badge {
  display: inline-block;
  background: rgba(139,26,26,0.25);
  border: 1px solid rgba(200,168,78,0.4);
  color: var(--gold-light);
  font-family: var(--font-serif);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  padding: 6px 20px;
  border-radius: 20px;
  margin-bottom: 24px;
}

.hero-title-main {
  font-family: var(--font-serif);
  font-size: 3.2rem;
  font-weight: 900;
  color: var(--white);
  text-shadow: 0 2px 12px rgba(139,26,26,0.5), 0 0 40px rgba(139,26,26,0.3);
  margin-bottom: 16px;
  letter-spacing: 0.06em;
  line-height: 1.2;
}

.hero-subtitle {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 400;
  color: var(--steel-light);
  margin-bottom: 8px;
  letter-spacing: 0.1em;
}

.hero-tagline {
  font-family: var(--font-sans);
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto;
}

.hero-tags {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 28px;
  flex-wrap: wrap;
}

.tag-pill {
  display: inline-block;
  padding: 4px 14px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 16px;
  color: var(--steel-light);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.05em;
}

/* --- HERO SUBPAGE (guide, story, characters, faq) --- */
.hero-subpage {
  padding: 40px 24px 48px !important;
}

.hero-subpage-title {
  font-size: 2rem !important;
  font-weight: 700 !important;
}

/* --- CONTENT WRAPPER --- */
.content-wrapper { position: relative; z-index: 1; }

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

/* --- SECTIONS --- */
.section {
  padding: 64px 0;
  position: relative;
}

.section-alt {
  background: var(--bg-card);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

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

.section-header h2 {
  font-family: var(--font-serif);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 12px;
  letter-spacing: 0.04em;
  position: relative;
  display: inline-block;
}

.section-header h2::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 48px;
  height: 3px;
  background: linear-gradient(90deg, var(--crimson), var(--gold));
  border-radius: 2px;
}

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

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

.card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-left: 4px solid var(--crimson);
  border-radius: var(--radius);
  padding: 28px;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}

.card::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 60px;
  height: 60px;
  background: radial-gradient(circle, rgba(200,168,78,0.06) 0%, transparent 70%);
}

.card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
  border-color: var(--steel-light);
}

.card-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(139,26,26,0.1), rgba(139,26,26,0.05));
  border-radius: var(--radius-sm);
  margin-bottom: 16px;
  font-size: 1.5rem;
}

.card h3 {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--text);
}

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

/* --- CONTENT SECTION (sub-pages) --- */
.content-section {
  padding: 56px 0;
}

.content-section h2 {
  font-family: var(--font-serif);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 12px;
}

.content-section h3 {
  font-family: var(--font-serif);
  font-size: 1.45rem;
  font-weight: 700;
  color: var(--text);
  margin: 36px 0 14px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--border);
}

.content-section h4 {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--text);
  margin: 24px 0 10px;
}

.content-section p {
  margin-bottom: 16px;
  color: var(--text);
  line-height: 1.85;
}

/* --- LISTS --- */
.content-list {
  list-style: disc;
  padding-left: 24px;
  margin: 12px 0 24px;
}

.content-list-num {
  list-style: decimal;
  padding-left: 24px;
  margin: 12px 0 24px;
}

.content-li { margin-bottom: 5px; color: var(--text-soft); }
.content-li-sm { margin-bottom: 4px; color: var(--text-soft); }
.content-li-md { margin-bottom: 8px; color: var(--text-soft); }
.content-li-lg { margin-bottom: 10px; color: var(--text-soft); }

/* --- COLORED STRONG --- */
.strong-red { color: var(--crimson); }
.strong-gold { color: var(--gold); }
.strong-steel { color: var(--steel-dark); }
.strong-muted { color: var(--text-muted); }
.strong-navy { color: #2C3E50; }

/* --- TABLE --- */
.table-scroll {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin: 16px 0;
}

.data-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.925rem;
}

.data-table th,
.data-table td {
  padding: 12px 16px;
  text-align: left;
  border-bottom: 1px solid var(--border);
}

.data-table th {
  background: linear-gradient(135deg, var(--crimson-dark), var(--crimson));
  color: var(--white);
  font-weight: 600;
  font-family: var(--font-serif);
  letter-spacing: 0.04em;
  white-space: nowrap;
}

.data-table tr:hover td {
  background: rgba(139,26,26,0.03);
}

.data-table td:first-child {
  font-weight: 600;
  color: var(--text);
  white-space: nowrap;
}

.td-highlight {
  color: var(--crimson) !important;
  font-weight: 700 !important;
}

/* --- CHAPTER TITLE --- */
.chapter-title {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--crimson);
  margin: 24px 0 8px;
}

/* --- GUIDE INTRO / ROUTE DESC --- */
.guide-intro {
  font-size: 1.05rem;
  color: var(--text-soft);
  margin-bottom: 24px;
  line-height: 1.8;
}

.route-desc {
  font-size: 0.95rem;
  color: var(--text-soft);
  margin-bottom: 16px;
  line-height: 1.75;
}

.route-heading {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--crimson-dark);
  margin: 28px 0 10px;
  padding-left: 12px;
  border-left: 3px solid var(--gold);
}

/* --- TIP BOX --- */
.tip-box {
  background: linear-gradient(135deg, rgba(200,168,78,0.08), rgba(200,168,78,0.04));
  border: 1px solid rgba(200,168,78,0.25);
  border-left: 4px solid var(--gold);
  border-radius: var(--radius);
  padding: 16px 20px;
  margin: 20px 0;
  font-size: 0.925rem;
  color: var(--text);
  position: relative;
}

.tip-box::before {
  content: '⚔';
  position: absolute;
  top: -12px;
  left: 12px;
  background: var(--bg-card);
  padding: 0 6px;
  font-size: 0.85rem;
  color: var(--gold);
}

.warning-box {
  background: linear-gradient(135deg, rgba(139,26,26,0.06), rgba(139,26,26,0.03));
  border: 1px solid rgba(139,26,26,0.2);
  border-left: 4px solid var(--crimson);
  border-radius: var(--radius);
  padding: 16px 20px;
  margin: 20px 0;
  font-size: 0.925rem;
  color: var(--text);
  position: relative;
}

.warning-box::before {
  content: '⚠';
  position: absolute;
  top: -12px;
  left: 12px;
  background: var(--bg-card);
  padding: 0 6px;
  font-size: 0.85rem;
  color: var(--crimson);
}

/* --- SCREENSHOT GALLERY --- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.gallery-grid img {
  border-radius: var(--radius);
  border: 1px solid var(--border);
  transition: all 0.3s;
  cursor: pointer;
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}

.gallery-grid img:hover {
  transform: scale(1.03);
  box-shadow: var(--shadow-lg);
  border-color: var(--crimson);
}

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

.lightbox-overlay.active { display: flex; }

.lightbox-overlay img {
  max-width: 90vw;
  max-height: 90vh;
  border-radius: var(--radius);
  box-shadow: 0 0 60px rgba(139,26,26,0.3);
}

.lightbox-close {
  position: absolute;
  top: 24px;
  right: 32px;
  color: var(--white);
  font-size: 2rem;
  cursor: pointer;
  opacity: 0.7;
  transition: opacity 0.2s;
  background: none;
  border: none;
  font-family: inherit;
}

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

/* --- CTA BANNER (index only) --- */
.cta-banner {
  background: linear-gradient(135deg, #1A1514, #2D1F1C);
  border-top: 2px solid var(--crimson);
  border-bottom: 2px solid var(--crimson);
  padding: 56px 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(200,168,78,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(200,168,78,0.05) 1px, transparent 1px);
  background-size: 50px 50px;
}

.cta-banner h2 {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
  position: relative;
  z-index: 1;
}

.cta-banner p {
  color: var(--steel-light);
  margin-bottom: 28px;
  position: relative;
  z-index: 1;
}

.cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--crimson), var(--crimson-light));
  color: var(--white);
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 14px 40px;
  border-radius: var(--radius);
  transition: all 0.3s;
  border: 1px solid rgba(255,255,255,0.15);
  position: relative;
  z-index: 1;
}

.cta-btn:hover {
  background: linear-gradient(135deg, var(--crimson-light), #CC3333);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(139,26,26,0.4);
  color: var(--white);
}

.cta-btn::after {
  content: '→';
  font-size: 1.2rem;
}

/* --- CHARACTER CARDS --- */
.char-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
  margin: 32px 0;
}

.char-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all 0.3s;
  position: relative;
}

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

.char-card-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-bottom: 3px solid var(--crimson);
}

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

.char-card-body h3 {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 6px;
}

.char-card-title {
  font-size: 0.8rem;
  color: var(--crimson);
  font-weight: 600;
  letter-spacing: 0.06em;
  margin-bottom: 12px;
}

.char-card-body p {
  font-size: 0.85rem;
  color: var(--text-soft);
  line-height: 1.65;
}

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

.char-trait {
  font-size: 0.75rem;
  padding: 3px 10px;
  background: rgba(139,26,26,0.06);
  border: 1px solid rgba(139,26,26,0.12);
  border-radius: 12px;
  color: var(--crimson-dark);
  font-weight: 500;
}

/* --- SECTION SUBHEADING (characters page section dividers) --- */
.section-subheading {
  text-align: center;
  margin: 40px 0 24px;
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text);
  letter-spacing: 0.05em;
}

.section-subheading::after {
  content: '';
  display: block;
  width: 36px;
  height: 2px;
  background: var(--gold);
  margin: 8px auto 0;
  border-radius: 1px;
}

/* --- FAQ ACCORDION --- */
.faq-list { margin: 32px 0; }

.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 12px;
  overflow: hidden;
  background: var(--bg-card);
  transition: all 0.2s;
}

.faq-item:hover { border-color: var(--steel-light); }

.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 24px;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text);
  text-align: left;
  transition: color 0.2s;
}

.faq-question:hover { color: var(--crimson); }

.faq-question::after {
  content: '+';
  font-size: 1.3rem;
  font-weight: 300;
  color: var(--steel);
  transition: transform 0.3s;
  flex-shrink: 0;
  margin-left: 16px;
}

.faq-item.open .faq-question::after {
  content: '−';
  transform: rotate(180deg);
  color: var(--crimson);
}

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

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

.faq-answer-inner {
  padding: 0 24px 20px;
  color: var(--text-soft);
  font-size: 0.925rem;
  line-height: 1.8;
}

/* --- REVIEW / QUOTE CARDS --- */
.review-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
}

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

.review-card::before {
  content: '"';
  position: absolute;
  top: 8px;
  left: 16px;
  font-family: var(--font-serif);
  font-size: 3rem;
  color: rgba(139,26,26,0.08);
  line-height: 1;
  pointer-events: none;
}

.review-card p {
  font-size: 0.925rem;
  color: var(--text-soft);
  line-height: 1.7;
  font-style: italic;
}

.review-author {
  margin-top: 12px;
  font-size: 0.85rem;
  color: var(--crimson);
  font-weight: 600;
  font-style: normal;
}

/* --- SYS-REQS HEADING --- */
.sys-reqs-h3 {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text);
  margin: 28px 0 12px;
  padding-bottom: 6px;
  border-bottom: 2px solid var(--border);
}

.sys-reqs-h3:first-of-type { margin-top: 20px; }

/* --- FOOTER --- */
.site-footer {
  background: var(--bg-header);
  color: var(--text-muted);
  text-align: center;
  padding: 24px;
  font-size: 0.85rem;
  border-top: 1px solid rgba(255,255,255,0.05);
  position: relative;
  z-index: 1;
}

.site-footer p { margin: 0; }

/* --- RESPONSIVE --- */
@media (max-width: 768px) {
  .hero { padding: 56px 20px 72px; }
  .hero-title-main { font-size: 2.2rem; }
  .hero-subpage-title { font-size: 1.5rem !important; }

  .header-inner { flex-wrap: wrap; gap: 8px; padding: 8px 16px; }
  .header-nav { order: 3; width: 100%; justify-content: center; flex-wrap: wrap; gap: 2px; }
  .header-nav a { padding: 6px 10px; font-size: 0.85rem; }

  .section { padding: 40px 0; }
  .section-header h2 { font-size: 1.7rem; }
  .content-section h2 { font-size: 1.7rem; }
  .content-section h3 { font-size: 1.25rem; }

  .card-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .char-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .review-grid { grid-template-columns: 1fr; }

  .cta-banner h2 { font-size: 1.5rem; }
}

@media (max-width: 480px) {
  .hero-title-main { font-size: 1.7rem; }
  .hero-subtitle { font-size: 0.95rem; }
  .hero-subpage-title { font-size: 1.3rem !important; }

  .header-nav a { padding: 4px 8px; font-size: 0.78rem; }

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

  .section { padding: 32px 0; }
  .section-header h2 { font-size: 1.4rem; }
  .content-section h2 { font-size: 1.4rem; }
  .content-section h3 { font-size: 1.1rem; }
}
