/* =========================================
   FILOSOFIA DI — Light Editorial Theme
   ========================================= */

@import url('https://fonts.googleapis.com/css2?family=Cormorant:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400;1,500&family=Crimson+Pro:ital,opsz,wght@0,6..72,300;0,6..72,400;0,6..72,600;1,6..72,300;1,6..72,400&family=Barlow:wght@300;400;500&display=swap');

/* =========================================
   VARIABLES
   ========================================= */

:root {
  --bg:           #F5F0E8;
  --bg-surface:   #EDE8DE;
  --bg-elevated:  #E6E0D5;

  --border:       #D2C9BC;
  --border-sub:   #DDD7CC;

  --text:         #1C1814;
  --text-muted:   #6B6258;
  --text-dim:     #A8A098;

  --accent:       #8C3028;
  --accent-light: rgba(140, 48, 40, 0.07);

  --font-display: 'Cormorant', serif;
  --font-body:    'Crimson Pro', serif;
  --font-ui:      'Barlow', sans-serif;

  --nav-h: 64px;
  --max-w: 960px;
  --ease:  cubic-bezier(0.16, 1, 0.3, 1);
}

/* =========================================
   RESET & BASE
   ========================================= */

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 1.1rem;
  line-height: 1.72;
  min-height: 100vh;
}

img   { display: block; max-width: 100%; }
a     { color: inherit; text-decoration: none; }
ul    { list-style: none; }
button{ cursor: pointer; border: none; background: none; font: inherit; color: inherit; padding: 0; }
hr    { border: none; border-top: 1px solid var(--border); }

/* =========================================
   TYPOGRAPHY
   ========================================= */

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.12;
  letter-spacing: -0.015em;
  color: var(--text);
}

.label {
  font-family: var(--font-ui);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
}

.meta {
  font-family: var(--font-ui);
  font-size: 0.7rem;
  font-weight: 300;
  letter-spacing: 0.08em;
  color: var(--text-dim);
}

/* =========================================
   LAYOUT
   ========================================= */

.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.page-wrap { padding-top: var(--nav-h); }

/* =========================================
   NAVIGATION
   ========================================= */

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  height: var(--nav-h);
  background: var(--bg);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s;
}

.site-header.scrolled {
  border-color: var(--border);
}

.nav-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Logo */
.nav-logo {
  display: flex;
  flex-direction: column;
  gap: 1px;
  line-height: 1;
  transition: opacity 0.2s;
  white-space: nowrap;
  text-decoration: none;
}
.nav-logo:hover { opacity: 0.65; }

.nav-logo-main {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  color: var(--text);
}
.nav-logo-main .dot { color: var(--accent); }

.nav-logo-sub {
  font-family: var(--font-ui);
  font-size: 0.53rem;
  font-weight: 300;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-dim);
}

@media (max-width: 380px) { .nav-logo-sub { display: none; } }

/* Nav links */
.nav-links {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.nav-links a {
  font-family: var(--font-ui);
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  color: var(--text-muted);
  transition: color 0.2s;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0; right: 0;
  height: 1px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s var(--ease);
}

.nav-links a:hover,
.nav-links a.active { color: var(--text); }

.nav-links a:hover::after,
.nav-links a.active::after { transform: scaleX(1); }

.nav-end { display: flex; gap: 1rem; align-items: center; }

/* Mobile */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 20px; height: 1px;
  background: var(--text-muted);
  transition: all 0.25s;
}

@media (max-width: 580px) {
  .nav-links { display: none; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    position: fixed;
    top: var(--nav-h);
    left: 0; right: 0;
    background: var(--bg);
    border-bottom: 1px solid var(--border);
    padding: 1.5rem;
    gap: 1.25rem;
  }
  .nav-toggle { display: flex; }
  .nav-end { gap: 0.5rem; }
}

/* =========================================
   BUTTONS
   ========================================= */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.65rem 1.35rem;
  font-family: var(--font-ui);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: all 0.2s;
  white-space: nowrap;
}

.btn-red {
  background: var(--accent);
  color: #F5F0E8;
}
.btn-red:hover {
  background: #7A2820;
  transform: translateY(-1px);
}

.btn-outline {
  border: 1px solid var(--border);
  color: var(--text-muted);
}
.btn-outline:hover {
  border-color: var(--text-muted);
  color: var(--text);
}

/* =========================================
   LINKS / ARROWS
   ========================================= */

.link-arrow {
  font-family: var(--font-ui);
  font-size: 0.73rem;
  letter-spacing: 0.07em;
  color: var(--text-muted);
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  transition: color 0.2s;
}
.link-arrow:hover { color: var(--accent); }

/* =========================================
   AUDIO PLAYER
   ========================================= */

.audio-player {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: var(--bg-surface);
  border: 1px solid var(--border);
  padding: 0.8rem 1.1rem;
  max-width: 440px;
}

.ap-play {
  width: 34px; height: 34px;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: border-color 0.2s, background 0.2s;
}
.ap-play:hover,
.ap-play.playing {
  border-color: var(--accent);
  background: var(--accent-light);
  color: var(--accent);
}

.ap-body { flex: 1; display: flex; flex-direction: column; gap: 0.35rem; }

.ap-bar {
  width: 100%; height: 2px;
  background: var(--border);
  cursor: pointer;
  position: relative;
}
.ap-fill {
  height: 100%;
  background: var(--accent);
  width: 0%;
  transition: width 0.1s linear;
  pointer-events: none;
}

.ap-times { display: flex; justify-content: space-between; }
.ap-times span {
  font-family: var(--font-ui);
  font-size: 0.64rem;
  font-weight: 300;
  letter-spacing: 0.06em;
  color: var(--text-dim);
}

/* =========================================
   SECTION DIVIDER / HEADER
   ========================================= */

.sec-rule {
  border: none;
  border-top: 1px solid var(--border);
  margin: 0;
}

.sec-label {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  padding: 1.25rem 0 1.75rem;
}

/* =========================================
   HOMEPAGE — IDENTITY HERO
   ========================================= */

.identity-section {
  padding: 4.5rem 0 3.5rem;
  border-bottom: 1px solid var(--border);
}

.identity-tagline {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 7vw, 5rem);
  font-weight: 300;
  line-height: 1.06;
  letter-spacing: -0.025em;
  color: var(--text);
  margin-bottom: 1.5rem;
  max-width: 700px;
}

.identity-tagline em {
  font-style: italic;
  color: var(--text-muted);
}

.identity-desc {
  font-size: 1.1rem;
  color: var(--text-muted);
  line-height: 1.75;
  max-width: 520px;
}

/* =========================================
   HOMEPAGE — FEATURED EPISODE
   ========================================= */

.ep-featured-section {
  padding: 3rem 0;
  border-bottom: 1px solid var(--border);
}

.ep-featured {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 2.5rem;
  align-items: start;
}

.ep-featured-num {
  font-family: var(--font-display);
  font-size: 4.5rem;
  font-weight: 300;
  color: var(--border);
  line-height: 1;
  padding-top: 0.3rem;
  transition: color 0.3s;
}
.ep-featured:hover .ep-featured-num { color: var(--bg-elevated); }

.ep-featured-body { display: flex; flex-direction: column; gap: 0.875rem; }

.ep-featured-meta {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.ep-featured-title {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 500;
  line-height: 1.12;
  letter-spacing: -0.02em;
}
.ep-featured-title a { transition: color 0.2s; }
.ep-featured-title a:hover { color: var(--accent); }

.ep-featured-desc {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 540px;
}

.ep-featured-actions {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-top: 0.25rem;
}

@media (max-width: 500px) {
  .ep-featured { grid-template-columns: 48px 1fr; gap: 1.25rem; }
  .ep-featured-num { font-size: 3rem; }
}

/* =========================================
   HOMEPAGE — APPUNTI CALLOUT
   ========================================= */

.appunti-callout {
  padding: 2rem 0;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.appunti-callout p {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.1rem;
  color: var(--text-muted);
}

/* =========================================
   HOMEPAGE — ARISTOTLE QUOTE
   ========================================= */

.quote-section {
  padding: 4rem 0;
  border-bottom: 1px solid var(--border);
}

.aristotle-quote {
  max-width: 640px;
}

.aristotle-quote .q-it {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.5rem, 3.5vw, 2.2rem);
  font-weight: 300;
  line-height: 1.35;
  color: var(--text);
  margin-bottom: 1rem;
}

.aristotle-quote .q-el,
.aristotle-quote .q-la {
  font-family: var(--font-display);
  font-size: 1rem;
  line-height: 1.55;
  color: var(--text-dim);
  display: block;
  margin-bottom: 0.35rem;
}
.aristotle-quote .q-el { font-style: normal; }
.aristotle-quote .q-la { font-style: italic; }

.aristotle-quote footer {
  font-family: var(--font-ui);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-top: 1rem;
}

/* =========================================
   EPISODES LIST (episodi.html)
   ========================================= */

.ep-list-section {
  padding: 3rem 0 5rem;
}

.ep-list { border-top: 1px solid var(--border); }

.ep-row {
  display: grid;
  grid-template-columns: 40px 1fr auto;
  gap: 1.75rem;
  align-items: start;
  padding: 1.5rem 0.25rem;
  border-bottom: 1px solid var(--border-sub);
  transition: background 0.15s;
  cursor: default;
}
.ep-row:hover { background: var(--bg-surface); }

.row-n {
  font-family: var(--font-ui);
  font-size: 0.68rem;
  font-weight: 300;
  letter-spacing: 0.1em;
  color: var(--text-dim);
  padding-top: 0.25rem;
  text-align: right;
}

.row-body { display: flex; flex-direction: column; gap: 0.25rem; }

.row-title {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 500;
  line-height: 1.2;
}
.row-title a { transition: color 0.2s; }
.row-title a:hover { color: var(--accent); }

.row-desc {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.55;
  margin-bottom: 0.6rem;
}

.row-meta-col {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.4rem;
  padding-top: 0.2rem;
  flex-shrink: 0;
}

@media (max-width: 560px) {
  .ep-row { grid-template-columns: 36px 1fr; }
  .row-meta-col { grid-column: 2; flex-direction: row; gap: 1rem; }
}

/* =========================================
   SINGLE EPISODE PAGE
   ========================================= */

.ep-header {
  padding: 3.5rem 0 3rem;
  border-bottom: 1px solid var(--border);
}

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-family: var(--font-ui);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-dim);
  transition: color 0.2s;
  margin-bottom: 2rem;
}
.back-link:hover { color: var(--text-muted); }

.ep-eyebrow {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.1rem;
}

.ep-main-title {
  font-size: clamp(2rem, 5vw, 3.25rem);
  font-weight: 300;
  line-height: 1.09;
  margin-bottom: 0.75rem;
}

.ep-subtitle {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.2rem;
  color: var(--text-muted);
  margin-bottom: 1.25rem;
}

.ep-full-desc {
  font-size: 1.1rem;
  color: var(--text-muted);
  line-height: 1.78;
  max-width: 560px;
  margin-bottom: 2rem;
}

.ep-body { padding: 2.5rem 0 5rem; }

.ep-body-grid {
  display: grid;
  grid-template-columns: 1fr 260px;
  gap: 3.5rem;
}

@media (max-width: 720px) {
  .ep-body-grid { grid-template-columns: 1fr; gap: 2rem; }
  .ep-sidebar { position: static !important; }
}

.video-wrap {
  aspect-ratio: 16/9;
  background: var(--bg-surface);
  border: 1px solid var(--border);
  margin-bottom: 2rem;
  overflow: hidden;
}
.video-wrap iframe { width: 100%; height: 100%; border: none; }
.video-placeholder {
  width: 100%; aspect-ratio: 16/9;
  background: var(--bg-surface);
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 2rem;
}
.video-placeholder svg { color: var(--text-dim); }
.video-placeholder span {
  font-family: var(--font-ui);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  color: var(--text-dim);
  text-transform: uppercase;
}

.ep-notes h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 400;
  margin-bottom: 0.875rem;
}
.ep-notes p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--text-muted);
  margin-bottom: 0.875rem;
}
.ep-notes ul {
  list-style: disc;
  padding-left: 1.25rem;
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 2;
}
.ep-notes h3 + * { margin-top: 0; }

.ep-sidebar {
  position: sticky;
  top: calc(var(--nav-h) + 2rem);
}

.sidebar-box {
  padding: 1.25rem;
  border: 1px solid var(--border);
  margin-bottom: 1rem;
  background: var(--bg-surface);
}
.sidebar-box h4 {
  font-family: var(--font-ui);
  font-size: 0.64rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 0.875rem;
  border-bottom: 1px solid var(--border-sub);
  padding-bottom: 0.625rem;
}

.sidebar-detail {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 0.35rem 0;
  border-bottom: 1px solid var(--border-sub);
}
.sidebar-detail:last-child { border-bottom: none; }
.sidebar-detail .key { font-family: var(--font-ui); font-size: 0.7rem; color: var(--text-dim); letter-spacing: 0.05em; }
.sidebar-detail .val { font-family: var(--font-ui); font-size: 0.7rem; color: var(--text-muted); letter-spacing: 0.04em; }

.ep-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.75rem 0;
  border-top: 1px solid var(--border);
  margin-top: 0.5rem;
  gap: 1rem;
}
.ep-nav a {
  font-family: var(--font-ui);
  font-size: 0.75rem;
  letter-spacing: 0.06em;
  color: var(--text-muted);
  transition: color 0.2s;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}
.ep-nav a:hover { color: var(--text); }
.ep-nav .center { font-family: var(--font-ui); font-size: 0.68rem; color: var(--text-dim); letter-spacing: 0.06em; }

/* =========================================
   APPUNTI PAGE
   ========================================= */

.appunti-page-header {
  padding: 3.5rem 0 2.5rem;
  border-bottom: 1px solid var(--border);
  max-width: 560px;
}
.appunti-page-header h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 300;
  margin-bottom: 0.75rem;
}
.appunti-page-header p {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.75;
}

.philosopher-card {
  margin: 2.5rem 0 1rem;
  border: 1px solid var(--border);
  overflow: hidden;
}

.pc-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1.5rem 1.75rem 1.25rem;
  background: var(--bg-surface);
  border-bottom: 1px solid var(--border);
  flex-wrap: wrap;
}

.pc-name {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 400;
  letter-spacing: -0.01em;
}

.pc-dates {
  font-family: var(--font-ui);
  font-size: 0.72rem;
  font-weight: 300;
  letter-spacing: 0.1em;
  color: var(--text-dim);
}

.pc-body {
  padding: 1.25rem 1.75rem 1.5rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem 2.5rem;
}

@media (max-width: 500px) {
  .pc-body { grid-template-columns: 1fr; }
}

.pc-field label {
  font-family: var(--font-ui);
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-dim);
  display: block;
  margin-bottom: 0.35rem;
}

.pc-field p {
  font-size: 0.98rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.pc-footer {
  padding: 1.25rem 1.75rem;
  border-top: 1px solid var(--border-sub);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  background: var(--bg);
}

.pc-ep-link {
  font-family: var(--font-ui);
  font-size: 0.72rem;
  letter-spacing: 0.07em;
  color: var(--text-dim);
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  transition: color 0.2s;
}
.pc-ep-link:hover { color: var(--text-muted); }

.btn-download {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 1.25rem;
  border: 1px solid var(--border);
  font-family: var(--font-ui);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  transition: all 0.2s;
}
.btn-download:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: var(--accent-light);
}

/* =========================================
   CHI SIAMO PAGE
   ========================================= */

.about-page-header {
  padding: 3.5rem 0 3rem;
  border-bottom: 1px solid var(--border);
  max-width: 620px;
}
.about-page-header h1 {
  font-size: clamp(2rem, 5vw, 3.25rem);
  font-weight: 300;
  line-height: 1.1;
  margin-bottom: 1.25rem;
}
.about-page-header .lead {
  font-size: 1.15rem;
  line-height: 1.8;
  color: var(--text-muted);
}

.about-body {
  padding: 2.5rem 0 5rem;
  max-width: 620px;
}
.about-body h2 {
  font-size: 1.4rem;
  font-weight: 400;
  margin: 2.25rem 0 0.625rem;
}
.about-body h2:first-child { margin-top: 0; }
.about-body p {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.82;
  margin-bottom: 0.875rem;
}

.pull-quote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.3rem, 2.5vw, 1.7rem);
  color: var(--text-muted);
  line-height: 1.45;
  padding-left: 1.5rem;
  border-left: 2px solid var(--accent);
  margin: 2rem 0;
}
.pull-quote footer {
  font-size: 0.7em;
  margin-top: 0.6rem;
  font-style: normal;
  font-family: var(--font-ui);
  letter-spacing: 0.1em;
  color: var(--text-dim);
}

/* =========================================
   FOOTER
   ========================================= */

.site-footer {
  border-top: 1px solid var(--border);
  padding: 2rem 0;
  background: var(--bg-surface);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.footer-logo {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  color: var(--text);
}
.footer-logo .dot { color: var(--accent); }

.footer-links { display: flex; gap: 1.5rem; flex-wrap: wrap; }
.footer-links a {
  font-family: var(--font-ui);
  font-size: 0.72rem;
  letter-spacing: 0.05em;
  color: var(--text-dim);
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--text-muted); }

.footer-copy {
  font-family: var(--font-ui);
  font-size: 0.68rem;
  letter-spacing: 0.04em;
  color: var(--text-dim);
}

/* =========================================
   ANIMATIONS
   ========================================= */

.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
}
.reveal.visible { opacity: 1; transform: none; }

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(14px); }
  to   { opacity: 1; transform: none; }
}
.animate-in {
  animation: fadeUp 0.7s var(--ease) both;
}
.animate-in:nth-child(1) { animation-delay: 0.08s; }
.animate-in:nth-child(2) { animation-delay: 0.18s; }
.animate-in:nth-child(3) { animation-delay: 0.28s; }
.animate-in:nth-child(4) { animation-delay: 0.38s; }
.animate-in:nth-child(5) { animation-delay: 0.48s; }
.animate-in:nth-child(6) { animation-delay: 0.58s; }

/* =========================================
   UTILITY
   ========================================= */

.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}
