/*
* style-yyyymmdd.css
* Copyright 2026 Jack Dixon
* www.sussexhelp.org
* jackd313@sussexhelp.org
*/
@charset "utf-8";@-webkit-viewport{width:device-width}
@-moz-viewport{width:device-width}
@-ms-viewport{width:device-width}
@-o-viewport{width:device-width}
@viewport{width:device-width}
  * { margin: 0; padding: 0; box-sizing: border-box; }
  html { scroll-behavior: smooth; }
  :root {
    /* Blue palette */
    --navy: #0b2545;
    --navy-deep: #061629;
    --navy-soft: #1d3b6b;
    --blue: #5a8fc9;
    --blue-light: #a3c4e8;
    --mist: #e8eef5;
    --mist-warm: #f3f6fa;
    --paper: #fbfcfe;

    /* Contrast accent — warm sienna that pops against blues */
    --sienna: rgba(211,69,27,1);
    --sienna-deep: rgba(203,68,26,1);
    --gold: #ffc857;

    --line: rgba(11, 37, 69, 0.12);
    --line-on-dark: rgba(232, 238, 245, 0.15);
  }


  body {
    background: var(--paper);
    color: var(--navy);
    font-family: 'Inter Tight', sans-serif;
    font-size: 17px;
    line-height: 1.55;
    overflow-x: hidden;
    background-image:
      radial-gradient(ellipse at top left, rgba(163, 196, 232, 0.18), transparent 55%),
      radial-gradient(ellipse at bottom right, rgba(90, 143, 201, 0.12), transparent 55%);
  }

  /* ============ STICKY HEADER ============ */
  header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(251, 252, 254, 1);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--line);
    transition: box-shadow 0.3s, padding 0.3s;
  }

  header.scrolled {
    box-shadow: 0 4px 24px rgba(11, 37, 69, 0.08);
  }

  .nav {
    max-width: 1280px;
    margin: 0 auto;
    padding: 16px 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
  }

  .brand {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: var(--navy);
    flex-shrink: 0;
  }

  .brand-logo {
    height: 4em;
    width: 4em;
    object-fit: contain;
    background: var(--paper);
    transition: transform 0.25s;
  }

  .brand:hover .brand-logo {
    transform: rotate(-4deg) scale(1.05);
  }

  .brand-mark {
    font-family: 'Oswald', sans-serif;
    font-weight: 400;
    font-size: 1.8em;
    font-style: italic;
    line-height: 1;
  }

  /*.brand-mark::first-letter { color: var(--sienna); }*/

  .brand-tag {
    display:none;
    font-size: .7em;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: var(--navy-soft);
    font-weight: 500;
    padding-top: .7em;
    border-left: 1px solid var(--line);
    padding-left: 12px;
    margin-left: 2px;
  }

  .nav-links {
    display:none;
  }

  .nav-links a {
    color: var(--navy);
    text-decoration: none;
    font-size: .85em;
    font-weight: 500;
    transition: color 0.2s;
    position: relative;
  }

  .nav-links a:hover { color: var(--sienna); }

  .nav-right {
    display: flex;
    align-items: center;
    gap: 10px;
  }

  .nav-donate-container{
    background:none;
  }
  .nav-donate{
    display:flex;
    align-items:center;
  }

  /* ============ LANGUAGE BAND ============ */
  .lang-band {
    display:flex;
    flex-flow:row nowrap;
    background: linear-gradient(to bottom, var(--navy-soft) 40%, var(--blue) 100%);
    border-bottom: 1px solid var(--line);
    padding: .5em 2em;
    position: sticky;
    top: 5.95em;
    z-index: 99;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
  }

  .lang-band-inner {
    max-width: 1280px;
    margin: auto 1em auto 0;
    display: flex;
    flex-flow:row nowrap;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-around;
    gap: 18px;
    width:75%;
  }

  .lang-options {
    display: flex;
    justify-content: space-around;
    gap: 6px;
    background: var(--mist);
    padding: .25em;
    border-radius: 100px;
    border: 1px solid var(--line);
    width:100%;
    box-shadow: 0 1px 3px rgba(11, 37, 69, 0.06);
  }

  .lang-btn {
    display:flex;
    justify-content:center;
    background: none;
    border: none;
    padding: 8px 16px;
    border-radius: 100px;
    cursor: pointer;
    color: var(--navy-soft);
    font-family: inherit;
    font-size: .7em;
    font-weight: 600;
    letter-spacing: 0.03em;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
    width:7em;
  }

  .lang-btn:hover {
    color: var(--navy);
    background: var(--mist);
  }

  .lang-btn.active {
    background: var(--navy);
    color: white;
    box-shadow: 0 2px 6px rgba(11, 37, 69, 0.2);
  }

  .lang-btn .flag {
    font-size: 15px;
    line-height: 1;
  }

  .lang-btn .lang-code {
    font-size: 11px;
    opacity: 0.7;
    letter-spacing: 0.05em;
  }

  .lang-btn.active .lang-code { opacity: 0.85; }

  .nav-donate {
    background: var(--sienna);
    color: white;
    padding: .6em 1.4em;
    border-radius: 100px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 0.03em;
    transition: all 0.2s;
    box-shadow: 0 2px 0 var(--sienna-deep), 0 4px 14px rgba(255, 107, 74, 0.3);
    white-space: nowrap;
  }

  .nav-donate:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 0 var(--sienna-deep), 0 8px 20px rgba(255, 107, 74, 0.4);
  }

  /* Mobile menu toggle */
  .menu-toggle {
    display: block;
    background: none;
    border: none;
    width: 40px;
    height: 40px;
    cursor: pointer;
    padding: 8px;
  }

  .menu-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--navy);
    margin: 4px 0;
    transition: transform 0.3s, opacity 0.3s;
  }

  .menu-toggle.open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
  .menu-toggle.open span:nth-child(2) { opacity: 0; }
  .menu-toggle.open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

  /* ============ HERO ============ */
  .hero {
    max-width: 1280px;
    margin: 0 auto;
    padding: 3em 2em;
    position: relative;
  }

  .hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.22em;
    font-weight: 600;
    color: var(--sienna-deep);
    margin-bottom: 32px;
  }

  .hero-eyebrow::before {
    content: '';
    width: 32px;
    height: 1px;
    background: var(--sienna);
  }

  .hero h1 {
    font-family: 'Fraunces', serif;
    font-weight: 400;
    font-size: clamp(2em, 9vw, 6em);
    line-height: 0.95;
    letter-spacing: -0.035em;
    margin-bottom: 40px;
    max-width: 14ch;
    color: var(--navy);
  }

  .hero h1 .ital {
    font-style: italic;
    font-weight: 300;
    color: var(--sienna);
  }

  .hero-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 60px;
    align-items: end;
  }

  .hero-lede {
    font-size: clamp(1.2em, 3vw, 2em);
    line-height: 1.5;
    color: var(--navy-soft);
    max-width: 52ch;
    font-weight: 400;
  }

  .hero-cta {
    display: flex;
    flex-direction: column;
    gap: 1em;
  }

  .btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--sienna);
    color: white;
    padding: 22px 28px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 17px;
    transition: all 0.25s;
    border: none;
    cursor: pointer;
    font-family: inherit;
    box-shadow: 0 4px 0 var(--sienna-deep), 0 8px 24px rgba(255, 107, 74, 0.25);
  }

  .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 0 var(--sienna-deep), 0 12px 28px rgba(255, 107, 74, 0.35);
  }

  .btn-primary .arrow { transition: transform 0.25s; }
  .btn-primary:hover .arrow { transform: translateX(4px); }

  .btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    color: var(--navy);
    padding: 21px 27px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 17px;
    border: 1px solid var(--navy);
    transition: all 0.25s;
  }

  .btn-secondary:hover {
    background: var(--navy);
    color: var(--paper);
  }

  /* ============ STATS BAND ============ */
  .stats {
    background: var(--navy);
    color: var(--paper);
    padding: 4em 2em;
    position: relative;
    z-index: 2;
    overflow: hidden;
  }

  .stats::before {
    content: '';
    position: absolute;
    top: -100%;
    left: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(90, 143, 201, 0.2), transparent 65%);
    pointer-events: none;
  }

  .stats-inner {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px;
    position: relative;
  }

  .stat {
    border-left: 2px solid var(--sienna);
    padding-left: 24px;
  }

  .stat-num {
    font-family: 'Fraunces', serif;
    font-size: clamp(48px, 5vw, 72px);
    font-weight: 500;
    line-height: 1;
    letter-spacing: -0.03em;
    color: white;
    margin-bottom: 8px;
  }

  .stat-num .currency {
    font-size: 0.55em;
    color: var(--gold);
    margin-right: 4px;
    vertical-align: 0.3em;
  }

  .stat-label {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: var(--blue-light);
    font-weight: 500;
  }

  /* ============ SECTIONS ============ */
  .section {
    max-width: 1280px;
    margin: 0 auto;
    padding: 3em 2em;
    position: relative;
    z-index: 2;
  }

  .section-header {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2em;
    margin-bottom: 3em;
    align-items: start;
  }

  .section-label {
    font-size: .8em;
    text-transform: uppercase;
    letter-spacing: 0.22em;
    font-weight: 600;
    color: var(--sienna-deep);
  }

  .section-title {
    font-family: 'Fraunces', serif;
    font-weight: 400;
    font-size: clamp(1.8em, 4.5vw, 2.3em);
    line-height: 1.05;
    letter-spacing: -0.025em;
    color: var(--navy);
  }

  .section-title em {
    font-style: italic;
    color: var(--sienna);
    font-weight: 300;
  }

  .mission-text {
    font-size: clamp(1.1em, 2.5vw, 1.4em);
    line-height: 1.55;
    color: var(--navy-soft);
    max-width: 65ch;
    margin-bottom: 3em;
  }

  .mission-summaries {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 2em;
  }

  .pill-link {
    display: inline-flex;
    justify-content:center;
    align-items: center;
    width:30%;
    gap: 8px;
    padding: 10px 18px;
    background: var(--mist);
    border: 1px solid var(--line);
    border-radius: 100px;
    text-decoration: none;
    color: var(--navy);
    font-size: 14px;
    font-weight: 500;
    transition: all 0.2s;
  }

  .pill-link:hover {
    background: var(--navy);
    color: var(--paper);
    border-color: var(--navy);
  }

   /* ============ DONATE BIG ============ */
  .donate-big {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-soft) 60%, var(--blue) 100%);
    color: var(--paper);
    padding: 120px 32px;
    position: relative;
    overflow: hidden;
  }

  .donate-big::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(255, 107, 74, 0.18), transparent 60%);
    pointer-events: none;
  }

  .donate-big::after {
    content: '';
    position: absolute;
    bottom: -40%;
    left: -15%;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(163, 196, 232, 0.12), transparent 60%);
    pointer-events: none;
  }

  .donate-inner {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
  }

  .donate-headline {
    font-family: 'Fraunces', serif;
    font-weight: 400;
    font-size: clamp(2.2em, 5.0vw, 3em);
    line-height: 1.02;
    letter-spacing: -0.03em;
    margin-bottom: 28px;
    color: white;
  }

  .donate-headline em {
    font-style: italic;
    color: var(--gold);
    font-weight: 300;
  }

  .donate-body {
    font-size: 1.1em;
    line-height: 1.6;
    color: var(--blue-light);
    max-width: 50ch;
    margin-bottom: 24px;
  }

  .donate-card {
    background: var(--paper);
    color: var(--navy);
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 30px 60px rgba(0,0,0,0.3);
  }

  .donate-card-label {
    font-size: .8em;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--sienna-deep);
    font-weight: 600;
    text-align:center;
    margin-bottom: 20px;
  }
  

  .donate-submit {
    display: block;
    width: 100%;
    background: var(--sienna);
    color: white;
    border: none;
    padding: 18px;
    border-radius: 8px;
    font-family: inherit;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.2s;
    box-shadow: 0 3px 0 var(--sienna-deep);
    letter-spacing: 0.01em;
    text-decoration: none;
    text-align: center;
  }

  .donate-submit:hover {
    transform: translateY(-1px);
    box-shadow: 0 5px 0 var(--sienna-deep);
  }

  .fiscal-note {
    margin-top: 1em;
    font-size: .8em;
    color: var(--navy-soft);
    line-height: 1.5;
    justify-self:center;
  }

  .fiscal-note a {
    color: var(--sienna-deep);
    text-decoration: underline;
  }

  /* ============ NEWS ============ */
  .news-list {
    display: flex;
    flex-direction: column;
  }

  .news-item {
    display: grid;
    grid-template-columns: 140px 1fr;
    gap: 40px;
    align-items: center;
    padding: 28px 0;
    border-top: 1px solid var(--line);
    transition: padding 0.25s, background 0.25s;
  }

  .news-item:last-of-type { border-bottom: 1px solid var(--line); }

  .news-item:hover { padding-left: 16px; }

  .news-date {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--navy-soft);
    font-weight: 500;
  }

  .news-body {
    display: flex;
    flex-direction: column;
    gap: 8px;
  }

  .news-headline {
    font-family: 'Fraunces', serif;
    font-size: clamp(20px, 2vw, 26px);
    font-weight: 500;
    text-decoration: none;
    line-height: 1.25;
    letter-spacing: -0.015em;
    color: var(--navy);
  }

  .news-meta {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
  }

  .news-source {
    font-size: 1em;
    color: var(--navy-soft);
    font-style: italic;
    text-decoration: none;
    transition: color 0.2s;
  }

  .news-source:hover { color: var(--sienna); }

/*  .news-source::after {
    content: ' →';
    color: var(--sienna);
    font-style: normal;
    transition: margin-left 0.2s;
    display: inline-block;
  }

  .news-source:hover::after { margin-left: 4px; }*/

  .news-divider {
    color: var(--line);
    font-size: 12px;
  }

  .news-bypass {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    background: var(--mist);
    border: 1px solid var(--line);
    color: var(--navy-soft);
    padding: 4px 12px;
    border-radius: 100px;
    font-family: inherit;
    font-size: 12px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
  }

  .news-bypass:hover {
    background: var(--sienna);
    color: white;
    border-color: var(--sienna);
    transform: translateY(-1px);
  }

  .news-disclaimer {
    margin-top: 2em;
    font-size: .85em;
    color: var(--navy-soft);
    font-style: italic;
    line-height: 1.5;
    max-width: 70ch;
    opacity: 0.8;
  }

  /* ============ VOLUNTEER STRIP ============ */
  .volunteer {
    background: var(--sienna);
    color: white;
    padding: 80px 32px;
    text-align: center;
    position: relative;
    overflow: hidden;
  }

  .volunteer::before, .volunteer::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 200px;
    height: 1px;
    background: rgba(255, 255, 255, 0.35);
  }

  .volunteer::before { left: 5%; }
  .volunteer::after { right: 5%; }

  .volunteer-eyebrow {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.25em;
    margin-bottom: 20px;
    opacity: 0.9;
  }

  .volunteer h2 {
    font-family: 'Fraunces', serif;
    font-weight: 400;
    font-size: clamp(36px, 4.5vw, 56px);
    line-height: 1.05;
    letter-spacing: -0.025em;
    margin-bottom: 28px;
    max-width: 18ch;
    margin-left: auto;
    margin-right: auto;
  }

  .volunteer h2 em {
    font-style: italic;
    font-weight: 300;
    color: var(--gold);
  }

  .volunteer a {
    display: inline-block;
    background: white;
    color: var(--navy);
    padding: 18px 36px;
    border-radius: 100px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.2s;
  }

  .volunteer a:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.25);
  }

  /* ============ FOOTER ============ */
  footer {
    background: linear-gradient(135deg, var(--navy-deep) 40%, var(--navy-soft) 75%, var(--blue) 100%);
    color: var(--paper);
    padding: 80px 32px 32px;
    position: relative;
    z-index: 2;
  }

  .footer-inner {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 60px;
    margin-bottom: 60px;
  }

  .footer-brand {
    font-family: 'Tahoma', sans-serif;
    font-style: italic;
    font-weight: 900;
    font-size: 1.5em;
    margin-bottom: 16px;
    color: white;
  }

/*  .footer-brand .first { color: var(--sienna); }*/

  .footer-tag {
    font-size: .9em;
    color: var(--blue-light);
    max-width: 40ch;
    line-height: 1.5;
  }

  .footer-col h4 {
    font-size: .9em;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--gold);
    margin-bottom: 1em;
    font-weight: 600;
  }

  .footer-col a {
    display: block;
    color: var(--paper);
    text-decoration: none;
    font-size: .9em;
    margin-bottom: .8em;
    transition: color 0.2s;
  }

  .footer-col a:hover { color: var(--gold); }

  .footer-bottom {
    border-top: 1px solid var(--line-on-dark);
    padding-top: 32px;
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 12px;
    color: var(--blue-light);
    flex-wrap: wrap;
    gap: 16px;
  }

  /* ============ MOBILE FLOATING DONATE ============ */
  .mobile-donate {
    display: block;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 99;
    background: var(--sienna);
    color: white;
    padding: 16px;
    text-align: center;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    box-shadow: 0 8px 24px rgba(255, 107, 74, 0.4), 0 2px 0 var(--sienna-deep);
  }

  /* ============ RESPONSIVE ============ */
@media (min-width:680px){
    .menu-toggle { display: none; }
    .nav-links { display: flex;gap: 1.4em;align-items: flex-start;margin-left:auto;}
    .nav-donate{ width: 8em;justify-content: center;}
    .lang-band { padding: 10px 16px; top: 5.96em; }
    .lang-band-inner{margin:0;}
    .lang-options{width:70%;}
    .lang-btn{width:9em;}
/*    .hero-grid { grid-template-columns: 1.4fr 1fr; gap: 40px; }*/
    .donate-body{font-size:1.2em;}
}

  @media (min-width: 880px) {
    .nav { padding: 14px 20px; gap: 8px; }
    .brand-tag { display: inline-block; padding-top:.6em;}
    .brand-logo { height: 5em; width: 5em; }
    .brand-mark { font-size: 2em; }
    .lang-band { top: 6.7em; }
    .lang-band-label { display: none; }
    .lang-band-inner { gap: 0; }
    .lang-options{width:50%;}
    .lang-btn { padding: 7px 12px; font-size: .7em; gap: 6px;width:10em; }
    .lang-btn .flag { font-size: 14px; }
    .hero { padding: 50px 20px 70px; }
    .stats { padding: 40px 20px; }
    .stats-inner { grid-template-columns: repeat(4, 1fr); gap: 32px; }
    .section { padding: 70px 20px; }
    .section-header { grid-template-columns: 1fr; gap: 20px; margin-bottom: 50px; }
    .donate-big { padding: 70px 20px; }
    .donate-inner { grid-template-columns: 1fr; gap: 40px; }
    .donate-card { padding: 28px; }
    .donate-body{font-size:1.3em; width:100%;}
    .donate-submit{width:70%;margin:auto;}
    .news-item { grid-template-columns: 1fr; gap: 8px; padding: 20px 0; }
    .news-item:hover { padding-left: 0; }
    .news-meta { gap: 8px; }
    .volunteer { padding: 60px 20px; }
    .volunteer::before, .volunteer::after { display: none; }
    .footer-inner { grid-template-columns: 2fr 1fr 1fr; gap: 32px; margin-bottom: 40px; }
    .footer-bottom { flex-direction: column; text-align: center; }
    body { padding-bottom: 80px; }
    .mobile-donate { display: none; }
  }

  @media (max-width: 980px) {
/*    .nav-right{display:none;}*/
    .nav-links.mobile-open {
      display: flex;
      position: absolute;
      top: 100%;
      left: auto;
      right: 0;
      flex-direction: column;
      background: var(--mist-warm);
      padding: 24px 32px;
      gap: 20px;
      width:45%;
      border: 1px solid var(--mist);
      border-top:none;
      box-shadow: 0 8px 24px rgba(11, 37, 69, 0.08);
      align-items: flex-start;
    }

    .nav-links.mobile-open a {
      font-size: 1em;
      width: 100%;
      padding: .5em 0;
    }
  }

  /* Reveal animation */
  .reveal {
    opacity: 1;
    transform: translateY(20px);
    transition: opacity 0.8s ease, transform 0.8s ease;
  }
  .reveal.visible { opacity: 1; transform: translateY(0); }

  @media (min-width:1024px){
    .lang-options{width:40%;}
    .lang-band { top: 8.7em; }
    .nav-links{gap:2em;}
    .nav-links a{font-size:.9em;}
    .brand-logo{height:7em;width:7em;}
    .brand-mark{font-size:2.8em;}
    .brand-tag{font-size:.8em;}
    .nav-donate{margiin-right:auto;}
    .donate-submit{width:50%;}
    .nav-donate-container{margin-right:auto;}
  }

  @media (min-width:1480px){
    .nav, .lang-band, .hero, .stats, .reveal, .donate-big, .footer-inner {justify-self:center;width:70%;}
    .stats-inner{padding-left:4em;}
  }
