/**
 * used.css — the used-vehicle section (/used-cars and each vehicle page).
 *
 * Follows the style guide canon (CLAUDE.md §6): one brand orange (#FF8C00 for fills,
 * #c94e00 for orange text on light), Bebas for display, Inter for body and prices,
 * the 8-based spacing scale, radii 8/12/16, the two approved shadows, and ONE hover
 * language — cards lift 4px, buttons 2px, links change colour only, all at 0.2s ease.
 */

:root {
  --uc-shadow: 0 8px 24px rgba(0, 0, 0, .06);
  --uc-shadow-lift: 0 16px 40px rgba(0, 0, 0, .10);
  --uc-border: #e6e6e6;
  --uc-muted: #666;
}

.used-container {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------- neutralise the site-wide content-list styling ----------
 *
 * styles.css carries a global `ul li` rule that turns EVERY list item into a content
 * card: `padding: 15px 20px !important`, a white background, a 12px radius, a shadow and
 * a 4px orange `border-left`. That is right for prose lists and wrong for every list in
 * this section — it drew an orange crescent down the side of each gallery thumbnail and
 * inflated the vehicle grid with 30px of unwanted padding per tile.
 *
 * The global rule uses !important on font-size, color, padding, line-height and
 * margin-bottom, so specificity alone cannot beat it — those five have to be reset with
 * !important in turn. Everything else is won on specificity and source order.
 *
 * This resets; the component rules further down then style each list deliberately.
 */
.used-hub ul,
.used-vdp ul {
  padding: 0 !important;
  margin: 0 !important;
  list-style: none !important;
}

.used-hub ul > li,
.used-vdp ul > li {
  font-size: inherit !important;
  color: inherit !important;
  padding: 0 !important;
  line-height: inherit !important;
  margin-bottom: 0 !important;
  background: transparent;
  border: none;
  border-left: none;
  border-radius: 0;
  box-shadow: none;
  transition: none;
}

.used-hub ul > li:hover,
.used-vdp ul > li:hover {
  transform: none;
  box-shadow: none;
}

/* ---------- breadcrumb ---------- */

.used-breadcrumb {
  background: #f5f5f5;
  padding: 12px 24px;
  font-size: .85rem;
}

.used-breadcrumb ol {
  list-style: none;
  margin: 0 auto;
  padding: 0;
  max-width: 1080px;
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.used-breadcrumb a {
  color: #c94e00;
  text-decoration: none;
  font-weight: 600;
  transition: color .2s ease;
}

.used-breadcrumb a:hover { color: #000; }
.used-breadcrumb .sep { color: #999; }
.used-breadcrumb [aria-current="page"] { color: #333; font-weight: 600; }

/* ---------- hub header ---------- */

.used-hub, .used-vdp { padding: 48px 0 64px; }

.uc-head { margin-bottom: 32px; }

.uc-head h1 {
  font-family: var(--font-display, 'Bebas Neue'), sans-serif;
  font-size: clamp(2.2rem, 4.2vw, 3.1rem);
  line-height: 1.05;
  margin: 0 0 12px;
  letter-spacing: .5px;
}

.uc-sub {
  color: var(--uc-muted);
  max-width: 68ch;
  margin: 0;
  line-height: 1.6;
}

/* ---------- filters ---------- */

.uc-filters {
  background: #f9f9f9;
  border: 1px solid var(--uc-border);
  border-radius: 16px;
  padding: 24px;
  margin-bottom: 32px;
}

.uc-filter-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 16px;
}

.uc-field { display: flex; flex-direction: column; gap: 8px; }
.uc-field-wide { grid-column: span 2; }

.uc-field > span {
  font-size: .8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .5px;
  color: #333;
}

.uc-field select,
.uc-field input[type="search"] {
  font-family: inherit;
  font-size: 1rem;
  padding: 12px;              /* keeps the tap target ≥44px tall (CLAUDE.md §22.3) */
  border: 1px solid #ccc;
  border-radius: 8px;
  background: #fff;
  color: #000;
  min-height: 44px;
  transition: border-color .2s ease;
}

.uc-field select:hover,
.uc-field input[type="search"]:hover { border-color: #999; }

.uc-field select:focus-visible,
.uc-field input:focus-visible {
  outline: 3px solid #c94e00;
  outline-offset: 2px;
}

.uc-field input[type="range"] {
  accent-color: #FF8C00;
  min-height: 44px;
}

.uc-field output { color: #c94e00; font-weight: 700; }

.uc-filter-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--uc-border);
}

.uc-count { margin: 0; color: var(--uc-muted); }
.uc-count strong { color: #000; font-size: 1.1rem; }

.uc-reset {
  font-family: var(--font-display, 'Bebas Neue'), sans-serif;
  font-size: 1rem;
  letter-spacing: 1px;
  padding: 12px 22px;
  min-height: 44px;
  border: 1px solid #333;
  border-radius: 8px;
  background: transparent;
  color: #000;
  cursor: pointer;
  transition: transform .2s ease, background .2s ease, color .2s ease;
}

.uc-reset:hover { transform: translateY(-2px); background: #000; color: #fff; }

/* ---------- vehicle grid ---------- */

.uc-grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 20px;
}

/* Two classes deep so these beat the `.used-hub ul > li` reset above, which is one class
   and two elements. The card is itself the <li>, so it has to re-assert its own surface. */
.uc-grid .uc-card {
  background: #fff;
  border: 1px solid var(--uc-border);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--uc-shadow);
  transition: transform .2s ease, box-shadow .2s ease;
}

.uc-grid .uc-card:hover { transform: translateY(-4px); box-shadow: var(--uc-shadow-lift); }
.uc-grid .uc-card[hidden] { display: none; }

/* Cards stretch to the tallest in their row, so a card with a short trim line used to
   end with a band of dead space. Making the card a column and pushing the price to the
   bottom keeps every price on the same baseline across the row instead. */
.uc-card-link {
  display: flex;
  flex-direction: column;
  height: 100%;
  text-decoration: none;
  color: inherit;
}

.uc-card-link:focus-visible { outline: 3px solid #c94e00; outline-offset: -3px; }

/* 4:3 is the site-wide image standard — identical to the homepage `.rx-img` tiles
   (width 100%, aspect-ratio 4/3, object-fit contain, #f9f9f9 field). `contain` on a 4:3
   source in a 4:3 frame crops nothing, so no vehicle is ever clipped. The thin white band
   some photos carry is baked into the dealer's JPEG, not added here; removing it means
   asking them to export without the white canvas. */
.uc-card-img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: contain;
  background: #f9f9f9;
  border-radius: 0;
  /* The card is a column flexbox, so without this the image is a shrinkable flex item and
     a taller neighbour in the same grid row can squash the frame out of ratio. */
  flex: 0 0 auto;
}

.uc-card-noimg { aspect-ratio: 4 / 3; background: #f0f0f0; }

.uc-card-body {
  padding: 16px;
  display: flex;
  flex-direction: column;
  flex: 1;
  border-top: 1px solid #f0f0f0;
}

.uc-card-title {
  font-family: var(--font-display, 'Bebas Neue'), sans-serif;
  font-size: 1.4rem;
  margin: 0 0 4px;
  letter-spacing: .5px;
  line-height: 1.15;
}

.uc-card-trim {
  font-size: .8rem;
  color: var(--uc-muted);
  margin: 0 0 8px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.uc-card-meta { font-size: .85rem; color: var(--uc-muted); margin: 0 0 12px; }

.uc-card-price {
  font-family: var(--font-body, 'Inter'), sans-serif;
  font-weight: 900;
  font-size: 1.5rem;
  letter-spacing: -1px;
  color: #c94e00;
  margin: auto 0 0;   /* pin to the bottom of the card */
}

.uc-card-price span {
  font-size: .75rem;
  font-weight: 500;
  letter-spacing: 0;
  color: var(--uc-muted);
}

.uc-empty {
  text-align: center;
  padding: 48px 24px;
  color: var(--uc-muted);
}

/* ---------- CTA ---------- */

.used-cta {
  background: #111;
  color: #fff;
  border-radius: 16px;
  padding: 48px 24px;
  text-align: center;
  margin: 48px 0;
}

.used-cta h2 {
  font-family: var(--font-display, 'Bebas Neue'), sans-serif;
  font-size: clamp(1.6rem, 3vw, 2.1rem);
  margin: 0 0 8px;
  letter-spacing: 1px;
}

.used-cta p { color: #ccc; margin: 0 0 24px; }

/* ---------- notes ---------- */

.uc-notes {
  border-top: 1px solid var(--uc-border);
  padding-top: 32px;
  color: var(--uc-muted);
  line-height: 1.7;
}

.uc-notes h2 {
  font-family: var(--font-display, 'Bebas Neue'), sans-serif;
  font-size: clamp(1.6rem, 3vw, 2.1rem);
  color: #000;
  margin: 0 0 16px;
}

/* ---------- vehicle detail ---------- */

.vdp-head { margin-bottom: 24px; }

.vdp-eyebrow {
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: .8rem;
  font-weight: 600;
  color: var(--uc-muted);
  margin: 0 0 8px;
}

.vdp-head h1 {
  font-family: var(--font-display, 'Bebas Neue'), sans-serif;
  font-size: clamp(2.2rem, 4.2vw, 3.1rem);
  margin: 0;
  letter-spacing: .5px;
}

.vdp-trim { color: var(--uc-muted); margin: 8px 0 0; }

/* Gallery beside the price card on desktop; stacked on mobile with the price first,
   because on a phone the number is what the shopper came for. */
.vdp-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.6fr) minmax(320px, 1fr);
  gap: 32px;
  align-items: start;
  margin-bottom: 48px;
}

.vdp-gallery { min-width: 0; }

.vdp-hero {
  position: relative;
  margin: 0;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--uc-shadow);
  background: #fff;
}

/* Same 4:3 standard as the cards and the homepage tiles. */
.vdp-hero img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: contain;
  background: #f9f9f9;
  border-radius: 0;
}

.vdp-counter {
  position: absolute;
  right: 12px;
  bottom: 12px;
  background: rgba(0, 0, 0, .72);
  color: #fff;
  font-size: .8rem;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 999px;
  letter-spacing: .5px;
}

.vdp-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border: none;
  border-radius: 999px;
  background: rgba(255, 255, 255, .92);
  color: #000;
  cursor: pointer;
  box-shadow: var(--uc-shadow);
  transition: background .2s ease, opacity .2s ease;
}

.vdp-nav:hover { background: #fff; }
.vdp-nav:focus-visible { outline: 3px solid #c94e00; outline-offset: 2px; }
.vdp-nav[disabled] { opacity: .35; cursor: default; }
.vdp-nav--prev { left: 12px; }
.vdp-nav--next { right: 12px; }
.vdp-nav .cdd6-icon { width: 22px; height: 22px; }

/* The thumbnail strip was removed — navigation is the arrows + counter on the hero.
   Photos are preloaded on idle so stepping through stays instant. */

/* ---------- price widget ---------- */

.vdp-price { position: sticky; top: 16px; }

.vdp-price-card {
  background: #fff;
  border: 1px solid var(--uc-border);
  border-radius: 16px;
  padding: 24px;
  box-shadow: var(--uc-shadow);
}

.vdp-price-label {
  text-transform: uppercase;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: 1px;
  color: var(--uc-muted);
  margin: 0 0 4px;
}

.vdp-price-value {
  font-family: var(--font-body, 'Inter'), sans-serif;
  font-weight: 900;
  font-size: clamp(2.4rem, 6vw, 3rem);
  letter-spacing: -1.5px;
  color: #c94e00;
  line-height: 1;
  margin: 0 0 16px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.vdp-price-tax {
  font-size: .85rem;
  font-weight: 500;
  letter-spacing: 0;
  color: var(--uc-muted);
}

.used-vdp .vdp-price-included {
  list-style: none;
  margin: 0 0 20px !important;
  padding: 0 0 20px !important;
  border-bottom: 1px solid var(--uc-border);
  display: grid;
  gap: 8px;
}

/* Needs the extra class too: the reset forces `font-size` and `color` to inherit with
   !important, so a one-class selector would lose both here. */
.used-vdp .vdp-price-included > li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .9rem !important;
  color: #333 !important;
}

.vdp-price-included .cdd6-icon { width: 18px; height: 18px; color: #1d7a3c; flex: 0 0 auto; }

.vdp-finance {
  background: #f9f9f9;
  border-radius: 12px;
  padding: 16px;
  margin-bottom: 20px;
}

.vdp-finance-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
}

.vdp-finance-label { font-size: .85rem; font-weight: 600; color: #333; }

.vdp-finance-value {
  font-family: var(--font-body, 'Inter'), sans-serif;
  font-weight: 900;
  font-size: 1.5rem;
  letter-spacing: -.5px;
  color: #000;
}

.vdp-finance-note {
  display: flex;
  gap: 8px;
  margin: 8px 0 0;
  font-size: .78rem;
  line-height: 1.5;
  color: var(--uc-muted);
}

.vdp-finance-note .cdd6-icon { width: 15px; height: 15px; flex: 0 0 auto; margin-top: 2px; }

.vdp-call {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  min-height: 56px;
  background: #FF8C00;
  color: #000;
  font-family: var(--font-display, 'Bebas Neue'), sans-serif;
  font-size: 1.5rem;
  letter-spacing: 1px;
  text-decoration: none;
  border-radius: 8px;
  transition: transform .2s ease, background .2s ease;
}

.vdp-call:hover { transform: translateY(-2px); background: #ff9d22; }
.vdp-call:focus-visible { outline: 3px solid #000; outline-offset: 2px; }
.vdp-call .cdd6-icon { width: 22px; height: 22px; stroke-width: 2; }

.vdp-price-stock {
  margin: 12px 0 0;
  font-size: .75rem;
  color: var(--uc-muted);
  text-align: center;
}

.vdp-specs { margin-bottom: 32px; }

.vdp-specs h2, .vdp-terms h2 {
  font-family: var(--font-display, 'Bebas Neue'), sans-serif;
  font-size: clamp(1.6rem, 3vw, 2.1rem);
  margin: 0 0 16px;
}

.spec-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1px;
  background: var(--uc-border);
  border: 1px solid var(--uc-border);
  border-radius: 12px;
  overflow: hidden;
  margin: 0;
}

.spec-row {
  background: #fff;
  padding: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.spec-row .spec-icon {
  width: 24px;
  height: 24px;
  flex: 0 0 auto;
  color: #c94e00;
}

.spec-text { min-width: 0; }

.spec-row dt {
  font-size: .75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .5px;
  color: var(--uc-muted);
}

.spec-row dd { margin: 2px 0 0; font-weight: 700; word-break: break-word; }

.vdp-terms { color: var(--uc-muted); line-height: 1.7; }
.used-vdp .vdp-terms ul { padding-left: 20px !important; margin: 0 !important; list-style: disc !important; }
.used-vdp .vdp-terms > ul > li { margin-bottom: 12px !important; line-height: 1.7 !important; }
.vdp-terms strong { color: #000; }

.vdp-back { margin-top: 32px; }

.vdp-back a {
  color: #c94e00;
  font-weight: 600;
  text-decoration: none;
  transition: color .2s ease;
}

.vdp-back a:hover { color: #000; }

/* The `.cdd6-icon` primitive lives in assets/css/styles.css — icons are a site-wide
   system (docs/iconography.md), not a used-section component. */

/* ---------- responsive ---------- */

@media (max-width: 900px) {
  /* Price above the gallery on a phone: the number is what the shopper opened the page
     for, and a sticky card is pointless once the column is full width. */
  .vdp-layout { grid-template-columns: 1fr; gap: 24px; }
  .vdp-price { position: static; order: -1; }
}

@media (max-width: 640px) {
  .used-container { padding: 0 16px; }
  .uc-field-wide { grid-column: span 1; }
  .uc-filters { padding: 16px; }
  .uc-grid { grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); gap: 12px; }
  .uc-card-body { padding: 12px; }
  .uc-card-title { font-size: 1.2rem; }
  .uc-card-price { font-size: 1.25rem; }
  .vdp-price-card { padding: 20px; }
  .vdp-nav { width: 40px; height: 40px; }
}

/* ---------- browse-by-model strip (hub) ---------- */

.uc-models { margin-bottom: 32px; }

.uc-models-title {
  font-family: var(--font-display, 'Bebas Neue'), sans-serif;
  font-size: 1.3rem;
  letter-spacing: .5px;
  margin: 0 0 12px;
}

.used-hub .uc-models-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 0 !important;
  margin: 0 !important;
  list-style: none !important;
}

.uc-models-list a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  min-height: 40px;
  border: 1px solid var(--uc-border);
  border-radius: 999px;
  background: #fff;
  color: #333;
  font-size: .9rem;
  text-decoration: none;
  transition: transform .2s ease, border-color .2s ease, color .2s ease;
}

.uc-models-list a:hover { transform: translateY(-2px); border-color: #c94e00; color: #c94e00; }
.uc-models-list a:focus-visible { outline: 3px solid #c94e00; outline-offset: 2px; }

/* Models we have stocked before but not today — visibly quieter, still reachable. */
.uc-models-list a.is-empty { color: #999; border-style: dashed; }

.uc-models-n {
  background: #f0f0f0;
  border-radius: 999px;
  padding: 1px 8px;
  font-size: .78rem;
  font-weight: 700;
  color: #555;
}

/* ---------- model page ---------- */

.uc-facts { margin: 0 0 32px; }

.uc-editorial { border-top: none; padding-top: 0; margin-bottom: 32px; }
.uc-editorial p { margin: 0 0 16px; }

.uc-empty-state {
  background: #f9f9f9;
  border: 1px dashed var(--uc-border);
  border-radius: 16px;
  padding: 48px 24px;
  text-align: center;
  color: var(--uc-muted);
  line-height: 1.7;
}

.uc-empty-lead {
  font-family: var(--font-display, 'Bebas Neue'), sans-serif;
  font-size: clamp(1.6rem, 3vw, 2.1rem);
  color: #000;
  margin: 0 0 8px;
}

.uc-empty-state p { max-width: 60ch; margin: 0 auto 20px; }
.uc-empty-state .vdp-call { max-width: 320px; margin: 0 auto; }
.uc-empty-alt { margin-top: 20px !important; }
.uc-empty-alt a { color: #c94e00; font-weight: 600; text-decoration: none; }
.uc-empty-alt a:hover { color: #000; }

.uc-related { margin-top: 48px; }

.uc-related h2 {
  font-family: var(--font-display, 'Bebas Neue'), sans-serif;
  font-size: clamp(1.6rem, 3vw, 2.1rem);
  margin: 0 0 16px;
}

.used-hub .uc-related-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 0 !important;
  margin: 0 !important;
  list-style: none !important;
}

.uc-related-list a {
  display: inline-flex;
  gap: 6px;
  padding: 8px 14px;
  min-height: 40px;
  align-items: center;
  border: 1px solid var(--uc-border);
  border-radius: 999px;
  background: #fff;
  color: #333;
  font-size: .9rem;
  text-decoration: none;
  transition: transform .2s ease, border-color .2s ease, color .2s ease;
}

.uc-related-list a:hover { transform: translateY(-2px); border-color: #c94e00; color: #c94e00; }

/* ---------- "specs we have actually stocked" (model pages) ---------- */

.uc-known { margin-top: 48px; border-top: 1px solid var(--uc-border); padding-top: 32px; }

.uc-known h2 {
  font-family: var(--font-display, 'Bebas Neue'), sans-serif;
  font-size: clamp(1.6rem, 3vw, 2.1rem);
  margin: 0 0 8px;
}

.uc-known-lead { color: var(--uc-muted); max-width: 68ch; margin: 0 0 24px; line-height: 1.6; }

.uc-known-grid { display: grid; gap: 1px; background: var(--uc-border); border: 1px solid var(--uc-border); border-radius: 12px; overflow: hidden; margin: 0; }

.uc-known-row {
  background: #fff;
  padding: 16px;
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 16px;
  align-items: start;
}

.uc-known-row dt {
  font-size: .75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .5px;
  color: var(--uc-muted);
  padding-top: 4px;
}

.uc-known-row dd { margin: 0; display: flex; flex-wrap: wrap; gap: 6px; }

.uc-chip {
  display: inline-block;
  padding: 4px 10px;
  background: #f5f5f5;
  border-radius: 999px;
  font-size: .85rem;
  color: #333;
}

.uc-empty-photo { margin: 0 0 24px; }

.uc-empty-photo img {
  display: block;
  max-width: 480px;
  width: 100%;
  margin: 0 auto;
  aspect-ratio: 4 / 3;
  object-fit: contain;
  background: #f9f9f9;
  border-radius: 12px;
}

/* ---------- CARFAX ---------- */

/* A text badge in our own type, not the CARFAX logo: we have no licence to their brand
   assets. Naming the report is ordinary nominative use; reproducing their mark is not. */
.vdp-carfax {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  min-height: 48px;
  margin-top: 12px;
  padding: 0 16px;
  border: 1px solid var(--uc-border);
  border-radius: 8px;
  background: #fff;
  color: #333;
  font-size: .9rem;
  font-weight: 600;
  text-decoration: none;
  transition: transform .2s ease, border-color .2s ease, color .2s ease;
}

.vdp-carfax:hover { transform: translateY(-2px); border-color: #c94e00; color: #c94e00; }
.vdp-carfax:focus-visible { outline: 3px solid #c94e00; outline-offset: 2px; }
.vdp-carfax .cdd6-icon { width: 18px; height: 18px; color: #1d7a3c; }
.vdp-carfax b { font-weight: 800; letter-spacing: .3px; }

/* Card-level indicator: just enough to signal the report exists. */
.uc-card-carfax {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .3px;
  color: #1d7a3c;
  margin: 0 0 8px;
}

.uc-card-carfax .cdd6-icon { width: 13px; height: 13px; }

.uc-empty-photo figcaption {
  font-size: .78rem;
  color: #888;
  margin-top: 8px;
  font-style: italic;
}

@media (max-width: 640px) {
  .uc-known-row { grid-template-columns: 1fr; gap: 8px; }
}
