@import url('https://fonts.googleapis.com/css2?family=JetBrains+Mono:wght@400;500&family=Playfair+Display:ital,wght@0,400;0,700;0,900;1,400&family=Source+Serif+4:ital,wght@0,300;0,400;0,600;1,300&display=swap');

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

html {
  font-size: 17px;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  background: #f5f5f5;
  color: #1f1f1f;
  font-family: 'Source Serif 4', 'Noto Serif SC', Georgia, serif;
  line-height: 1.7;
  min-height: 100vh;
  overflow-x: hidden;
  padding-bottom: 64px;
}

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

a {
  color: #1f1f1f;
  text-decoration: underline;
  text-underline-offset: 3px;
}

a:hover {
  opacity: 0.7;
}

ol, ul {
  list-style: none;
}

/* =====================
   LAYOUT SHELL
   ===================== */
.site-wrap {
  display: flex;
  min-height: 100vh;
  align-items: flex-start;
}

/* SIDEBAR */
.sidebar {
  width: 220px;
  min-height: 100vh;
  background: #ffffff;
  border-right: 1.5px solid #1f1f1f;
  position: sticky;
  top: 0;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  z-index: 10;
}

.sidebar-inner {
  padding: 32px 20px 120px;
  display: flex;
  flex-direction: column;
  gap: 28px;
  height: 100%;
}

.sidebar-brand {
  border-bottom: 2px solid #1f1f1f;
  padding-bottom: 16px;
}

.sidebar-logo {
  max-width: 140px;
  height: auto;
}

.sidebar-logo-text {
  font-family: 'Playfair Display', serif;
  font-weight: 900;
  font-size: 1rem;
  letter-spacing: -0.01em;
  line-height: 1.3;
  text-decoration: none;
  display: block;
}

.sidebar-nav ol {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.sidebar-nav li a {
  display: block;
  font-size: 0.82rem;
  font-family: 'JetBrains Mono', monospace;
  font-weight: 400;
  text-decoration: none;
  padding: 7px 10px;
  border-radius: 6px;
  transition: background 0.15s, color 0.15s;
  line-height: 1.4;
}

.sidebar-nav li a:hover,
.sidebar-nav li a[aria-current="page"] {
  background: #1f1f1f;
  color: #ffffff;
}

.sidebar-meta {
  font-size: 0.78rem;
  color: #555;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.sidebar-parent a {
  text-decoration: none;
  font-family: 'JetBrains Mono', monospace;
}

.sidebar-date time {
  font-family: 'JetBrains Mono', monospace;
}

/* MAIN WRAP */
.main-wrap {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
}

main {
  flex: 1;
  padding: 0 0 40px;
}

/* =====================
   BOTTOM BAR (NAV)
   ===================== */
.bottom-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  height: 60px;
  background: #1f1f1f;
  color: #ffffff;
  z-index: 100;
  border-top: 2px solid #1f1f1f;
}

.bottom-bar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  padding: 0 20px;
  gap: 16px;
}

.bottom-brand {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 0.9rem;
  color: #ffffff;
  text-decoration: none;
  white-space: nowrap;
  flex-shrink: 0;
  min-height: 40px;
  display: flex;
  align-items: center;
}

.bottom-bar-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.search-wrap {
  display: flex;
  align-items: center;
}

.search-input {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 20px;
  color: #ffffff;
  font-size: 0.82rem;
  padding: 6px 14px;
  width: 160px;
  outline: none;
  font-family: 'JetBrains Mono', monospace;
  transition: border-color 0.2s, background 0.2s;
}

.search-input::placeholder {
  color: rgba(255,255,255,0.5);
}

.search-input:focus {
  border-color: #ffffff;
  background: rgba(255,255,255,0.2);
}

.hamburger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  background: transparent;
  border: 1.5px solid rgba(255,255,255,0.4);
  border-radius: 8px;
  cursor: pointer;
  flex-shrink: 0;
  padding: 0;
}

.hamburger span {
  display: block;
  width: 20px;
  height: 2px;
  background: #ffffff;
  transition: transform 0.2s, opacity 0.2s;
  border-radius: 2px;
}

.hamburger[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hamburger[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.hamburger[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* =====================
   FULLSCREEN NAV OVERLAY
   ===================== */
.nav-overlay {
  position: fixed;
  inset: 0;
  background: #1f1f1f;
  color: #ffffff;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}

.nav-overlay.is-open {
  opacity: 1;
  pointer-events: all;
}

.nav-overlay-inner {
  width: 100%;
  max-width: 600px;
  padding: 40px 32px;
  position: relative;
}

.nav-close {
  position: absolute;
  top: 0;
  right: 32px;
  background: transparent;
  border: none;
  color: #ffffff;
  font-size: 1.5rem;
  cursor: pointer;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
}

.nav-close:hover {
  background: rgba(255,255,255,0.1);
}

.nav-overlay nav ol {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 48px;
}

.nav-overlay nav ol li a {
  display: block;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: clamp(1.2rem, 3vw, 1.8rem);
  color: #ffffff;
  text-decoration: none;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,0.12);
  transition: opacity 0.15s, padding-left 0.15s;
  min-height: 48px;
  line-height: 1.3;
}

.nav-overlay nav ol li a:hover {
  opacity: 0.7;
  padding-left: 8px;
}

/* =====================
   HERO SECTIONS
   ===================== */
.hero-section,
.cat-hero-section,
.entry-hero-section,
.tag-hero-section,
.about-hero-section,
.privacy-hero-section {
  background: #ffffff;
  border-bottom: 2px solid #1f1f1f;
  min-height: 45vh;
  display: flex;
  align-items: stretch;
}

.hero-figure,
.cat-hero-figure,
.entry-hero-figure,
.tag-hero-figure,
.about-hero-figure,
.privacy-hero-figure {
  display: flex;
  flex-direction: row;
  align-items: center;
  width: 100%;
  min-height: 45vh;
  gap: 0;
}

.hero-text,
.cat-hero-text,
.entry-hero-text,
.tag-hero-text,
.about-hero-text,
.privacy-hero-text {
  flex: 1;
  padding: 48px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 16px;
}

.hero-eyebrow {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #666;
  margin: 0;
}

.hero-eyebrow a {
  color: #666;
  text-decoration: none;
}

.hero-eyebrow a:hover {
  color: #1f1f1f;
}

.hero-section h1,
.cat-hero-section h1,
.entry-hero-section h1,
.tag-hero-section h1,
.about-hero-section h1,
.privacy-hero-section h1 {
  font-family: 'Playfair Display', serif;
  font-weight: 900;
  font-size: clamp(1.8rem, 4vw, 3rem);
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.hero-lead {
  font-size: 1rem;
  color: #444;
  max-width: 480px;
  line-height: 1.6;
}

.hero-media {
  width: 42%;
  min-height: 45vh;
  overflow: hidden;
  flex-shrink: 0;
  border-left: 2px solid #1f1f1f;
  position: relative;
  background: #f5f5f5;
}

.hero-media img,
.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.entry-hero-media {
  width: 38%;
  min-height: 45vh;
  overflow: hidden;
  flex-shrink: 0;
  border-left: 2px solid #1f1f1f;
  position: relative;
  background: #f5f5f5;
}

.entry-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Dot grid background */
.hero-grid-bg,
.hero-figure--text .hero-media,
.entry-hero-media--empty {
  background: #f5f5f5;
  display: flex;
  align-items: center;
  justify-content: center;
}

.dot-grid {
  width: 100%;
  height: 100%;
  background-image: radial-gradient(circle, #1f1f1f 1.2px, transparent 1.2px);
  background-size: 24px 24px;
  opacity: 0.15;
  position: absolute;
  inset: 0;
}

/* Hero asides */
.cat-hero-aside,
.tag-hero-aside,
.about-hero-aside,
.privacy-aside {
  width: 220px;
  flex-shrink: 0;
  padding: 40px 24px;
  border-left: 2px solid #1f1f1f;
  display: flex;
  flex-direction: column;
  gap: 12px;
  background: #f5f5f5;
}

.cat-hero-aside strong,
.tag-hero-aside strong,
.about-hero-aside strong,
.privacy-aside strong {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  display: block;
  border-bottom: 1px solid #1f1f1f;
  padding-bottom: 8px;
  margin-bottom: 8px;
}

.count-num {
  font-family: 'Playfair Display', serif;
  font-weight: 900;
  font-size: 3rem;
  display: block;
  line-height: 1;
}

.count-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.75rem;
  color: #666;
}

/* =====================
   BUTTON
   ===================== */
.btn-primary {
  display: inline-block;
  background: #1f1f1f;
  color: #ffffff;
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.82rem;
  font-weight: 500;
  padding: 12px 24px;
  border-radius: 6px;
  text-decoration: none;
  letter-spacing: 0.04em;
  margin-top: 8px;
  transition: opacity 0.15s, transform 0.15s;
  align-self: flex-start;
  min-height: 44px;
  line-height: 1.2;
}

.btn-primary:hover {
  opacity: 0.85;
  transform: translateY(-1px);
}

/* =====================
   CONTENT SECTIONS
   ===================== */
.content-section {
  padding: 48px 40px;
  border-bottom: 1.5px solid #e0e0e0;
}

.content-section h2 {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: clamp(1.3rem, 2.5vw, 1.8rem);
  letter-spacing: -0.01em;
  line-height: 1.2;
  margin-bottom: 4px;
}

.content-section p.subtitle,
.content-section p.subhead,
.content-section p.desc,
.content-section p.lead {
  font-size: 0.9rem;
  color: #555;
  font-family: 'Source Serif 4', serif;
  margin-bottom: 28px;
  line-height: 1.5;
}

/* =====================
   BENTO GRID
   ===================== */
.bento-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 200px;
  gap: 16px;
  margin-top: 24px;
}

.bento-grid--entries {
  grid-auto-rows: 220px;
}

.bento-card {
  background: #ffffff;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0,0,0,0.05);
  overflow: hidden;
  position: relative;
  transition: transform 0.22s cubic-bezier(0.34,1.56,0.64,1), box-shadow 0.22s;
  border-bottom: 3px solid #1f1f1f;
}

.bento-card:hover {
  transform: scale(1.02);
  box-shadow: 0 8px 24px rgba(0,0,0,0.10);
}

.bento-card.card--wide {
  grid-column: span 2;
}

.bento-card.card--tall {
  grid-row: span 2;
}

.card-link {
  display: flex;
  flex-direction: column;
  height: 100%;
  text-decoration: none;
  color: #1f1f1f;
}

.card-thumb-wrap {
  flex-shrink: 0;
  height: 110px;
  overflow: hidden;
  background: #f0f0f0;
}

.card-thumb-wrap img,
.card-thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}

.bento-card:hover .card-thumb {
  transform: scale(1.04);
}

.card-body {
  flex: 1;
  padding: 14px 16px 10px;
  display: flex;
  flex-direction: column;
  gap: 5px;
  overflow: hidden;
}

.card-eyebrow {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #888;
}

.card-body h3 {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 0.95rem;
  line-height: 1.25;
  letter-spacing: -0.01em;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.card-desc {
  font-size: 0.78rem;
  color: #666;
  line-height: 1.4;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.card-date {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.65rem;
  color: #999;
  margin-top: auto;
}

.card-accent {
  height: 0;
}

.empty-note {
  grid-column: 1 / -1;
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.82rem;
  color: #888;
}

/* =====================
   INLINE ASIDE + PROSE LAYOUT
   ===================== */
.page-content-section,
.entry-content-section,
.about-content-section,
.privacy-content-section,
.tag-entries-section {
  display: flex;
  gap: 40px;
  align-items: flex-start;
}

.inline-aside {
  width: 200px;
  flex-shrink: 0;
  background: #f5f5f5;
  border-radius: 10px;
  padding: 20px 18px;
  border-left: 3px solid #1f1f1f;
  position: sticky;
  top: 20px;
  align-self: flex-start;
}

.inline-aside strong {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  display: block;
  border-bottom: 1px solid #ccc;
  padding-bottom: 8px;
  margin-bottom: 10px;
}

.inline-aside p {
  font-size: 0.82rem;
  color: #444;
  line-height: 1.55;
}

.inline-aside ol {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.inline-aside ol li a {
  font-size: 0.8rem;
  font-family: 'JetBrains Mono', monospace;
  text-decoration: none;
  display: block;
  padding: 5px 0;
  border-bottom: 1px solid #e8e8e8;
  color: #333;
  transition: color 0.15s;
}

.inline-aside ol li a:hover {
  color: #000;
}

.aside-note {
  font-size: 0.72rem;
  color: #888;
  font-family: 'JetBrains Mono', monospace;
  margin-top: 10px;
  line-height: 1.4;
}

/* PROSE */
.prose {
  flex: 1;
  min-width: 0;
  max-width: 720px;
  font-size: 1rem;
  line-height: 1.75;
  color: #2a2a2a;
}

.prose h2 {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 1.4rem;
  margin: 32px 0 8px;
  letter-spacing: -0.01em;
}

.prose h3 {
  font-family: 'Playfair Display', serif;
  font-weight: 600;
  font-size: 1.15rem;
  margin: 24px 0 6px;
}

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

.prose ul, .prose ol {
  list-style: disc;
  padding-left: 24px;
  margin-bottom: 16px;
}

.prose ol {
  list-style: decimal;
}

.prose li {
  margin-bottom: 6px;
}

.prose a {
  color: #1f1f1f;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.prose time {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.8rem;
  color: #888;
}

.prose blockquote {
  border-left: 3px solid #1f1f1f;
  padding-left: 20px;
  margin: 20px 0;
  color: #555;
  font-style: italic;
}

.prose img {
  border-radius: 8px;
  margin: 20px 0;
}

/* =====================
   ENTRY SPECIFIC
   ===================== */
.entry-date {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.78rem;
  color: #888;
  display: block;
}

/* Gallery */
.gallery-section figure.gallery-figure {
  margin-top: 20px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.gallery-item {
  border-radius: 8px;
  overflow: hidden;
  background: #f0f0f0;
  aspect-ratio: 16/9;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* =====================
   TAG CLOUD
   ===================== */
.tag-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 8px;
}

.tag-chip {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  padding: 4px 10px;
  border: 1px solid #1f1f1f;
  border-radius: 20px;
  text-decoration: none;
  color: #1f1f1f;
  transition: background 0.15s, color 0.15s;
  white-space: nowrap;
}

.tag-chip:hover {
  background: #1f1f1f;
  color: #ffffff;
}

.tag-chip--more {
  background: #1f1f1f;
  color: #ffffff;
}

.tag-chip--more:hover {
  opacity: 0.8;
}

/* =====================
   ABOUT STATS
   ===================== */
.about-stats {
  display: flex;
  flex-direction: column;
  gap: 12px;
  list-style: none;
}

.about-stats li {
  display: flex;
  flex-direction: column;
  gap: 2px;
  border-bottom: 1px solid #ddd;
  padding-bottom: 10px;
}

.stat-num {
  font-family: 'Playfair Display', serif;
  font-weight: 900;
  font-size: 2rem;
  line-height: 1;
  display: block;
}

.stat-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.7rem;
  color: #666;
  letter-spacing: 0.06em;
}

/* =====================
   FOOTER
   ===================== */
.site-footer {
  background: #1f1f1f;
  color: #ffffff;
  border-top: 2px solid #1f1f1f;
}

.footer-inner {
  display: flex;
  align-items: center;
  padding: 24px 40px;
  gap: 32px;
  flex-wrap: wrap;
}

.footer-brand {
  flex-shrink: 0;
}

.footer-logo {
  height: 32px;
  width: auto;
  filter: invert(1);
}

.footer-brand span {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 0.9rem;
  color: #ffffff;
}

.footer-nav {
  flex: 1;
}

.footer-nav ol {
  display: flex;
  flex-wrap: wrap;
  gap: 4px 20px;
}

.footer-nav ol li a {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.72rem;
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  min-height: 40px;
  display: flex;
  align-items: center;
  transition: color 0.15s;
}

.footer-nav ol li a:hover {
  color: #ffffff;
}

.footer-copy {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.7rem;
  color: rgba(255,255,255,0.5);
  text-align: center;
  flex-basis: 100%;
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 16px;
  margin-top: 4px;
}

.footer-copy a {
  color: rgba(255,255,255,0.6);
  text-decoration: underline;
}

.footer-copy a:hover {
  color: #ffffff;
}

/* =====================
   PARALLAX / SCROLL EFFECTS
   ===================== */
@media (prefers-reduced-motion: no-preference) {
  .bento-card {
    transition: transform 0.22s cubic-bezier(0.34,1.56,0.64,1), box-shadow 0.22s;
  }

  .hero-media img {
    will-change: transform;
  }
}

@media (prefers-reduced-motion: reduce) {
  .bento-card,
  .btn-primary,
  .nav-overlay,
  .hamburger span {
    transition: none !important;
  }
}

/* =====================
   RESPONSIVE
   ===================== */
@media (max-width: 1100px) {
  .bento-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .sidebar {
    width: 180px;
  }

  .cat-hero-aside,
  .tag-hero-aside,
  .about-hero-aside,
  .privacy-aside {
    width: 160px;
  }
}

@media (max-width: 860px) {
  .sidebar {
    display: none;
  }

  .bento-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .bento-card.card--wide {
    grid-column: span 2;
  }

  .bento-card.card--tall {
    grid-row: span 1;
  }

  .content-section {
    padding: 32px 20px;
  }

  .hero-text,
  .cat-hero-text,
  .entry-hero-text,
  .tag-hero-text,
  .about-hero-text,
  .privacy-hero-text {
    padding: 32px 24px;
  }

  .hero-media,
  .entry-hero-media {
    display: none;
  }

  .cat-hero-aside,
  .tag-hero-aside,
  .about-hero-aside,
  .privacy-aside {
    display: none;
  }

  .page-content-section,
  .entry-content-section,
  .about-content-section,
  .privacy-content-section,
  .tag-entries-section {
    flex-direction: column;
  }

  .inline-aside {
    width: 100%;
    position: static;
    order: -1;
  }

  .footer-inner {
    padding: 20px 20px;
    gap: 16px;
  }

  .footer-nav ol {
    gap: 2px 12px;
  }
}

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

  .bento-grid {
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: 180px;
    gap: 10px;
  }

  .bento-card.card--wide {
    grid-column: span 2;
  }

  .hero-section,
  .cat-hero-section,
  .entry-hero-section,
  .tag-hero-section,
  .about-hero-section,
  .privacy-hero-section {
    min-height: auto;
  }

  .hero-figure,
  .cat-hero-figure,
  .entry-hero-figure,
  .tag-hero-figure,
  .about-hero-figure,
  .privacy-hero-figure {
    min-height: auto;
  }

  .hero-text,
  .cat-hero-text,
  .entry-hero-text,
  .tag-hero-text,
  .about-hero-text,
  .privacy-hero-text {
    padding: 28px 16px;
    gap: 12px;
  }

  .content-section {
    padding: 28px 16px;
  }

  .search-input {
    width: 110px;
  }

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

  .footer-inner {
    flex-direction: column;
    text-align: center;
    padding: 16px;
  }

  .footer-nav ol {
    justify-content: center;
  }

  .footer-copy {
    font-size: 0.65rem;
  }
}

@media (max-width: 375px) {
  .bento-grid {
    grid-template-columns: 1fr;
  }

  .bento-card.card--wide {
    grid-column: span 1;
  }

  .search-input {
    width: 80px;
    font-size: 0.75rem;
  }
}
