/* ============================================================
   VOGUETTE — Bold & Trendy Women's Fashion
   Design system: high-saturation accents, hard shadows, editorial type
   ============================================================ */

:root {
  --ink: #1a1a1a;
  --paper: #fdf6f0;
  --card: #ffffff;
  --hot-pink: #ff2e88;
  --tangerine: #ff6b1a;
  --sun: #ffc800;
  --acid: #c8f31d;
  --electric: #5b2bd6;
  --sky: #12b5ff;
  --mint: #17c39a;
  --muted: #6b6560;
  --line: #e8ddd2;
  --shadow: 5px 5px 0 rgba(26, 26, 26, 0.9);
  --shadow-sm: 3px 3px 0 rgba(26, 26, 26, 0.85);
  --radius: 14px;
  --font-display: "Space Grotesk", "PingFang SC", "Helvetica Neue", sans-serif;
  --font-body: "Inter", "PingFang SC", -apple-system, "Segoe UI", sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--paper);
  color: var(--ink);
  line-height: 1.65;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }

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

/* ---------- Layout ---------- */
.container { width: min(1160px, 92%); margin: 0 auto; }

/* ---------- Top bar ---------- */
.topbar {
  background: var(--ink);
  color: #fff;
  font-size: 12.5px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-align: center;
  padding: 9px 16px;
}
.topbar .dot { color: var(--sun); }

/* ---------- Header ---------- */
.site-header {
  background: var(--paper);
  border-bottom: 3px solid var(--ink);
  position: sticky;
  top: 0;
  z-index: 50;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
  gap: 20px;
}
.brand {
  font-family: var(--font-display);
  font-size: 30px;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1;
}
.brand .accent { color: var(--hot-pink); }
.brand small {
  display: block;
  font-size: 10px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 500;
  margin-top: 3px;
}

.nav { display: flex; gap: 4px; flex-wrap: wrap; }
.nav a {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 600;
  padding: 8px 14px;
  border-radius: 999px;
  border: 2px solid transparent;
  transition: all 0.15s ease;
}
.nav a:hover, .nav a.active {
  border-color: var(--ink);
  background: var(--ink);
  color: #fff;
  transform: translate(-2px, -2px);
  box-shadow: var(--shadow-sm);
}

.menu-toggle {
  display: none;
  background: var(--ink);
  color: #fff;
  border: none;
  font-size: 22px;
  width: 44px;
  height: 44px;
  border-radius: 10px;
  cursor: pointer;
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 85% 20%, rgba(255, 46, 136, 0.18), transparent 45%),
    radial-gradient(circle at 10% 80%, rgba(18, 181, 255, 0.16), transparent 45%),
    linear-gradient(135deg, #fff6ec, #ffe9f2);
  border-bottom: 3px solid var(--ink);
}
.hero-inner {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 40px;
  align-items: center;
  padding: 64px 0 72px;
}
.hero .kicker {
  display: inline-block;
  background: var(--acid);
  border: 2px solid var(--ink);
  padding: 5px 14px;
  border-radius: 999px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  box-shadow: var(--shadow-sm);
}
.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(38px, 6vw, 64px);
  line-height: 1.02;
  font-weight: 700;
  letter-spacing: -0.03em;
  margin: 20px 0 16px;
}
.hero h1 .stroke { color: transparent; -webkit-text-stroke: 2px var(--ink); }
.hero p.lead { font-size: 18px; color: #4a4340; max-width: 46ch; }
.hero .cta-row { display: flex; gap: 14px; margin-top: 28px; flex-wrap: wrap; }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 15px;
  padding: 13px 24px;
  border-radius: 12px;
  border: 2px solid var(--ink);
  box-shadow: var(--shadow-sm);
  transition: transform 0.12s ease, box-shadow 0.12s ease;
  cursor: pointer;
}
.btn:hover { transform: translate(-2px, -2px); box-shadow: 6px 6px 0 rgba(26,26,26,0.9); }
.btn-primary { background: var(--hot-pink); color: #fff; }
.btn-dark { background: var(--ink); color: #fff; }
.btn-ghost { background: #fff; color: var(--ink); }

.hero-art {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  transform: rotate(2deg);
}
.hero-card {
  background: var(--card);
  border: 3px solid var(--ink);
  border-radius: var(--radius);
  padding: 18px;
  box-shadow: var(--shadow);
}
.hero-card:nth-child(2) { transform: translateY(22px); }
.hero-card .swatch {
  height: 120px;
  border-radius: 10px;
  border: 2px solid var(--ink);
  margin-bottom: 14px;
  display: flex;
  align-items: flex-end;
  padding: 10px;
}
.hero-card .swatch span {
  background: #fff;
  border: 2px solid var(--ink);
  border-radius: 999px;
  padding: 3px 12px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 12px;
}
.swatch-a { background: linear-gradient(135deg, #ff2e88, #ff6b1a); }
.swatch-b { background: linear-gradient(135deg, #12b5ff, #c8f31d); }
.swatch-c { background: linear-gradient(135deg, #5b2bd6, #ff2e88); }
.swatch-d { background: linear-gradient(135deg, #17c39a, #ffc800); }
.hero-card h3 { font-family: var(--font-display); font-size: 17px; font-weight: 700; }
.hero-card p { font-size: 13px; color: var(--muted); }

/* ---------- Marquee ---------- */
.marquee {
  background: var(--ink);
  color: #fff;
  overflow: hidden;
  padding: 14px 0;
  border-bottom: 3px solid var(--ink);
}
.marquee-track {
  display: flex;
  gap: 40px;
  white-space: nowrap;
  animation: scroll 30s linear infinite;
  width: max-content;
}
.marquee span {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.marquee span i { font-style: normal; color: var(--acid); }
@keyframes scroll { to { transform: translateX(-50%); } }

/* ---------- Sections ---------- */
.section { padding: 56px 0; }
.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 28px;
}
.section-head h2 {
  font-family: var(--font-display);
  font-size: clamp(26px, 4vw, 38px);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1;
}
.section-head h2 .accent { color: var(--hot-pink); }
.section-head .tag {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--muted);
}

/* ---------- Category chips ---------- */
.cat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.cat-card {
  border: 2px solid var(--ink);
  border-radius: var(--radius);
  background: #fff;
  padding: 18px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: transform 0.13s ease, box-shadow 0.13s ease;
  display: block;
}
.cat-card:hover { transform: translate(-3px, -3px); box-shadow: var(--shadow); }
.cat-card .ico {
  width: 52px; height: 52px;
  border-radius: 14px;
  border: 2px solid var(--ink);
  margin: 0 auto 12px;
  display: grid;
  place-items: center;
  font-size: 24px;
}
.cat-card h3 { font-family: var(--font-display); font-size: 15px; font-weight: 700; }
.cat-card p { font-size: 12px; color: var(--muted); margin-top: 2px; }

/* ---------- Article cards ---------- */
.article-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.article-card {
  background: #fff;
  border: 2px solid var(--ink);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  transition: transform 0.13s ease, box-shadow 0.13s ease;
}
.article-card:hover { transform: translate(-3px, -3px); box-shadow: var(--shadow); }
.article-thumb {
  height: 200px;
  position: relative;
  border-bottom: 2px solid var(--ink);
  overflow: hidden;
  background-size: cover;
  background-position: center;
}
.article-thumb img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.article-thumb::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(26,26,26,0.05), rgba(26,26,26,0.28));
}
.article-thumb .big { font-size: 56px; }
.article-thumb .badge {
  position: absolute;
  top: 12px; left: 12px;
  background: #fff;
  border: 2px solid var(--ink);
  border-radius: 999px;
  padding: 3px 12px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  z-index: 2;
}
.featured-side .article-card .article-thumb { width: 120px; height: auto; min-height: 130px; border-bottom: none; border-right: 2px solid var(--ink); }
.featured-side .article-card .article-thumb img { height: 100%; }
.featured-side .article-card .article-thumb::after { display: none; }

/* Article banner image on detail pages */
.article-banner {
  width: 100%;
  height: 340px;
  object-fit: cover;
  display: block;
  border-bottom: 3px solid var(--ink);
}

/* Category hero banner */
.cat-banner {
  width: 100%;
  height: 260px;
  object-fit: cover;
  display: block;
  border-bottom: 3px solid var(--ink);
}

/* Homepage hero image */
.hero-img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
  border: 3px solid var(--ink);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transform: rotate(2deg);
}
.article-body { padding: 18px 20px 22px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.article-body .meta {
  font-size: 12px;
  color: var(--muted);
  font-family: var(--font-display);
  letter-spacing: 0.03em;
  text-transform: uppercase;
}
.article-body h3 { font-family: var(--font-display); font-size: 19px; font-weight: 700; line-height: 1.2; }
.article-body p.excerpt { font-size: 14px; color: #4a4340; flex: 1; }
.article-body .read-more {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 13px;
  color: var(--hot-pink);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

/* ---------- Featured (big card) ---------- */
.featured {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 24px;
  align-items: stretch;
}
.featured-main {
  background: var(--ink);
  color: #fff;
  border-radius: var(--radius);
  border: 3px solid var(--ink);
  box-shadow: var(--shadow);
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 340px;
  position: relative;
  overflow: hidden;
}
.featured-main::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 80% 15%, rgba(255,46,136,0.5), transparent 50%),
    radial-gradient(circle at 15% 85%, rgba(18,181,255,0.4), transparent 50%);
  pointer-events: none;
}
.featured-main > * { position: relative; z-index: 1; }
.featured-main .badge {
  align-self: flex-start;
  background: var(--acid);
  color: var(--ink);
  border-radius: 999px;
  padding: 5px 14px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 14px;
}
.featured-main h2 {
  font-family: var(--font-display);
  font-size: clamp(26px, 4vw, 40px);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.02em;
}
.featured-main p { color: #d9d2cc; margin-top: 12px; max-width: 52ch; }
.featured-side { display: flex; flex-direction: column; gap: 16px; }
.featured-side .article-card { flex-direction: row; align-items: stretch; }
.featured-side .article-card .article-thumb { width: 120px; height: auto; min-height: 120px; border-bottom: none; border-right: 2px solid var(--ink); }
.featured-side .article-card .article-body { flex: 1; }

/* ---------- Newsletter ---------- */
.newsletter {
  background: var(--hot-pink);
  color: #fff;
  border: 3px solid var(--ink);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 44px;
  text-align: center;
}
.newsletter h2 { font-family: var(--font-display); font-size: clamp(24px, 4vw, 36px); font-weight: 700; }
.newsletter p { margin: 10px auto 22px; max-width: 48ch; color: #ffe3ef; }
.newsletter form { display: flex; gap: 10px; max-width: 480px; margin: 0 auto; }
.newsletter input {
  flex: 1;
  padding: 13px 18px;
  border: 2px solid var(--ink);
  border-radius: 10px;
  font-family: var(--font-body);
  font-size: 15px;
}
.newsletter button { flex-shrink: 0; }

/* ---------- Breadcrumb / article page ---------- */
.crumb { font-size: 13px; color: var(--muted); padding: 22px 0 0; }
.crumb a { color: var(--electric); font-weight: 600; }
.crumb a:hover { text-decoration: underline; }

.article-hero {
  background: linear-gradient(135deg, #fff6ec, #ffe9f2);
  border-bottom: 3px solid var(--ink);
  padding: 48px 0 40px;
}
.article-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(30px, 5vw, 52px);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.02em;
  max-width: 22ch;
}
.article-hero .meta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  margin-top: 20px;
}
.chip {
  background: #fff;
  border: 2px solid var(--ink);
  border-radius: 999px;
  padding: 4px 14px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.chip.dark { background: var(--ink); color: #fff; }

.article-layout {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 40px;
  padding: 44px 0 64px;
  align-items: start;
}
.article-content { font-size: 17px; color: #26221f; }
.article-content h2 {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin: 34px 0 14px;
  padding-left: 14px;
  border-left: 5px solid var(--hot-pink);
}
.article-content h3 { font-family: var(--font-display); font-size: 20px; font-weight: 700; margin: 26px 0 10px; }
.article-content p { margin: 14px 0; }
.article-content ul, .article-content ol { margin: 14px 0 14px 22px; }
.article-content li { margin: 8px 0; }
.article-content blockquote {
  border: 2px solid var(--ink);
  background: #fff;
  border-radius: var(--radius);
  padding: 18px 22px;
  margin: 22px 0;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 18px;
  box-shadow: var(--shadow-sm);
  position: relative;
}
.article-content blockquote::before { content: "“"; font-size: 44px; color: var(--hot-pink); position: absolute; top: -6px; left: 12px; font-weight: 700; }
.article-content blockquote p { margin: 0 0 0 28px; }
.article-content .callout {
  background: var(--acid);
  border: 2px solid var(--ink);
  border-radius: var(--radius);
  padding: 16px 20px;
  font-weight: 600;
  box-shadow: var(--shadow-sm);
  margin: 20px 0;
}
.article-content .callout em { font-style: normal; }

/* ---------- Sidebar ---------- */
.sidebar { position: sticky; top: 96px; display: flex; flex-direction: column; gap: 22px; }
.side-card {
  background: #fff;
  border: 2px solid var(--ink);
  border-radius: var(--radius);
  padding: 20px;
  box-shadow: var(--shadow-sm);
}
.side-card h4 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 14px;
  padding-bottom: 10px;
  border-bottom: 2px dashed var(--line);
}
.side-card ul { list-style: none; }
.side-card li { margin: 10px 0; }
.side-card li a { font-size: 14px; font-weight: 600; color: #3a342f; }
.side-card li a:hover { color: var(--hot-pink); }
.side-card .mini { display: flex; gap: 10px; align-items: center; }
.side-card .mini .sw { width: 40px; height: 40px; border-radius: 8px; border: 2px solid var(--ink); flex-shrink: 0; }

/* ---------- Tags ---------- */
.tag-cloud { display: flex; flex-wrap: wrap; gap: 8px; }
.tag-cloud a {
  background: #fff;
  border: 2px solid var(--ink);
  border-radius: 999px;
  padding: 5px 13px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 12px;
  transition: all 0.12s ease;
}
.tag-cloud a:hover { background: var(--ink); color: #fff; transform: translate(-1px,-1px); }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--ink);
  color: #e6dfd9;
  border-top: 3px solid var(--ink);
  margin-top: 40px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 32px;
  padding: 48px 0;
}
.site-footer .brand { color: #fff; }
.site-footer .brand small { color: #8d867f; }
.site-footer h4 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #fff;
  margin-bottom: 14px;
}
.site-footer ul { list-style: none; }
.site-footer li { margin: 8px 0; }
.site-footer li a { font-size: 14px; color: #b7afa8; }
.site-footer li a:hover { color: var(--acid); }
.footer-bottom {
  border-top: 1px solid #3a342f;
  padding: 20px 0;
  font-size: 13px;
  color: #8d867f;
  text-align: center;
}

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; padding: 40px 0 48px; }
  .hero-art { max-width: 460px; }
  .cat-grid { grid-template-columns: repeat(2, 1fr); }
  .article-grid { grid-template-columns: repeat(2, 1fr); }
  .featured { grid-template-columns: 1fr; }
  .article-layout { grid-template-columns: 1fr; }
  .sidebar { position: static; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
/* Mobile navigation: hamburger dropdown (covers tablets too so the bar never crowds) */
@media (max-width: 820px) {
  .site-header { position: sticky; }
  .menu-toggle { display: block; }
  .nav { display: none; }
  .nav.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--paper);
    border-bottom: 3px solid var(--ink);
    padding: 6px 0;
    z-index: 60;
    box-shadow: 0 8px 16px rgba(26,26,26,0.12);
  }
  .nav a {
    width: auto;
    border: none;
    border-radius: 0;
    border-bottom: 1px solid var(--line);
    padding: 14px 22px;
    transform: none;
    box-shadow: none;
    font-size: 15px;
  }
  .nav a:last-child { border-bottom: none; }
  .nav a:hover, .nav a.active {
    transform: none;
    box-shadow: none;
    background: transparent;
    border-color: var(--line);
    color: var(--hot-pink);
  }
}
@media (max-width: 560px) {
  .article-grid { grid-template-columns: 1fr; }
  .cat-grid { grid-template-columns: 1fr 1fr; }
  .newsletter { padding: 28px 20px; }
  .footer-grid { grid-template-columns: 1fr; }
  .featured-main { padding: 28px; }
}

/* ---------- Inline article image ---------- */
.inline-img {
  width: 100%;
  max-width: 680px;
  display: block;
  margin: 28px auto;
  border: 3px solid var(--ink);
  border-radius: 14px;
  box-shadow: var(--shadow-sm);
}

/* ---------- Shop Now CTA (sponsored) ---------- */
.sn-kicker {
  display: inline-block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: var(--hot-pink);
  color: #fff;
  border: 2px solid var(--ink);
  border-radius: 999px;
  padding: 3px 12px;
  margin-bottom: 10px;
}
.shop-now-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  margin: 30px 0 6px;
  padding: 22px 24px;
  background: #fff;
  border: 3px solid var(--ink);
  border-radius: 14px;
  box-shadow: var(--shadow-sm);
}
.shop-now-box .sn-text h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 22px;
  margin: 4px 0 6px;
}
.shop-now-box .sn-text p { color: var(--muted); font-size: 14px; margin: 0; }
.shop-now {
  display: inline-block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  text-decoration: none;
  color: #fff;
  background: var(--hot-pink);
  border: 2px solid var(--ink);
  border-radius: 10px;
  padding: 13px 26px;
  box-shadow: 4px 4px 0 var(--ink);
  transition: transform 0.1s ease, box-shadow 0.1s ease;
  white-space: nowrap;
}
.shop-now:hover { transform: translate(-2px,-2px); box-shadow: 6px 6px 0 var(--ink); }

/* ---------- Home sponsor banner ---------- */
.sponsor { padding: 8px 0 4px; }
.sponsor-banner {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 0;
  text-decoration: none;
  color: inherit;
  background: #fff;
  border: 3px solid var(--ink);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform 0.12s ease, box-shadow 0.12s ease;
}
.sponsor-banner:hover { transform: translate(-2px,-2px); box-shadow: 8px 8px 0 var(--ink); }
.sponsor-media { overflow: hidden; }
.sponsor-media img { width: 100%; height: 100%; object-fit: cover; display: block; min-height: 240px; }
.sponsor-copy { padding: 28px 30px; display: flex; flex-direction: column; justify-content: center; }
.sponsor-copy h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(20px, 2.4vw, 28px);
  line-height: 1.15;
  margin: 8px 0 10px;
}
.sponsor-copy p { color: var(--muted); margin: 0 0 16px; }
.sponsor-copy .shop-now { align-self: flex-start; }

/* ---------- Responsive sponsor + cta ---------- */
@media (max-width: 720px) {
  .sponsor-banner { grid-template-columns: 1fr; }
  .sponsor-media img { min-height: 200px; }
  .shop-now-box { flex-direction: column; align-items: flex-start; }
  .shop-now-box .shop-now { width: 100%; text-align: center; }
}
