/* =========================================
   ENDURO – Clean Professional Layout
========================================= */

:root {
    --navy: #003049;
    --green: #00A676;
    --slate: #4C596A;
    --bg: #f5f7fb;
    --card: #ffffff;
    --radius: 12px;
    --shadow-soft: 0 10px 26px rgba(0, 25, 51, 0.04);
}

/* Base */
html {
    scroll-behavior: smooth;
}

.enduro-body {
    font-family: "Open Sans", sans-serif;
    background: var(--bg);
    margin: 0;
    color: #222;
    font-size: 15px;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

.shell {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 1.4rem;
}

/* =========================================
   HEADER
========================================= */

.site-header {
    background: rgba(255,255,255,0.98);
    border-bottom: 1px solid rgba(0,0,0,0.04);
    backdrop-filter: blur(12px);
    position: sticky;
    top: 0;
    z-index: 20;
}

.nav-shell {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    padding: 0.55rem 0;
    min-height: 64px;
}

.nav-left,
.nav-center,
.nav-right {
    display: flex;
    align-items: center;
}

.nav-left {
    flex-shrink: 0;
    gap: 1.2rem;
}

.nav-center {
    flex: 1;
    justify-content: center;
}

.nav-right {
    justify-content: flex-end;
    gap: 0.75rem;
    flex-shrink: 0;
}

.site-nav a {
    text-decoration: none;
    border: none;
}
.site-nav a:hover {
    text-decoration: none;
    border: none;
}

/* Logo */
.brand-link {
    display: inline-flex;
    align-items: center;
}

.brand-logo {
    height: 56px;
    width: auto;
    transition: transform 0.2s ease;
}

.brand-logo:hover {
    transform: translateX(2px);
}

/* Menu */
.primary-menu {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 1.8rem;
    padding: 0;
    margin: 0;
}

.menu-link {
    position: relative;
    color: var(--slate);
    font-size: 0.88rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.09em;
    padding-bottom: 0.28rem;
    display: inline-flex;
    align-items: center;
}

.menu-link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0%;
    height: 2px;
    background: var(--green);
    transform: translateY(3px);
    transition: width 0.2s ease;
}

.menu-link:hover::after,
.menu-link.is-active::after {
    width: 100%;
}

/* Partner logos – desktop */
.partner-logos {
    display: inline-flex;
    align-items: center;
    gap: 0.7rem;
    padding-left: 0.7rem;
    flex-wrap: nowrap;
}

.partner-logos::before {
    content: "";
    width: 1px;
    height: 30px;
    background: rgba(0,0,0,0.06);
    display: block;
    margin-right: 0.6rem;
}

.partner-logo {
    max-height: 28px;
    width: auto;
    opacity: 0.9;
    transition: opacity 0.18s ease, transform 0.18s ease;
}

.partner-logo:hover {
    opacity: 1;
    transform: translateY(-1px);
}

/* Language pill */
.lang-selection {
    margin-right: 0.05rem;
}

.lang-pill {
    padding: 0.3rem 0.85rem;
    border-radius: 999px;
    background: #ffffff;
    border: 1px solid rgba(0,0,0,0.16);
    font-size: 0.76rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--navy);
    letter-spacing: 0.08em;
    transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.lang-pill:hover {
    background: var(--navy);
    color: #ffffff;
    border-color: var(--navy);
    box-shadow: 0 2px 6px rgba(0,0,0,0.14);
}

/* Burger */
.nav-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.7rem;
    padding: 0 0.15rem;
    line-height: 1;
}

/* =========================================
   MOBILE NAV
========================================= */

/* =========================================
   MOBILE NAV
========================================= */

.mobile-nav {
    display: none;
    position: fixed;
    top: 64px;          /* desktop / tablet header height */
    left: 0;
    right: 0;
    background: #ffffff;
    border-bottom: 1px solid #e9ecf2;
    z-index: 19;        /* just under header (20) */
}

.mobile-nav.open {
    display: block !important; /* ensure it wins over theme CSS */
}

.mobile-nav-inner {
    padding: 0.85rem 1.4rem;
}

.mobile-menu {
    padding: 0;
    margin: 0;
    list-style: none;
}

.mobile-link {
    display: block;
    padding: 0.6rem 0;
    border-bottom: 1px solid #eff1f6;
    color: var(--slate);
    font-weight: 500;
    font-size: 0.9rem;
}


/* =========================================
   HERO
========================================= */

.hero-enduro {
    background: radial-gradient(circle at 10% 10%, rgba(0,166,118,0.18) 0, transparent 55%),
                radial-gradient(circle at 90% 0, rgba(0,48,73,0.22) 0, transparent 60%),
                linear-gradient(135deg, #003049, #00A676);
    color: #ffffff;
    padding: 3.1rem 0 3.4rem;
}

.hero-hidden {
    display: none;
}

.hero-visible {
    display: block;
}

.hero-shell {
    position: relative;
}

.hero-layout {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2.8rem;
}

.hero-main {
    max-width: 640px;
    animation: heroFadeInUp 0.7s ease-out forwards;
    opacity: 0;
}

.hero-title {
    font-size: 2.35rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 1.05rem;
}

.hero-subtitle {
    max-width: 620px;
    font-size: 1.03rem;
    line-height: 1.6;
}

/* Logo in hero */
.hero-logo-wrap {
    flex: 0 0 auto;
    display: flex;
    justify-content: flex-end;
}

.hero-logo-badge {
    background: rgba(255, 255, 255, 0.88);
    border-radius: 28px;
    padding: 1.6rem 1.9rem;
    border: 1px solid rgba(255, 255, 255, 0.96);
    box-shadow: 0 18px 48px rgba(0, 0, 0, 0.22);
    backdrop-filter: blur(16px);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    animation: heroLogoFloat 5s ease-in-out infinite;
}

.hero-logo-img {
    display: block;
    width: clamp(190px, 26vw, 260px);
    height: auto;
    filter: drop-shadow(0 0 4px rgba(255,255,255,0.9))
            drop-shadow(0 3px 10px rgba(0,0,0,0.25));
}

/* Animations */
@keyframes heroFadeInUp {
    0% {
        opacity: 0;
        transform: translateY(16px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes heroLogoFloat {
    0%   { transform: translateY(0); }
    50%  { transform: translateY(-6px); }
    100% { transform: translateY(0); }
}

@media (prefers-reduced-motion: reduce) {
    .hero-main,
    .hero-logo-badge {
        animation: none !important;
    }
}

/* =========================================
   MAIN CONTENT
========================================= */

.site-main {
    padding-bottom: 3rem;
}

.main-shell {
    margin-top: 1.9rem;
}

.content-card {
    background: var(--card);
    padding: 2.2rem 2.3rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow-soft);
    border: 1px solid #e2e5f0;
}

.page-title {
    font-size: 1.42rem;
    font-weight: 600;
    margin-bottom: 1rem;
    padding-bottom: 0.65rem;
    border-bottom: 1px solid #e3e6f2;
    color: var(--navy);
}

.page-inner {
    max-width: 800px;
    margin: 0 auto;
}

.page-content p {
    line-height: 1.65;
    color: #31343f;
    margin: 0.55rem 0;
}

.page-content a {
    color: var(--green);
    text-decoration: none;
    border-bottom: 1px solid rgba(0, 166, 118, 0.35);
    transition: color 0.16s ease, border-color 0.16s ease;
}

.page-content a:hover {
    color: #00855c;
    border-color: rgba(0, 133, 92, 0.65);
}

.page-content h1,
.page-content h2,
.page-content h3,
.page-content h4 {
    color: var(--navy);
    margin-top: 1.7rem;
    margin-bottom: 0.55rem;
    line-height: 1.25;
}

.page-content h2 {
    font-size: 1.18rem;
    font-weight: 600;
}

.page-content h3 {
    font-size: 1.02rem;
    font-weight: 600;
}

.page-content ul,
.page-content ol {
    margin: 0.35rem 0 0.9rem 1.25rem;
    padding: 0;
}

.page-content li {
    margin-bottom: 0.22rem;
}

.page-content p strong {
    font-weight: 700;
    color: #1c2430;
}

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

.site-footer {
    background: #ffffff;
    border-top: 1px solid #e4e7f0;
    padding: 1rem 0;
    margin-top: 2rem;
}

.footer-shell {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.84rem;
    color: var(--slate);
}

.footer-text {
    margin: 0;
}

.footer-link {
    color: var(--slate);
}

.footer-link:hover {
    text-decoration: underline;
}

/* =========================================
   ACCESSIBILITY / FOCUS
========================================= */

.menu-link:focus-visible,
.mobile-link:focus-visible,
.lang-pill:focus-visible,
.footer-link:focus-visible,
.nav-toggle:focus-visible {
    outline: 2px solid var(--green);
    outline-offset: 3px;
}

/* =========================================
   RESPONSIVE – DESKTOP TWEAKS
========================================= */

@media (max-width: 1199px) {
    .nav-shell {
        flex-wrap: wrap;
        row-gap: 0.3rem;
        align-items: flex-start;
    }

    .nav-left {
        order: 1;
    }

    .nav-right {
        order: 2;
    }

    .nav-center {
        order: 3;
        flex-basis: 100%;
        justify-content: center;
        margin-top: 0.1rem;
    }

    .primary-menu {
        flex-wrap: wrap;
        gap: 1.4rem;
    }

    .brand-logo {
        height: 52px;
    }

    .partner-logo {
        max-height: 26px;
    }

    .partner-logos::before {
        height: 26px;
    }
}

/* =========================================
   RESPONSIVE – TABLETS / SMALL LAPTOPS
   (burger visible, menu hidden, logos move left)
========================================= */

/* =========================================
   RESPONSIVE – TABLETS / SMALL LAPTOPS
   (burger visible, menu hidden, logos inline left)
========================================= */

@media (max-width: 960px) {
    .mobile-nav {
        top: 56px;   /* header is a bit smaller here */
    }
    .nav-shell {
        flex-wrap: nowrap;
        min-height: 56px;
        padding: 0.45rem 0;
        row-gap: 0;
        align-items: center;
    }

    .nav-center {
        display: none;
    }

    .brand-logo {
        height: 50px;
    }

    .nav-left {
        flex: 1 1 auto;
        display: flex;
        align-items: center;
        gap: 0.5rem;
        flex-wrap: wrap; /* allow partner logos to wrap under the main logo if needed */
    }

    /* Partner logos now inline, no absolute positioning */
    .partner-logos {
        position: static;
        left: auto;
        top: auto;
        transform: none;
        padding-left: 0.3rem;
        gap: 0.4rem;
        flex-wrap: wrap;
    }

    .partner-logos::before {
        display: none; /* cleaner on narrow header */
    }

    .partner-logo {
        max-height: 32px; /* visually balanced with smaller project logo */
    }

    .nav-right {
        flex: 0 0 auto;
        justify-content: flex-end;
        gap: 0.4rem;
    }

    .nav-toggle {
        display: inline-block;
    }

    .hero-enduro {
        padding: 2.5rem 0 2.9rem;
        box-shadow: 0 12px 24px rgba(0, 25, 51, 0.16);
    }

    .hero-title {
        font-size: 2.0rem;
    }

    .hero-logo-img {
        width: clamp(170px, 32vw, 220px);
    }

    .content-card {
        padding: 1.85rem 1.7rem;
    }

    .footer-shell {
        flex-direction: column;
        row-gap: 0.35rem;
        align-items: flex-start;
    }
}

/* =========================================
   PHONES
========================================= */

@media (max-width: 768px) {

    .mobile-nav {
        top: 52px;   /* smallest header height */
    }
    
    .nav-shell {
        padding: 0.4rem 0;
        min-height: 52px;
    }

    .brand-logo {
        height: 46px;
    }

    /* On very small screens, let partner logos wrap nicely under the logo */
    .partner-logos {
        padding-left: 0.2rem;
        margin-top: 0.1rem;
        gap: 0.3rem;
    }

    .partner-logo {
        max-height: 28px;
    }

    .hero-enduro {
        padding: 2.3rem 0 2.5rem;
    }

    .hero-layout {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.8rem;
    }

    .hero-main {
        max-width: 100%;
    }

    .hero-title {
        font-size: 1.8rem;
    }

    .hero-subtitle {
        max-width: 100%;
        font-size: 0.95rem;
    }

    .hero-logo-wrap {
        width: 100%;
        justify-content: flex-start;
    }

    .hero-logo-badge {
        padding: 1.3rem 1.4rem;
        border-radius: 22px;
        box-shadow: 0 14px 30px rgba(0,0,0,0.22);
    }

    .hero-logo-img {
        width: 180px;
    }

    .main-shell {
        margin-top: 1.4rem;
    }

    .content-card {
        padding: 1.5rem 1.25rem;
    }

    .hero-enduro.hero-hidden {
        display: none;
    }

    .hero-enduro.hero-visible {
        display: block;
    }
}


/* =========================================
   PROJECT META BLOCK
========================================= */

.project-block {
    background: #ffffff;
    border-radius: var(--radius);
    padding: 1.6rem 1.8rem;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.03);
    margin: 1.4rem 0 0;
    border: 1px solid #e2e5f0;
}

.project-info {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.95rem;
}

.project-info td {
    padding: 0.42rem 0;
    vertical-align: top;
}

.project-label {
    width: 24%;
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    font-weight: 600;
    color: #4C596A;
    padding-right: 1.4rem;
    white-space: nowrap;
}

.project-value {
    width: 76%;
    color: #17212b;
}

.project-tag {
    display: inline-block;
    padding: 0.08rem 0.5rem;
    border-radius: 999px;
    border: 1px solid var(--green);
    color: var(--green);
    font-size: 0.8rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.project-section-title {
    margin-top: 1.3rem;
    padding-top: 1rem;
    border-top: 1px solid #e3e7ef;
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 600;
    color: var(--navy);
}

.project-abstract p {
    margin: 0.5rem 0;
    text-align: justify;
    line-height: 1.55;
}

.project-funding {
    margin-top: 1.2rem;
    font-size: 0.92rem;
    text-align: justify;
}

.project-funding a {
    color: var(--green);
    font-weight: 600;
    text-decoration: none;
}

.project-funding a:hover {
    text-decoration: underline;
}

@media (max-width: 640px) {
    .project-block {
        padding: 1.2rem 1.2rem;
    }

    .project-info td {
        display: block;
        width: 100%;
    }

    .project-label {
        padding-right: 0;
        margin-top: 0.32rem;
    }

    .project-value {
        margin-bottom: 0.32rem;
    }
}

/* =========================================
   PROJECT PEOPLE (LEADER + TEAM)
========================================= */

.project-people {
    margin-top: 1.8rem;
}

.project-section-heading {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 600;
    color: var(--navy);
    border-bottom: 1px solid #e3e7ef;
    padding-bottom: 0.35rem;
    margin-bottom: 0.85rem;
}

/* Leader card – modern layout */
.project-leader-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 1.6rem 1.8rem;
    box-shadow: 0 4px 14px rgba(0,0,0,0.04);
    border: 1px solid #e3e7ef;
    margin-bottom: 1.8rem;
}

.leader-info {
    display: flex;
    flex-direction: column;
    gap: 0.9rem;
}

.leader-row {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    gap: 1.2rem;
    padding-bottom: 0.7rem;
    border-bottom: 1px solid #f3f4f7;
}

.leader-row:last-child {
    border-bottom: none;
}

.leader-label {
    flex-basis: 28%;
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    font-weight: 600;
    color: #4C596A;
}

.leader-value {
    flex-basis: 72%;
    font-size: 0.94rem;
    color: #17212b;
    line-height: 1.45;
}

.leader-value a {
    color: #00A676;
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: 0.2s ease;
}

.leader-value a:hover {
    border-color: rgba(0,166,118,0.4);
}

@media (max-width: 680px) {
    .leader-row {
        flex-direction: column;
        padding-bottom: 1rem;
    }

    .leader-label {
        margin-bottom: 0.25rem;
    }
}

/* (Optional) generic person-info table if needed anywhere else */
.person-info {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.95rem;
}

.person-info td {
    padding: 0.32rem 0;
    vertical-align: top;
}

.person-label {
    width: 26%;
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    font-weight: 600;
    color: #4C596A;
    padding-right: 1.4rem;
    white-space: nowrap;
}

.person-value {
    width: 74%;
    color: #17212b;
}

.person-value code {
    font-family: inherit;
    font-size: 0.9em;
}

/* Collaborators – card layout */

.collaborator-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.2rem;
    margin-top: 1rem;
}

.collaborator-card {
    background: #ffffff;
    border-radius: 10px;
    padding: 1.1rem 1.3rem;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.04);
    border: 1px solid #e3e7ef;
}

.collab-name {
    margin: 0 0 0.35rem;
    font-size: 0.98rem;
    font-weight: 600;
    color: #003049;
}

.collab-name a {
    color: inherit;
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: border-color 0.18s ease, color 0.18s ease;
}

.collab-name a:hover {
    color: #00A676;
    border-color: rgba(0, 166, 118, 0.4);
}

.collab-institution {
    font-size: 0.88rem;
    color: #4C596A;
    margin-bottom: 0.35rem;
}

.collab-institution a {
    color: inherit;
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: border-color 0.18s ease;
}

.collab-institution a:hover {
    border-color: rgba(0, 0, 0, 0.2);
}

.collab-role {
    font-size: 0.88rem;
    color: #17212b;
    margin: 0;
    line-height: 1.55;
}

@media (min-width: 960px) {
    .collaborator-list {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

/* =========================================
   CONTACT SECTION
========================================= */

.contact-section {
    margin: 2.2rem 0;
}

.contact-card {
    max-width: 750px;
    margin: 0 auto;
    padding: 2rem 1.75rem;
    border-radius: 12px;
    border: 1px solid #d4dde7;
    background: #f9fbfd;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

.contact-title {
    margin: 0 0 1.6rem;
    font-size: 1.2rem;
    font-weight: 600;
    color: #2b4c61;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    text-align: left;
}

.contact-grid {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.contact-row {
    display: flex;
    align-items: flex-start;
    flex-wrap: wrap;
    font-size: 0.95rem;
    line-height: 1.45;
    gap: 0.25rem;
}

.contact-label {
    flex: 0 0 180px;
    max-width: 240px;
    font-weight: 600;
    color: #4c596a;
    padding-right: 8px;
}

.contact-value {
    flex: 1;
    color: #1c2733;
    min-width: 220px;
}

.contact-value a {
    color: #2b4c61;
    text-decoration: none;
    border-bottom: 1px solid rgba(43, 76, 97, 0.25);
    padding-bottom: 1px;
    transition: all 0.2s ease;
}

.contact-value a:hover {
    color: #1b3145;
    border-bottom-color: rgba(27,49,69,0.6);
}

@media (max-width: 900px) {
    .contact-label {
        flex: 0 0 150px;
    }

    .contact-row {
        gap: 0.15rem;
    }
}

@media (max-width: 600px) {
    .contact-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.1rem;
    }

    .contact-label {
        flex: none;
        max-width: 100%;
        padding-right: 0;
        margin-bottom: 0;
    }

    .contact-value {
        flex: none;
        width: 100%;
        min-width: 100%;
    }

    .contact-card {
        padding: 1.5rem 1.2rem;
    }
}

/* =========================================
   PUBLICATIONS SECTION
========================================= */

.publications-section {
    margin: 2rem 0;
    padding: 1.5rem 0;
}

.pub-divider-edge {
    border: 0;
    border-top: 1px solid #d4dde7;
    margin: 0 0 0.75rem;
}

.pub-divider-main {
    border: 0;
    border-top: 2px solid #2b4c61;
    width: 120px;
    margin: 0.25rem auto 1.5rem;
}

.section-title {
    text-align: center;
    font-size: 1.15rem;
    font-weight: 600;
    color: #2b4c61;
    letter-spacing: 0.02em;
    margin: 0;
}

/* small "no items" note */
.pub-empty-note {
    text-align: center;
    font-size: 0.94rem;
    color: #4c596a;
    margin: 1.1rem 0 0;
}

.publications-list {
    max-width: 900px;
    margin: 0 auto;
}

.publications-ol {
    margin: 0;
    padding-left: 1.4rem;
}

.publication-item {
    margin-bottom: 1.1rem;
    padding-bottom: 0.8rem;
    border-bottom: 1px solid #eef1f6;
}

.publication-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
    margin-bottom: 0;
}

.pub-entry {
    margin: 0.15rem 0;
    font-size: 0.95rem;
    line-height: 1.6;
    text-align: justify;
    color: #1c2733;
}

.publication-link {
    color: #2b4c61;
    text-decoration: none;
    font-weight: 600;
}

.publication-link:hover {
    color: #1b3145;
    text-decoration: underline;
}

/* Open Access icon */
.open-access-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-left: 0.35rem;
    text-decoration: none;
    position: relative;
}

.open-access-icon svg {
    width: 18px;
    height: 18px;
    fill: #388d9c;
    stroke: #222;
    stroke-width: 0.6;
    transition: transform 0.25s ease, fill 0.25s ease, stroke-width 0.25s ease;
}

.open-access-icon .keyhole {
    fill: #ffffff;
}

.open-access-link:hover .open-access-icon svg {
    transform: translateY(-1px) scale(1.12);
    fill: #2a6e7c;
    stroke-width: 0.8;
}

.open-access-link:hover::after {
    content: attr(title);
    position: absolute;
    top: 130%;
    left: 50%;
    transform: translateX(-50%);
    background: #2a6e7c;
    color: #ffffff;
    padding: 4px 10px;
    border-radius: 4px;
    white-space: nowrap;
    font-size: 0.8rem;
    opacity: 0.95;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.15);
    z-index: 10;
}

@media (max-width: 768px) {
    .publications-list {
        padding: 0 0.5rem;
    }

    .pub-entry {
        font-size: 0.92rem;
    }
}
