/* ==========================================================================
   WIKIVOYAGE PREMIUM ACCENT THEME FRAMEWORK
   ========================================================================== */

:root {
  --voyage-emerald: #00875a;
  --voyage-deep-teal: #064e3b;
  --voyage-gold: #d97706;
  --text-main: #0f172a;
  --text-muted: #475569;
  --bg-light: #f8fafc;
  --bg-card: #ffffff;
  --border-clean: #e2e8f0;
  --accent-soft: #f0fdf4;
  --voyage-blue: #2563eb;
  --voyage-deep-blue: #1d4ed8;
}

/* Global Reset Safeguard for Full Responsiveness */
html, body {
  max-width: 100%;
  overflow-x: hidden; /* Drops any horizontal track calculation instantly */
}

body {
  margin: 0;
  padding: 20px;
  font-family:
    -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue",
    Arial, sans-serif;
  background-color: #f1f5f9;
  color: var(--text-main);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  box-sizing: border-box;
}

*, *::before, *::after {
  box-sizing: inherit;
}

a {
  text-decoration: none !important;
}

/* Master Container Sizing & Layout */
.wiki-container,
body > *:not(script) {
  max-width: 960px;
  margin: 0 auto;
  width: 100%;
}

body > h2 {
  margin-top: 45px;
  font-size: 22px;
  font-weight: 700;
  color: var(--voyage-deep-teal);
  letter-spacing: -0.02em;
  border-bottom: 2px solid var(--border-clean);
  padding-bottom: 8px;
}

p {
  color: var(--text-muted);
  font-size: 15px;
}

/* Top Navigation Header Configuration */
.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 0 16px 0;
  border-bottom: 3px solid var(--voyage-emerald);
  margin-bottom: 28px;
}

.wiki-heading {
  margin: 0;
  font-size: 28px;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--text-main);
}

.options ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.wiki-nav-link {
  text-decoration: none;
  font-size: 13.5px;
  font-weight: 600;
  padding: 8px 16px;
  border-radius: 6px;
  transition: all 0.2s ease;
}

.wiki-nav-link.active {
  background-color: rgb(195, 249, 195);
  color: #000000;
  box-shadow: 0 4px 10px rgba(0, 135, 90, 0.2);
}

/* Premium Composite Portfolio Dashboard Panel */
.wiki-composite-panel {
  background: var(--bg-card);
  border: 1px solid var(--border-clean);
  border-radius: 12px;
  box-shadow: 0 10px 25px -5px rgba(15, 23, 42, 0.04);
  overflow: hidden;
  margin-bottom: 35px;
}

.wiki-meta-ribbon {
  display: flex;
  gap: 24px;
  padding: 28px;
  background: linear-gradient(135deg, var(--accent-soft) 0%, #ffffff 100%);
  align-items: center;
  border-bottom: 1px solid var(--border-clean);
}

.wiki-profile-wrapper {
  position: relative;
  flex-shrink: 0;
}

.wiki-profile-img {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #ffffff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.active-contributor-tag {
  position: absolute;
  bottom: -6px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--voyage-emerald);
  color: #ffffff;
  font-size: 9px;
  font-weight: 700;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: 20px;
  text-align: center;
  line-height: 1.1;
  white-space: nowrap;
  box-shadow: 0 2px 6px rgba(0, 135, 90, 0.3);
}

.wiki-meta-text {
  font-size: 15px;
  color: var(--text-muted);
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.wiki-meta-text a {
  color: var(--voyage-emerald);
  text-decoration: none;
  font-weight: 600;
}

.wiki-meta-text a:hover {
  text-decoration: underline;
}

/* Custom Accordion Layout Overrides */
.wiki-accordion {
  padding: 16px 28px;
  border-bottom: 1px solid var(--border-clean);
  background: #ffffff;
}

.wiki-accordion summary::-webkit-details-marker,
.wiki-accordion summary::marker {
  display: none !important;
}

.wiki-accordion summary {
  font-weight: 700;
  font-size: 15px;
  color: var(--text-main);
  cursor: pointer;
  outline: none;
  user-select: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.wiki-accordion summary .accordion-status {
  font-size: 12px;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: color 0.2s ease;
}

.wiki-accordion[open] summary .accordion-status::after {
  content: "[Close]";
  color: var(--voyage-blue);
}

.wiki-accordion:not([open]) summary .accordion-status::after {
  content: "[Open]";
}

.wiki-accordion p {
  margin: 12px 0 4px 0;
  font-size: 14.5px;
  line-height: 1.6;
}

/* Mapping Expertise Interest Badges Row */
.panel-interests-row {
  padding: 20px 28px;
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--bg-light);
  flex-wrap: wrap;
}

.panel-section-title {
  font-size: 13.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-muted);
}

.badge-container {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.wiki-badge {
  background: #ffffff;
  border: 1px solid var(--border-clean);
  padding: 6px 14px;
  border-radius: 6px;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--text-main);
  cursor: help;
  position: relative;
  transition: all 0.2s ease;
}

.wiki-badge:hover {
  border-color: var(--voyage-emerald);
  background-color: var(--accent-soft);
  color: var(--voyage-deep-teal);
}

/* Micro-Content Article Tables & Rows */
.wiki-article-list-header {
  font-size: 14px;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  text-align: center;
  margin-bottom: 10px;
}

.wiki-article-list {
  background: var(--bg-card);
  border: 1px solid var(--border-clean);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(15, 23, 42, 0.02);
}

.article-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 24px;
  border-bottom: 1px solid var(--border-clean);
  transition: background-color 0.15s ease;
}

.article-row:last-child {
  border-bottom: none;
}

.article-row:hover {
  background-color: #f8fafc;
}

.article-left-block {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  font-weight: 600;
  flex-wrap: wrap;
}

.article-title-link, .card-location-title a {
  color: var(--voyage-emerald);
  text-decoration: none;
}

.article-title-link:hover, .card-location-title a:hover {
  text-decoration: underline;
}

.location-badge-tag {
  background: #f1f5f9;
  color: #475569;
  font-size: 11px;
  padding: 3px 8px;
  border-radius: 4px;
  font-weight: 500;
}

.location-badge-tag-active {
  background: #fff7ed;
  color: #c2410c;
  border: 1px solid #fed7aa;
  font-size: 11px;
  padding: 2px 7px;
  border-radius: 4px;
  font-weight: 600;
}

.location-badge-tag-priority {
  color: #fff7ed;
  background-color: #db5d2b;
  border: 1px solid #fed7aa;
  font-size: 11px;
  padding: 2px 7px;
  border-radius: 4px;
  font-weight: 600;
}

.priority-badge-glow {
  background: var(--voyage-gold);
  color: #ffffff;
  font-size: 11px;
  font-weight: 700;
  width: 18px;
  height: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
}

.article-metrics {
  display: flex;
  align-items: center;
  gap: 14px;
}

.view-count {
  font-size: 13px;
  color: var(--text-muted);
  font-weight: 500;
}

/* Metric Display System Cards */
.wiki-stat-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-bottom: 24px;
  margin-top: 24px;
}

.stat-card {
  background: var(--bg-card);
  border: 1px solid var(--border-clean);
  border-radius: 10px;
  padding: 20px;
  display: flex;
  align-items: center;
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.02);
}

.stat-icon {
  font-size: 26px;
  background: var(--accent-soft);
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  border: 1px solid #d1fae5;
}

.stat-info {
  display: flex;
  flex-direction: column;
  margin-left: 12px;
}

.stat-value {
  font-size: 22px;
  font-weight: 800;
  color: var(--text-main);
  line-height: 1.2;
}

.stat-label {
  font-size: 12px;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

/* System Taxonomy Box */
.wiki-categories {
  background: var(--bg-light);
  border: 1px solid var(--border-clean);
  padding: 14px 20px;
  border-radius: 8px;
  font-size: 13.5px;
  margin-top: 24px;
}

.wiki-categories span {
  font-weight: 700;
  color: var(--text-muted);
  margin-right: 6px;
}

.wiki-categories a {
  color: var(--voyage-emerald);
  text-decoration: none;
  font-weight: 500;
}

.wiki-categories a:hover {
  text-decoration: underline;
}

/* Coordination Cards block */
.wiki-contact-grid {
  margin-top: 20px;
  margin-bottom: 40px;
  display: flex;
  flex-wrap: wrap;       
  gap: 16px;
  justify-content: center; 
  align-items: stretch;     
  padding-left: 10px;
  padding-right: 10px;
  width: 100%;
}

.contact-card-link {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  background: var(--bg-card);
  border: 1px solid var(--border-clean);
  padding: 16px 24px;
  border-radius: 8px;
  text-decoration: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.contact-card-link:hover {
  border-color: var(--voyage-emerald);
  box-shadow: 0 4px 14px rgba(20, 25, 23, 0.08);
}

/* Parent Element Configuration for Brand Cards */
.contact-card-link-brand {
  position: relative;     
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 16px;
  background: var(--bg-card, #ffffff);
  border: 1px solid var(--border-clean, #e2e8f0);
  padding: 16px 54px 16px 24px; 
  border-radius: 8px;     
  text-decoration: none;
  overflow: hidden;       
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

/* Arrow Pinning Engine */
.contact-card-link-brand::after {
  content: "\2197"; 
  position: absolute;
  right: 24px;       
  top: 50%;          
  transform: translateY(-50%); 
  display: inline-block;
  font-family: system-ui, -apple-system, sans-serif;
  font-size: 15px;
  line-height: 1;
  color: var(--voyage-blue, #2563eb);
  transition: transform 0.2s cubic-bezier(0.4, 0, 0.2, 1), color 0.2s ease;
  will-change: transform;
}

.contact-card-link-brand:hover {
  box-shadow: 0 10px 25px -5px rgba(37, 99, 235, 0.12);
}

.contact-card-link-brand:hover::after {
  color: var(--voyage-deep-blue, #1d4ed8);
  transform: translate(3px, -53%); 
}

.contact-card-link-brand:active::after {
  transform: translate(1px, -51%);
}

.contact-icon {
  font-size: 24px;
}

.contact-details {
  display: flex;
  flex-direction: column;
}

.contact-label {
  font-size: 12px;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
}

.contact-value {
  font-size: 15px;
  font-weight: 600;
  color: var(--voyage-emerald);
}

.contact-label-brand {
  font-size: 12px;
  font-weight: 700;
  color: rgb(99, 62, 222);
  text-transform: uppercase;
}

.contact-value-brand {
  font-size: 15px;
  font-weight: 600;
  color: rgb(23, 65, 119);
}

/* MediaWiki Layout Compliant Footer Elements */
.wiki-footer {
  margin-top: 60px;
  border-top: 1px solid var(--border-clean);
  padding: 24px 0 40px 0;
  font-size: 12px;
  color: var(--text-muted);
}

.footer-container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 24px;
}

.footer-content-block {
  flex: 1;
  min-width: 280px;
}

.footer-timestamp {
  margin: 0 0 6px 0;
  font-weight: 500;
}

.footer-legal {
  margin: 0;
  line-height: 1.5;
}

.footer-legal a {
  color: var(--text-main);
  text-decoration: underline;
}

.footer-meta-links {
  display: block;
  margin-top: 8px;
}

.footer-meta-links a {
  color: var(--voyage-emerald);
  text-decoration: none;
  font-weight: 600;
}

.footer-badges-block {
  display: flex;
  gap: 10px;
}

.footer-badge-pill {
  background: #ffffff;
  border: 1px solid var(--border-clean);
  border-radius: 4px;
  padding: 6px 10px;
  font-size: 11px;
  display: flex;
  align-items: center;
}

.badge-prefix {
  font-weight: 700;
  color: var(--voyage-emerald);
  margin-right: 4px;
  text-transform: uppercase;
}

.badge-value {
  color: var(--text-main);
  font-weight: 500;
}

/* ==========================================================================
   ACTIVE FIELDWORK & ITINERARIES COMPLETE SLIDER SYSTEM
   ========================================================================== */

.slider-viewport-wrapper {
  position: relative;
  width: 100%;
  margin-top: 16px;
}

.fieldwork-slider-container {
  display: flex;
  justify-content: center; /* Fluid horizontal scrolling configuration */
  gap: 24px;
  overflow-x: auto;
  padding: 12px 16px 24px 16px; /* Native track cushions */
  scroll-snap-type: x mandatory;
  scrollbar-width: none; 
}

.fieldwork-slider-container::-webkit-scrollbar {
  display: none; 
}

/* Desktop Defaults for Cards */
.fieldwork-slide-card {
  flex: 0 0 calc(50% - 12px); 
  min-width: 320px;
  background: var(--bg-card, #ffffff);
  border: 1px solid var(--border-clean, #e2e8f0);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(15, 23, 42, 0.02);
  scroll-snap-align: start;
  display: flex;
  flex-direction: column;
  transition: transform 0.2s cubic-bezier(0.4, 0, 0.2, 1), 
              box-shadow 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.fieldwork-slide-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px -5px rgba(37, 99, 235, 0.08);
}

.card-image-wrapper {
  position: relative;
  width: 100%;
  height: 240px;
  background-color: #cbd5e1;
}

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

.priority-badge-glow-card {
  position: absolute;
  top: 12px;
  right: 12px;
  background: var(--priority-amber, #d97706);
  color: #ffffff;
  font-size: 11px;
  font-weight: 800;
  width: 60px;
  height: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  box-shadow: 0 4px 10px rgba(217, 119, 6, 0.4);
}

.card-content-block {
  padding: 20px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.card-title-location-grid {
  display: flex;
  justify-content: space-between;
  flex-direction: row;
  align-items: center;
  margin-bottom: 10px;
}

.card-location-title {
  margin: 0 0 4px 0;
  font-size: 24px;
  font-weight: 700;
  color: var(--text-main, #1e293b);
  letter-spacing: -0.01em;
}

.card-location-meta {
  font-size: 13px;
  color: var(--text-muted, #64748b);
  font-weight: 500;
  margin-bottom: 16px;
}

.card-nested-accordion {
  border: 1px solid var(--border-clean, #e2e8f0);
  border-radius: 6px;
  margin-bottom: 8px;
  background: #ffffff;
  overflow: hidden;
}

.card-nested-accordion summary {
  padding: 10px 14px;
  font-size: 13px;
  font-weight: 700;
  color: var(--text-main, #1e293b);
  cursor: pointer;
  user-select: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: var(--bg-light, #f8fafc);
  outline: none;
}

.card-nested-accordion summary::-webkit-details-marker,
.card-nested-accordion summary::marker {
  display: none !important;
}

.card-nested-accordion summary .acc-indicator::after {
  content: "＋";
  font-size: 11px;
  font-weight: bold;
  color: var(--text-muted, #64748b);
}

.card-nested-accordion[open] summary .acc-indicator::after {
  content: "－";
  color: var(--voyage-blue, #2563eb);
}

.acc-inner-content {
  padding: 12px 14px;
  border-top: 1px solid var(--border-clean, #e2e8f0);
  background: #ffffff;
}

.acc-inner-content ul {
  margin: 0;
  padding-left: 18px;
}

.acc-inner-content li {
  font-size: 12.5px;
  color: var(--text-muted, #64748b);
  margin-bottom: 6px;
  line-height: 1.5;
}

.acc-inner-content li:last-child {
  margin-bottom: 0;
}

/* Safe Center-Anchored Wikivoyage Guide Button */
.card-voyage-btn {
  margin-top: auto; 
  margin-left: -20px;   
  margin-right: -20px;  
  margin-bottom: -20px; 
  padding: 16px 20px;   
  display: flex !important;        
  align-items: center;
  justify-content: center; 
  border-top: 1px dashed var(--border-clean, #e2e8f0);
  background: transparent;
  text-decoration: none;
  color: var(--voyage-blue, #2563eb) !important;
  font-size: 13px;
  font-weight: 700;
  transition: color 0.2s ease, background-color 0.2s ease;
}

.card-voyage-btn::after {
  content: "\2197" !important; 
  display: inline-block;
  margin-left: 6px;
  font-family: system-ui, -apple-system, sans-serif;
  font-size: 0.95em;
  line-height: 1;
  transform: translate(0, 0) !important;
  transition: transform 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}

.card-voyage-btn:hover {
  color: var(--voyage-deep-blue, #4573f0) !important;
  background-color: var(--bg-light, #f8fafc); 
}

.card-voyage-btn:hover::after {
  transform: translate(3px, -3px) !important;
}

.card-voyage-btn:active::after {
  transform: translate(1px, -1px) !important;
}

/* Slider Overlays & Controls */
.slider-arrow {
  position: absolute;
  top: 50%;
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid var(--border-clean, #e2e8f0);
  color: var(--voyage-blue, #2563eb);
  font-size: 28px;
  font-weight: 300;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  cursor: pointer;
  z-index: 10;
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.08);
  transition: opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1), 
              transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), 
              background-color 0.2s ease, 
              color 0.2s ease;
}

.slider-arrow:hover {
  background-color: var(--voyage-blue, #2563eb);
  border-color: var(--voyage-blue, #2563eb);
  color: #ffffff;
  box-shadow: 0 6px 16px rgba(37, 99, 235, 0.25);
}

.slider-arrow:active {
  transform: scale(0.92) translateY(-50%) !important;
}

/* ==========================================================================
   GLOBAL INTERACTIVE LINK SYSTEM WITH ISOLATED TEXT ANCHORS
   ========================================================================== */

/* SAFE ACTION REGISTRATION: Replaced raw 'a' rule to target explicit content articles */
.wiki-meta-text a, 
.wiki-categories a, 
.article-title-link,
.card-location-title a,
.footer-meta-links a,
.footer-legal a {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap; 
  color: var(--voyage-blue, #2563eb);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.2s ease;
}

.wiki-meta-text a::after, 
.wiki-categories a::after, 
.article-title-link::after,
.card-location-title a::after,
.footer-meta-links a::after {
  content: "\2197";
  display: inline-block; 
  margin-left: 5px;
  font-family: system-ui, -apple-system, sans-serif;
  font-size: 1.05em;
  line-height: 1;
  transform: translateX(0);
  transition: transform 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}

.wiki-meta-text a:hover, 
.wiki-categories a:hover, 
.article-title-link:hover,
.card-location-title a:hover,
.footer-meta-links a:hover {
  color: var(--voyage-deep-blue, #1d4ed8);
}

.wiki-meta-text a:hover::after, 
.wiki-categories a:hover::after, 
.article-title-link a:hover::after,
.card-location-title:hover::after,
.footer-meta-links a:hover::after {
  transform: translateX(4px);
}

/* ==========================================================================
   DEVICE CAPABILITY & RESPONSIVE LAYOUT ENGINE (SCROLLBAR ELIMINATION)
   ========================================================================== */

@media (hover: none) {
  .slider-arrow {
    display: none !important; /* Hides floating navigation blocks completely on touch screens */
  }
  .fieldwork-slider-container {
    justify-content: flex-start;
  }
}

@media (hover: hover) {
  .slider-arrow {
    opacity: 0;
    visibility: hidden;
  }
  .arrow-left {
    left: -10px;
    transform: translate(-10px, -50%);
    padding-right: 2px;
  }
  .arrow-right {
    right: -10px;
    transform: translate(10px, -50%);
    padding-left: 2px;
  }
  .slider-viewport-wrapper:has(.fieldwork-slide-card:nth-child(3)):hover .slider-arrow {
    opacity: 1;
    visibility: visible;
  }
  .slider-viewport-wrapper:has(.fieldwork-slide-card:nth-child(3)):hover .arrow-left {
    transform: translate(16px, -50%);
  }
  .slider-viewport-wrapper:has(.fieldwork-slide-card:nth-child(3)):hover .arrow-right {
    transform: translate(-16px, -50%);
  }
}

/* Conditional Count Visibility Logic on Desktop */
.slider-viewport-wrapper:not(:has(.fieldwork-slide-card:nth-child(3))) .slider-arrow {
  display: none !important;
}

/* General Mobile Breakpoint Overrides */
@media (max-width: 992px) {
  .fieldwork-slide-card {
    flex: 0 0 calc(75% - 12px); 
  }
}

@media (max-width: 768px) {
  .fieldwork-slide-card {
    flex: 0 0 100%; 
  }
  .fieldwork-slider-container {
    padding-left: 0;
    padding-right: 0;
    gap: 16px;
  }
}

@media (max-width: 640px) {
  body {
    padding: 12px;
  }
  .header {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }
  .wiki-meta-ribbon {
    flex-direction: column;
    text-align: center;
    padding: 20px;
  }
  .panel-interests-row {
    padding: 16px;
  }
  .article-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    padding: 14px 16px;
  }
  .article-metrics {
    width: 100%;
    justify-content: space-between;
    border-top: 1px solid #f1f5f9;
    padding-top: 8px;
    display: none;
  }
  .footer-container {
    flex-direction: column;
  }
  .contact-card-link-brand, .contact-card-link {
    width: 100%;
    justify-content: flex-start;
  }
}