/* ============================================================
   ANTIWA – Bürgerinitiative Anti-Wangerland
   Ein Satireprojekt von Die PARTEI Friesland
   ============================================================ */

/* --- Farben & Variablen (hier anpassen) --- */
:root {
    --gruen:         #1e3d1e;
    --mittelgruen:   #2d5a2d;
    --hellgruen:     #4a8a4a;
    --gold:          #9a7820;
    --hellgold:      #c8a840;
    --creme:         #faf7f0;
    --hellcreme:     #f2ede0;
    --weiss:         #ffffff;
    --border:        #c8b99a;
    --border-hell:   #e4ddd0;
    --text:          #1a1a1a;
    --text-mittel:   #4a4040;
    --text-hell:     #7a7060;
    --font-serif:    Georgia, 'Times New Roman', serif;
    --font-sans:     Arial, Helvetica, sans-serif;
    --max-width:     960px;
    --abstand:       3.5rem;
}

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

html { scroll-behavior: smooth; }

body {
    background-color: var(--creme);
    color: var(--text);
    font-family: var(--font-sans);
    line-height: 1.75;
    font-size: 1rem;
}

a {
    color: var(--gruen);
    text-decoration: underline;
    transition: color 0.2s;
}

a:hover { color: var(--hellgruen); }

p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }
strong { color: var(--gruen); }
em { font-style: italic; }

ul, ol { padding-left: 1.5rem; }

/* ============================================================
   FIX: Links & strong auf dunklen Hintergründen (grün)
   Betrifft: .hero, .page-header, .cta-section, footer
   ============================================================ */

/* Hero */
.hero a {
    color: rgba(255, 255, 255, 0.78);
    text-decoration: underline;
}
.hero a:hover {
    color: var(--hellgold);
    text-decoration: none;
}
.hero strong {
    color: var(--hellgold);
}

/* Seitenheader (innere Seiten) */
.page-header a {
    color: rgba(255, 255, 255, 0.78);
}
.page-header a:hover {
    color: var(--hellgold);
    text-decoration: none;
}
.page-header strong {
    color: var(--hellgold);
}

/* CTA-Sektion */
.cta-section a:not(.btn) {
    color: rgba(255, 255, 255, 0.78);
    text-decoration: underline;
}
.cta-section a:not(.btn):hover {
    color: var(--hellgold);
    text-decoration: none;
}
.cta-section strong {
    color: var(--hellgold);
}

/* Notice Bar */
.notice-bar a {
    color: rgba(255, 255, 255, 0.78);
}

/* ============================================================
   LAUFSCHRIFT (Bekanntmachungsband)
   ============================================================ */
.notice-bar {
    background: var(--gruen);
    color: rgba(255, 255, 255, 0.75);
    padding: 0.4rem 0;
    font-size: 0.72rem;
    font-family: var(--font-sans);
    letter-spacing: 1.5px;
    overflow: hidden;
    white-space: nowrap;
    border-bottom: 2px solid var(--gold);
}

.notice-inner {
    display: inline-block;
    animation: bekanntmachung 55s linear infinite;
}

@keyframes bekanntmachung {
    0%   { transform: translateX(100vw); }
    100% { transform: translateX(-100%); }
}

/* ============================================================
   NAVIGATION
   ============================================================ */
nav {
    background: var(--weiss);
    border-bottom: 3px solid var(--gruen);
    padding: 0 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    min-height: 68px;
    gap: 1rem;
}

.nav-logo {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-decoration: none;
    flex-shrink: 0;
    line-height: 1.1;
}

.nav-logo-main {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--gruen);
    letter-spacing: 4px;
    text-transform: uppercase;
}

.nav-logo-sub {
    font-size: 0.6rem;
    color: var(--text-hell);
    letter-spacing: 1px;
    text-transform: uppercase;
    font-family: var(--font-sans);
}

.nav-logo:hover { text-decoration: none; }
.nav-logo:hover .nav-logo-main { color: var(--hellgruen); }

.nav-links {
    display: flex;
    list-style: none;
    gap: 0;
    align-items: stretch;
}

.nav-links a {
    color: var(--text-mittel);
    text-decoration: none;
    font-size: 0.83rem;
    letter-spacing: 0.3px;
    padding: 0 1.1rem;
    display: flex;
    align-items: center;
    border-bottom: 3px solid transparent;
    margin-bottom: -3px;
    transition: color 0.2s, border-color 0.2s;
    white-space: nowrap;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--gruen);
    border-bottom-color: var(--gruen);
    text-decoration: none;
}

.nav-toggle {
    display: none;
    background: none;
    border: 1px solid var(--border);
    color: var(--gruen);
    font-size: 1.1rem;
    padding: 0.4rem 0.8rem;
    cursor: pointer;
}

/* ============================================================
   HERO (Startseite)
   ============================================================ */
.hero {
    background: var(--gruen);
    color: var(--weiss);
    padding: 5rem 2rem 4.5rem;
    text-align: center;
    border-bottom: 5px solid var(--gold);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(
        135deg,
        transparent,
        transparent 60px,
        rgba(255, 255, 255, 0.012) 60px,
        rgba(255, 255, 255, 0.012) 120px
    );
    pointer-events: none;
}

.hero-ornament {
    display: block;
    font-size: 1rem;
    letter-spacing: 12px;
    color: var(--hellgold);
    margin-bottom: 1.25rem;
    opacity: 0.7;
    position: relative;
    z-index: 1;
}

.hero h1 {
    font-family: var(--font-serif);
    font-size: clamp(3.5rem, 14vw, 8rem);
    font-weight: bold;
    color: var(--weiss);
    letter-spacing: 0.15em;
    text-transform: uppercase;
    line-height: 1;
    position: relative;
    z-index: 1;
}

.hero .hero-untertitel {
    font-size: clamp(0.72rem, 1.8vw, 0.88rem);
    color: rgba(255, 255, 255, 0.55);
    letter-spacing: 5px;
    text-transform: uppercase;
    margin-top: 0.6rem;
    position: relative;
    z-index: 1;
}

.hero .hero-tagline {
    font-size: clamp(0.95rem, 2.5vw, 1.3rem);
    color: var(--hellgold);
    font-style: italic;
    font-family: var(--font-serif);
    margin-top: 1.5rem;
    position: relative;
    z-index: 1;
}

.hero .hero-text {
    max-width: 580px;
    margin: 1.5rem auto 0;
    color: rgba(255, 255, 255, 0.78);
    font-size: 0.93rem;
    line-height: 1.9;
    position: relative;
    z-index: 1;
}

.hero-buttons {
    margin-top: 2.5rem;
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

.hero-disclaimer {
    margin-top: 2.5rem;
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
    font-size: 0.72rem;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.7;
    position: relative;
    z-index: 1;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    padding-top: 1.5rem;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
    display: inline-block;
    padding: 0.7rem 1.8rem;
    background: var(--gold);
    color: var(--weiss);
    font-size: 0.82rem;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    text-decoration: none;
    border: 2px solid var(--gold);
    cursor: pointer;
    transition: background 0.2s, color 0.2s;
}

.btn:hover {
    background: transparent;
    color: var(--weiss);        /* FIX: weiss statt var(--gold), da Kontext oft dunkel */
    text-decoration: none;
}

.btn-gruen {
    background: var(--gruen);
    border-color: var(--gruen);
    color: var(--weiss);
}

/* FIX: btn-gruen hover auf hellem Hintergrund (Sektionen) */
.btn-gruen:hover {
    background: transparent;
    color: var(--gruen);
}

/* FIX: btn-gruen hover explizit auf dunklem Hintergrund */
.cta-section .btn-gruen:hover,
.hero .btn-gruen:hover {
    background: transparent;
    color: var(--weiss);
    border-color: var(--weiss);
}

.btn-hell {
    background: transparent;
    border-color: rgba(255, 255, 255, 0.45);
    color: rgba(255, 255, 255, 0.85);
}

.btn-hell:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--weiss);
}

/* ============================================================
   SEITENHEADER (innere Seiten)
   ============================================================ */
.page-header {
    background: var(--gruen);
    color: var(--weiss);
    padding: 3.5rem 2rem 3rem;
    text-align: center;
    border-bottom: 5px solid var(--gold);
}

.page-header h1 {
    font-family: var(--font-serif);
    font-size: clamp(1.5rem, 5vw, 2.8rem);
    font-weight: bold;
    color: var(--weiss);
    text-transform: uppercase;
    letter-spacing: 4px;
}

.page-header .page-subtitle {
    margin-top: 0.5rem;
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.55);
    letter-spacing: 2px;
    text-transform: uppercase;
}

/* ============================================================
   SEKTIONEN
   ============================================================ */
.section {
    padding: var(--abstand) 2rem;
    max-width: var(--max-width);
    margin: 0 auto;
}

.section-alt {
    background: var(--hellcreme);
    border-top: 1px solid var(--border-hell);
    border-bottom: 1px solid var(--border-hell);
}

.section-alt > .section {
    padding-top: var(--abstand);
    padding-bottom: var(--abstand);
}

.section-title {
    font-family: var(--font-serif);
    font-size: clamp(1.1rem, 3vw, 1.65rem);
    font-weight: bold;
    color: var(--gruen);
    margin-bottom: 1.5rem;
    padding-bottom: 0.65rem;
    border-bottom: 2px solid var(--gold);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.section-intro {
    color: var(--text-mittel);
    font-size: 0.93rem;
    max-width: 720px;
    margin-bottom: 2rem;
    line-height: 1.9;
}

/* ============================================================
   KARTEN
   ============================================================ */
.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.25rem;
    margin-top: 1.5rem;
}

.card {
    background: var(--weiss);
    border: 1px solid var(--border-hell);
    border-top: 4px solid var(--gruen);
    padding: 1.5rem;
    transition: box-shadow 0.2s;
}

.card:hover { box-shadow: 0 4px 18px rgba(0, 0, 0, 0.07); }

.card h3 {
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--gruen);
    margin-bottom: 0.6rem;
    font-weight: bold;
}

.card p {
    color: var(--text-mittel);
    font-size: 0.86rem;
    line-height: 1.75;
    margin-bottom: 0;
}

/* ============================================================
   STATISTIKEN
   ============================================================ */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(175px, 1fr));
    gap: 1.25rem;
    margin-top: 1.5rem;
}

.stat-card {
    background: var(--weiss);
    border: 1px solid var(--border);
    border-bottom: 4px solid var(--gruen);
    padding: 2rem 1rem;
    text-align: center;
}

.stat-number {
    display: block;
    font-family: var(--font-serif);
    font-size: clamp(2rem, 6vw, 3.5rem);
    font-weight: bold;
    color: var(--gruen);
    line-height: 1;
    margin-bottom: 0.65rem;
}

.stat-label {
    display: block;
    font-size: 0.73rem;
    color: var(--text-hell);
    text-transform: uppercase;
    letter-spacing: 0.8px;
    line-height: 1.6;
}

/* ============================================================
   ZITAT
   ============================================================ */
.blockquote-styled {
    background: var(--weiss);
    border-left: 4px solid var(--gold);
    padding: 1.5rem 2rem;
    font-size: 1rem;
    font-style: italic;
    font-family: var(--font-serif);
    color: var(--text-mittel);
    margin: 1.5rem 0;
    line-height: 1.9;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    transition: opacity 0.3s ease;
}

.blockquote-styled cite {
    display: block;
    margin-top: 0.75rem;
    font-size: 0.72rem;
    color: var(--text-hell);
    font-style: normal;
    font-family: var(--font-sans);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ============================================================
   TRENNLINIE
   ============================================================ */
.divider {
    border: none;
    border-top: 1px solid var(--border-hell);
    max-width: var(--max-width);
    margin: 0 auto;
}

/* ============================================================
   CTA-SEKTION (grün)
   ============================================================ */
.cta-section {
    background: var(--gruen);
    padding: var(--abstand) 2rem;
    text-align: center;
}

.cta-section > * {
    max-width: var(--max-width);
    margin-left: auto;
    margin-right: auto;
}

.cta-section .section-title {
    color: var(--hellgold);
    border-bottom-color: rgba(200, 168, 64, 0.35);
}

.cta-section p {
    color: rgba(255, 255, 255, 0.85);   /* FIX: war 0.78, etwas heller */
    max-width: 600px;
    margin: 0 auto 1rem;
    font-size: 0.93rem;
}

.cta-section .btn { margin: 0.4rem; }

/* ============================================================
   MANIFEST
   ============================================================ */
.manifest-preamble {
    background: var(--weiss);
    border: 2px solid var(--gruen);
    padding: 2rem 2.5rem;
    margin-bottom: 2rem;
    text-align: center;
    font-style: italic;
    font-family: var(--font-serif);
    line-height: 1.95;
    color: var(--text-mittel);
    font-size: 0.95rem;
}

.manifest-preamble strong { color: var(--gruen); }

.manifest-article {
    background: var(--weiss);
    border: 1px solid var(--border-hell);
    border-left: 5px solid var(--gruen);
    padding: 2rem;
    margin-bottom: 1.5rem;
}

.manifest-article h3 {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--gruen);
    margin-bottom: 1rem;
    border-bottom: 1px solid var(--border-hell);
    padding-bottom: 0.65rem;
    font-weight: bold;
}

.manifest-article p {
    color: var(--text-mittel);
    margin-bottom: 0.75rem;
    line-height: 1.9;
    font-size: 0.92rem;
}

.manifest-article ul {
    list-style: none;
    padding-left: 0;
    margin: 0.75rem 0;
}

.manifest-article ul li {
    color: var(--text-mittel);
    padding: 0.3rem 0 0.3rem 1.75rem;
    position: relative;
    font-size: 0.88rem;
    line-height: 1.75;
}

.manifest-article ul li::before {
    content: '»';
    position: absolute;
    left: 0.25rem;
    color: var(--gold);
    font-weight: bold;
}

.manifest-beschlossen {
    background: var(--hellcreme);
    border: 1px solid var(--border);
    border-top: 3px solid var(--gold);
    padding: 2rem;
    margin-top: 2rem;
    text-align: center;
    color: var(--text-hell);
    font-size: 0.83rem;
    line-height: 1.95;
}

.manifest-beschlossen strong {
    display: block;
    color: var(--gruen);
    font-size: 0.82rem;
    margin-bottom: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* ============================================================
   FORDERUNGEN
   ============================================================ */
.forderung-item {
    background: var(--weiss);
    border: 1px solid var(--border-hell);
    border-left: 5px solid var(--gruen);
    padding: 1.5rem;
    margin-bottom: 1.25rem;
    display: grid;
    grid-template-columns: 65px 1fr;
    gap: 1.25rem;
    align-items: start;
    transition: box-shadow 0.2s;
}

.forderung-item:hover { box-shadow: 0 4px 16px rgba(0, 0, 0, 0.07); }

.forderung-number {
    font-family: var(--font-serif);
    font-size: 2.8rem;
    font-weight: bold;
    color: var(--gruen);
    opacity: 0.2;
    line-height: 1;
}

.forderung-title {
    font-size: 0.92rem;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--gruen);
    margin-bottom: 0.5rem;
    line-height: 1.4;
}

.forderung-text {
    color: var(--text-mittel);
    font-size: 0.86rem;
    line-height: 1.85;
    margin: 0 0 0.65rem;
}

.forderung-status {
    display: inline-block;
    font-size: 0.67rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    padding: 0.18rem 0.6rem;
    border: 1px solid;
    font-weight: bold;
}

.forderung-status.offen {
    color: #7a5c0a;
    border-color: #c8a030;
    background: #fffbef;
}

.forderung-status.in-arbeit {
    color: #1a4d1a;
    border-color: #4a8a4a;
    background: #f0f8f0;
}

.forderung-status.erledigt {
    color: #155030;
    border-color: #2a7a50;
    background: #edfaf4;
}

/* ============================================================
   TIMELINE (Über uns)
   ============================================================ */
.timeline {
    position: relative;
    padding-left: 2.25rem;
    margin-top: 1.5rem;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 0;
    top: 6px;
    bottom: 0;
    width: 2px;
    background: var(--gold);
    opacity: 0.6;
}

.timeline-item {
    position: relative;
    padding-bottom: 2.5rem;
    padding-left: 1.5rem;
}

.timeline-item:last-child { padding-bottom: 0; }

.timeline-item::before {
    content: '◆';
    position: absolute;
    left: -0.95rem;
    top: 2px;
    font-size: 0.65rem;
    color: var(--gold);
    background: var(--hellcreme);   /* FIX: war var(--creme), passt jetzt zu section-alt */
    padding: 2px;
    line-height: 1;
}

.timeline-date {
    font-size: 0.7rem;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: bold;
    margin-bottom: 0.2rem;
}

.timeline-title {
    font-size: 0.93rem;
    font-weight: bold;
    color: var(--gruen);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.35rem;
}

.timeline-text {
    font-size: 0.86rem;
    color: var(--text-mittel);
    line-height: 1.8;
}

/* ============================================================
   TEAM-KARTEN
   ============================================================ */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
    gap: 1.25rem;
    margin-top: 1.5rem;
}

.team-card {
    background: var(--weiss);
    border: 1px solid var(--border-hell);
    border-top: 4px solid var(--gruen);
    padding: 1.5rem;
    text-align: center;
    transition: box-shadow 0.2s;
}

.team-card:hover { box-shadow: 0 4px 16px rgba(0, 0, 0, 0.07); }

.team-emblem {
    font-size: 2rem;
    display: block;
    margin-bottom: 0.75rem;
}

.team-name {
    font-size: 0.83rem;
    font-weight: bold;
    color: var(--gruen);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 0.2rem;
}

.team-amtsbezeichnung {
    font-size: 0.7rem;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: bold;
    margin-bottom: 0.3rem;
}

.team-role {
    font-size: 0.7rem;
    color: var(--text-hell);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.85rem;
}

.team-bio {
    font-size: 0.82rem;
    color: var(--text-mittel);
    line-height: 1.75;
}

/* ============================================================
   IMPRESSUM
   ============================================================ */
.impressum-block {
    background: var(--weiss);
    border: 1px solid var(--border-hell);
    border-left: 5px solid var(--gruen);
    padding: 1.5rem 2rem;
    margin-bottom: 1.25rem;
}

.impressum-block h3 {
    color: var(--gruen);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-size: 0.78rem;
    font-weight: bold;
    margin-bottom: 0.75rem;
    border-bottom: 1px solid var(--border-hell);
    padding-bottom: 0.5rem;
}

.impressum-block p,
.impressum-block address {
    color: var(--text-mittel);
    font-size: 0.87rem;
    font-style: normal;
    line-height: 1.85;
}

/* ============================================================
   FOOTER
   ============================================================ */
footer {
    background: var(--gruen);
    color: rgba(255, 255, 255, 0.6);
    text-align: center;
    padding: 3rem 2rem;
    border-top: 5px solid var(--gold);
}

.footer-logo {
    font-family: var(--font-serif);
    font-size: 1.7rem;
    font-weight: bold;
    color: var(--weiss);
    letter-spacing: 5px;
    text-decoration: none;
    display: inline-block;
    margin-bottom: 0.3rem;
}

.footer-logo:hover { color: var(--hellgold); text-decoration: none; }

.footer-logo-sub {
    display: block;
    font-size: 0.6rem;
    color: rgba(255, 255, 255, 0.4);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-top: 0.2rem;
    margin-bottom: 1.25rem;
}

footer p {
    font-size: 0.82rem;
    margin-bottom: 0.5rem;
    color: rgba(255, 255, 255, 0.6);
}

/* FIX: footer strong (z.B. in satire-disclaimer) */
footer strong {
    color: var(--hellgold);
}

footer a {
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
}

footer a:hover {
    color: var(--hellgold);
    text-decoration: none;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    margin: 0.75rem 0 1.25rem;
    list-style: none;
    padding: 0;
}

.footer-links a {
    font-size: 0.76rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--gruen);
}

.footer-links a:hover {
    color: var(--hellgold);
}

.satire-disclaimer {
    margin-top: 1.5rem;
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.45);   /* FIX: war 0.3, zu dunkel/unsichtbar */
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.75;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    padding-top: 1.5rem;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 768px) {
    :root { --abstand: 2.5rem; }

    nav {
        flex-wrap: wrap;
        padding: 0.75rem 1rem;
        min-height: unset;
    }

    .nav-toggle { display: block; }

    .nav-links {
        display: none;
        width: 100%;
        flex-direction: column;
        border-top: 1px solid var(--border-hell);
        margin-top: 0.5rem;
    }

    .nav-links.open { display: flex; }
    .nav-links li { border-bottom: 1px solid var(--border-hell); }

    .nav-links a {
        padding: 0.75rem 0;
        border-bottom: none;
        margin-bottom: 0;
    }

    .hero { padding: 3rem 1rem 2.5rem; }
    .hero-buttons { flex-direction: column; align-items: center; }

    .section { padding: var(--abstand) 1rem; }
    .cta-section { padding: var(--abstand) 1rem; }

    .forderung-item {
        grid-template-columns: 1fr;
        gap: 0.25rem;
    }

    .forderung-number {
        font-size: 2rem;
        opacity: 0.15;
    }

    footer { padding: 2rem 1rem; }
}

@media (max-width: 420px) {
    .stats-grid { grid-template-columns: 1fr 1fr; }
    .nav-logo-main { font-size: 1.25rem; }
}