@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;700&display=swap');

/* ============================================================
   CSS 变量 & 重置
   ============================================================ */
:root {
  --paper: #fdfbf7;
  --paper-dark: #f5f5f5;
  --ink: #1a1a1a;
  --ink-light: #3a3a3a;
  --ink-muted: #6a6a6a;
  --border: #d4d0c8;
  --border-dark: #b0aba0;
  --accent: #1a1a1a;
  --accent-hover: #3a3a3a;
  --font-sans: 'DM Sans', system-ui, -apple-system, sans-serif;
  --max-w: 1200px;
  --content-w: 780px;
  --radius: 0;
  --transition: none;
  --grain-opacity: 0.04;
}

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

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

body {
  font-family: var(--font-sans);
  background-color: var(--paper);
  color: var(--ink);
  line-height: 1.6;
  min-height: 100vh;
  position: relative;
  overflow-x: hidden;
}

/* 纸张纹理叠层 */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9999;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
  opacity: var(--grain-opacity);
}

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

a {
  color: var(--ink);
  text-decoration: underline;
  text-underline-offset: 3px;
}

a:hover {
  color: var(--ink-light);
}

ul {
  list-style: none;
}

/* ============================================================
   排版
   ============================================================ */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-sans);
  font-weight: 700;
  line-height: 1.25;
  color: var(--ink);
  letter-spacing: -0.02em;
}

h1 { font-size: clamp(1.8rem, 4vw, 3rem); }
h2 { font-size: clamp(1.3rem, 2.5vw, 2rem); margin-bottom: 0.5rem; }
h3 { font-size: clamp(1rem, 2vw, 1.3rem); }

p { margin-bottom: 1rem; }

hr {
  border: none;
  border-top: 2px solid var(--ink);
  margin: 0.75rem 0 1.5rem;
}

/* ============================================================
   导航 Header
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background-color: var(--paper);
  border-bottom: 2px solid var(--ink);
}

.header-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  height: 60px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-shrink: 0;
}

.brand-name {
  font-weight: 700;
  font-size: 1.1rem;
  text-decoration: none;
  letter-spacing: -0.03em;
  white-space: nowrap;
}

.logo-mark {
  width: 32px;
  height: 32px;
  object-fit: contain;
}

/* 导航：header > nav > p > a 结构 */
.site-header nav {
  flex: 1;
  overflow: hidden;
}

.site-header nav p {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  align-items: center;
}

.site-header nav p a {
  display: inline-flex;
  align-items: center;
  padding: 0.6rem 0.75rem;
  font-size: 0.85rem;
  font-weight: 500;
  text-decoration: none;
  white-space: nowrap;
  min-height: 40px;
  border-left: 1px solid transparent;
  transition: var(--transition);
}

.site-header nav p a:hover,
.site-header nav p a[aria-current="page"] {
  background-color: var(--ink);
  color: var(--paper);
}

/* 搜索框 */
.header-search {
  flex-shrink: 0;
}

.search-form {
  display: flex;
  border: 1.5px solid var(--ink);
}

.search-form input {
  padding: 0.4rem 0.6rem;
  font-size: 0.85rem;
  font-family: var(--font-sans);
  background: var(--paper);
  color: var(--ink);
  border: none;
  outline: none;
  width: 140px;
  min-height: 40px;
}

.search-form button {
  padding: 0.4rem 0.7rem;
  font-size: 0.85rem;
  font-weight: 700;
  font-family: var(--font-sans);
  background: var(--ink);
  color: var(--paper);
  border: none;
  cursor: pointer;
  min-height: 40px;
  min-width: 40px;
}

/* ============================================================
   粘性锚点条（article 页）
   ============================================================ */
.sticky-anchor-bar {
  position: sticky;
  top: 60px;
  z-index: 90;
  background-color: var(--paper-dark);
  border-bottom: 1px solid var(--border);
}

.anchor-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  height: 44px;
}

.anchor-label {
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--ink-muted);
  flex-shrink: 0;
}

.anchor-inner nav {
  display: flex;
  gap: 0.25rem;
}

.anchor-inner nav a {
  padding: 0.3rem 0.75rem;
  font-size: 0.82rem;
  text-decoration: none;
  border: 1px solid var(--border);
  min-height: 40px;
  display: inline-flex;
  align-items: center;
}

.anchor-inner nav a:hover {
  background: var(--ink);
  color: var(--paper);
  border-color: var(--ink);
}

/* ============================================================
   Hero（首页）
   ============================================================ */
.hero-section {
  min-height: 70vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-bottom: 2px solid var(--ink);
  position: relative;
  overflow: hidden;
}

.hero-media {
  position: relative;
  background-color: var(--paper-dark);
  border-right: 2px solid var(--ink);
  overflow: hidden;
  min-height: 400px;
}

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

.hero-bg-text {
  position: absolute;
  bottom: -0.2em;
  left: -0.05em;
  font-size: clamp(5rem, 15vw, 12rem);
  font-weight: 700;
  color: var(--ink);
  opacity: 0.06;
  line-height: 1;
  letter-spacing: -0.05em;
  pointer-events: none;
  user-select: none;
  white-space: nowrap;
}

.hero-content {
  padding: 3rem 3rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 1.25rem;
}

.eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: 1.5px solid var(--ink);
  padding: 0.25rem 0.6rem;
}

.hero-desc {
  font-size: 1rem;
  color: var(--ink-light);
  max-width: 440px;
  line-height: 1.65;
  margin-bottom: 0;
}

.cta-btn {
  display: inline-flex;
  align-items: center;
  padding: 0.75rem 1.75rem;
  font-size: 0.95rem;
  font-weight: 700;
  font-family: var(--font-sans);
  background: var(--ink);
  color: var(--paper);
  text-decoration: none;
  border: 2px solid var(--ink);
  min-height: 48px;
  letter-spacing: 0.02em;
}

.cta-btn:hover {
  background: var(--paper);
  color: var(--ink);
}

/* ============================================================
   主体布局（带侧边栏）
   ============================================================ */
.section-body-wrap,
.story-body-wrap,
.tag-body-wrap,
.about-body-wrap,
.privacy-body-wrap {
  display: grid;
  grid-template-columns: 220px 1fr;
  max-width: var(--max-w);
  margin: 0 auto;
  gap: 0;
  border-bottom: 1px solid var(--border);
}

/* aside 在左侧 */
.section-aside,
.story-aside,
.tag-aside,
.about-aside,
.privacy-aside {
  border-right: 1px solid var(--border);
  padding: 2rem 1.25rem;
  position: sticky;
  top: 104px;
  align-self: start;
  max-height: calc(100vh - 120px);
  overflow-y: auto;
}

.aside-inner h3 {
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--ink-muted);
  margin-bottom: 0.4rem;
}

.aside-inner hr {
  border-top-width: 1px;
  margin-bottom: 0.75rem;
}

.aside-inner ul {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
  margin-bottom: 1.5rem;
}

.aside-inner ul li a {
  display: block;
  padding: 0.4rem 0.5rem;
  font-size: 0.87rem;
  text-decoration: none;
  border-left: 2px solid transparent;
}

.aside-inner ul li a:hover {
  border-left-color: var(--ink);
  background-color: var(--paper-dark);
}

/* 右侧主内容 */
.section-main,
.story-main,
.tag-main,
.about-main,
.privacy-main {
  padding: 2.5rem 2.5rem;
  max-width: var(--content-w);
}

/* ============================================================
   页面内容（正文）
   ============================================================ */
.page-content,
.prose {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--ink-light);
}

.page-content h2,
.prose h2 {
  margin-top: 2rem;
  margin-bottom: 0.5rem;
}

.page-content h3,
.prose h3 {
  margin-top: 1.5rem;
  margin-bottom: 0.4rem;
}

.page-content ul,
.prose ul {
  list-style: disc;
  padding-left: 1.5rem;
  margin-bottom: 1rem;
}

.page-content ol,
.prose ol {
  list-style: decimal;
  padding-left: 1.5rem;
  margin-bottom: 1rem;
}

.page-content li,
.prose li {
  margin-bottom: 0.3rem;
}

.page-content a,
.prose a {
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* ============================================================
   Section Hero
   ============================================================ */
.section-hero,
.tag-hero-section,
.privacy-header-section,
.about-header-section {
  background-color: var(--paper-dark);
  border-bottom: 2px solid var(--ink);
  padding: 3rem 2.5rem;
  max-width: 100%;
}

.section-hero-inner {
  max-width: var(--max-w);
  margin: 0 auto;
}

.section-meta,
.story-breadcrumb,
.tag-meta,
.privacy-meta {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.82rem;
  color: var(--ink-muted);
  margin-bottom: 1rem;
  flex-wrap: wrap;
}

.breadcrumb {
  font-size: 0.82rem;
  color: var(--ink-muted);
}

.sep {
  color: var(--border-dark);
}

.section-desc {
  font-size: 1rem;
  color: var(--ink-light);
  margin-top: 0.75rem;
  max-width: 640px;
}

/* ============================================================
   首页 content-section
   ============================================================ */
.content-section {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 2.5rem 1.5rem;
  border-bottom: 1px solid var(--border);
}

/* ============================================================
   카드 그리드 (article grid on home)
   ============================================================ */
.sections-section,
.stories-section {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 2.5rem 1.5rem;
  border-bottom: 1px solid var(--border);
}

.sections-section h2,
.stories-section h2,
.articles-section h2,
.tag-results-section h2,
.related-posts h2,
.about-stats-section h2,
.about-links-section h2 {
  margin-bottom: 0.5rem;
}

/* 子页卡片网格 */
.section-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 1px;
  background-color: var(--border);
}

.section-grid li {
  background-color: var(--paper);
}

.section-grid li section {
  padding: 1.5rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  /* 玻璃拟态效果（哑光版）*/
  background: rgba(253,251,247,0.85);
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
  border: 1px solid rgba(212,208,200,0.6);
}

.section-grid li section:hover {
  background: var(--paper-dark);
}

.section-grid li section h3 {
  font-size: 1rem;
}

.section-grid li section h3 a {
  text-decoration: none;
}

.section-grid li section h3 a:hover {
  text-decoration: underline;
}

.section-grid li section p {
  font-size: 0.87rem;
  color: var(--ink-muted);
  margin: 0;
  line-height: 1.55;
}

.card-img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  border-bottom: 1px solid var(--border);
}

/* ============================================================
   Story 列表
   ============================================================ */
.story-list,
.child-list,
.tag-list,
.related-list {
  display: flex;
  flex-direction: column;
  gap: 1px;
  background-color: var(--border);
}

.story-list li,
.child-list li,
.tag-list li,
.related-list li {
  background-color: var(--paper);
}

.story-list li section,
.child-list li section,
.tag-list li section,
.related-list li section {
  padding: 1.25rem 1.5rem;
  display: grid;
  grid-template-columns: 1fr auto;
  grid-template-rows: auto auto;
  gap: 0.25rem 1rem;
  background: rgba(253,251,247,0.85);
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
  border: 1px solid rgba(212,208,200,0.6);
}

.story-list li section:hover,
.child-list li section:hover,
.tag-list li section:hover,
.related-list li section:hover {
  background: var(--paper-dark);
}

.story-list li section h3,
.child-list li section h3,
.tag-list li section h3,
.related-list li section h3 {
  grid-column: 1;
  font-size: 1rem;
}

.story-list li section h3 a,
.child-list li section h3 a,
.tag-list li section h3 a,
.related-list li section h3 a {
  text-decoration: none;
}

.story-list li section h3 a:hover,
.child-list li section h3 a:hover,
.tag-list li section h3 a:hover,
.related-list li section h3 a:hover {
  text-decoration: underline;
}

.story-list li section time,
.child-list li section time,
.tag-list li section time,
.related-list li section time {
  grid-column: 2;
  grid-row: 1;
  font-size: 0.78rem;
  color: var(--ink-muted);
  white-space: nowrap;
  align-self: center;
}

.story-list li section p,
.child-list li section p,
.tag-list li section p,
.related-list li section p {
  grid-column: 1 / -1;
  font-size: 0.87rem;
  color: var(--ink-muted);
  margin: 0;
  line-height: 1.5;
}

.child-img {
  width: 80px;
  height: 60px;
  object-fit: cover;
  grid-row: 1 / 3;
  grid-column: 2;
}

/* ============================================================
   Story 详情页
   ============================================================ */
.story-article {
  max-width: 100%;
}

.story-header-section {
  background-color: var(--paper-dark);
  border-bottom: 2px solid var(--ink);
  padding: 3rem 2.5rem;
}

.story-meta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 0.75rem;
}

.pub-date,
.mod-date {
  font-size: 0.82rem;
  color: var(--ink-muted);
}

.story-hero {
  margin-top: 1.5rem;
  border: 1px solid var(--border);
}

.story-hero-img {
  width: 100%;
  max-height: 400px;
  object-fit: cover;
}

.story-content-section,
.tag-content-section,
.about-content-section,
.privacy-content-section {
  margin-bottom: 2rem;
}

.story-related-section {
  border-top: 1px solid var(--border);
  padding-top: 2rem;
  margin-top: 1rem;
}

.toc-list {
  margin-bottom: 1.5rem;
}

/* ============================================================
   Tag 页面
   ============================================================ */
.tag-hero-section {
  padding: 3rem 2.5rem;
}

.tag-prefix {
  color: var(--ink-muted);
  font-weight: 400;
}

/* ============================================================
   About 页面
   ============================================================ */
.about-brand-block {
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.about-logo {
  object-fit: contain;
  height: 48px;
  width: auto;
}

.about-tagline {
  font-size: 1.05rem;
  color: var(--ink-light);
  margin: 0.5rem 0 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background-color: var(--border);
  margin-top: 1rem;
}

.stat-item {
  background-color: var(--paper);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  border: 1px solid rgba(212,208,200,0.6);
}

.stat-num {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--ink);
}

.stat-label {
  font-size: 0.85rem;
  color: var(--ink-muted);
}

.about-links {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  margin-top: 1rem;
}

.about-links li a {
  display: block;
  padding: 0.6rem 0.75rem;
  font-size: 0.95rem;
  border-left: 3px solid var(--border);
  text-decoration: none;
}

.about-links li a:hover {
  border-left-color: var(--ink);
  background-color: var(--paper-dark);
}

/* ============================================================
   Privacy 日期
   ============================================================ */
.privacy-date {
  margin-top: 0.75rem;
  font-size: 0.85rem;
  color: var(--ink-muted);
}

/* ============================================================
   Articles article (inside article layout)
   ============================================================ */
.articles-section {
  border-top: 1px solid var(--border);
  padding-top: 2rem;
  margin-top: 1rem;
}

/* ============================================================
   Global aside (首页右侧/独立区块)
   ============================================================ */
.global-aside {
  background-color: var(--paper-dark);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 1.5rem;
}

.global-aside .aside-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  gap: 2rem;
  align-items: flex-start;
}

.global-aside .aside-inner h3 {
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--ink-muted);
  white-space: nowrap;
  padding-top: 0.15rem;
}

.global-aside .aside-inner ul {
  display: flex;
  flex-wrap: wrap;
  gap: 0.25rem;
  flex: 1;
}

.global-aside .aside-inner ul li a {
  display: inline-flex;
  align-items: center;
  padding: 0.35rem 0.75rem;
  font-size: 0.85rem;
  text-decoration: none;
  border: 1px solid var(--border);
  min-height: 36px;
}

.global-aside .aside-inner ul li a:hover {
  background: var(--ink);
  color: var(--paper);
  border-color: var(--ink);
}

/* ============================================================
   页脚
   ============================================================ */
footer {
  background-color: var(--paper-dark);
  border-top: 2px solid var(--ink);
}

.footer-cta {
  background-color: var(--ink);
  color: var(--paper);
  padding: 2.5rem 1.5rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.footer-cta p {
  font-size: 1.1rem;
  font-weight: 500;
  margin: 0;
  color: var(--paper);
}

.footer-cta .cta-btn {
  background: var(--paper);
  color: var(--ink);
  border-color: var(--paper);
}

.footer-cta .cta-btn:hover {
  background: var(--paper-dark);
}

.footer-bottom {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  text-align: center;
}

footer address {
  font-style: normal;
  font-size: 0.87rem;
  color: var(--ink-muted);
}

footer ul {
  display: flex;
  flex-wrap: wrap;
  gap: 0.25rem 1rem;
  justify-content: center;
}

footer ul li a {
  font-size: 0.85rem;
  color: var(--ink-muted);
  text-decoration: none;
  padding: 0.3rem 0.1rem;
  min-height: 40px;
  display: inline-flex;
  align-items: center;
}

footer ul li a:hover {
  color: var(--ink);
  text-decoration: underline;
}

.copyright {
  font-size: 0.78rem;
  color: var(--ink-muted);
  margin: 0;
}

/* ============================================================
   Reveal 动画（Scroll Reveal + Stagger）
   ============================================================ */
@media (prefers-reduced-motion: no-preference) {
  .reveal-section {
    opacity: 0;
    transform: translateY(24px);
  }

  .reveal-section.is-visible {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.5s ease, transform 0.5s ease;
  }

  .reveal-item {
    opacity: 0;
    transform: translateY(16px);
  }

  .reveal-item.is-visible {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.45s ease calc(var(--i, 0) * 0.08s),
                transform 0.45s ease calc(var(--i, 0) * 0.08s);
  }
}

/* ============================================================
   页面特定全局布局容器
   ============================================================ */
.page-home main {
  max-width: 100%;
}

.page-home main > section > article {
  display: block;
}

/* ============================================================
   响应式
   ============================================================ */
@media (max-width: 1024px) {
  .section-body-wrap,
  .story-body-wrap,
  .tag-body-wrap,
  .about-body-wrap,
  .privacy-body-wrap {
    grid-template-columns: 180px 1fr;
  }
}

@media (max-width: 768px) {
  html { font-size: 16px; }

  .header-inner {
    flex-wrap: wrap;
    height: auto;
    padding: 0.75rem 1rem;
    gap: 0.75rem;
  }

  .site-header nav {
    order: 3;
    width: 100%;
    border-top: 1px solid var(--border);
  }

  .site-header nav p {
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .site-header nav p::-webkit-scrollbar {
    display: none;
  }

  .site-header nav p a {
    padding: 0.6rem 0.65rem;
    font-size: 0.8rem;
  }

  .header-search {
    order: 2;
    margin-left: auto;
  }

  .search-form input {
    width: 90px;
  }

  .hero-section {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .hero-media {
    border-right: none;
    border-bottom: 2px solid var(--ink);
    min-height: 220px;
  }

  .hero-content {
    padding: 2rem 1.25rem;
  }

  .section-body-wrap,
  .story-body-wrap,
  .tag-body-wrap,
  .about-body-wrap,
  .privacy-body-wrap {
    grid-template-columns: 1fr;
  }

  .section-aside,
  .story-aside,
  .tag-aside,
  .about-aside,
  .privacy-aside {
    position: static;
    border-right: none;
    border-bottom: 1px solid var(--border);
    max-height: none;
    padding: 1.25rem 1rem;
  }

  .aside-inner ul {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .aside-inner ul li a {
    padding: 0.35rem 0.6rem;
    border-left: none;
    border: 1px solid var(--border);
    font-size: 0.82rem;
  }

  .section-main,
  .story-main,
  .tag-main,
  .about-main,
  .privacy-main {
    padding: 1.5rem 1rem;
    max-width: 100%;
  }

  .section-hero,
  .tag-hero-section,
  .privacy-header-section,
  .about-header-section,
  .story-header-section {
    padding: 2rem 1rem;
  }

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

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

  .content-section {
    padding: 1.5rem 1rem;
  }

  .sections-section,
  .stories-section {
    padding: 1.5rem 1rem;
  }

  .global-aside .aside-inner {
    flex-direction: column;
    gap: 0.75rem;
  }

  .sticky-anchor-bar {
    top: 0;
  }

  .footer-bottom {
    padding: 1rem;
  }

  .about-brand-block {
    flex-direction: column;
    gap: 1rem;
    align-items: flex-start;
  }
}

@media (max-width: 480px) {
  .hero-bg-text {
    font-size: 4rem;
  }

  .story-list li section,
  .child-list li section,
  .tag-list li section,
  .related-list li section {
    grid-template-columns: 1fr;
  }

  .story-list li section time,
  .child-list li section time,
  .tag-list li section time,
  .related-list li section time {
    grid-column: 1;
    grid-row: auto;
  }
}
