/* =================================================================
   VWN Resources — Frontend Styles
   Brand: Navy #7437E3 | Cyan #5CE5AA | White #FFFFFF
   ================================================================= */

:root {
    /* ── Brand palette ───────────────────────── */
    --vwn-purple:        #7437E3;
    --vwn-purple-dark:   #5C2BB5;
    --vwn-purple-glow:   rgba(116,55,227,.35);
    --vwn-green:         #5CE5AA;
    --vwn-green-dark:    #3AB87E;
    --vwn-green-glow:    rgba(92,229,170,.25);
    --vwn-white:         #FFFFFF;

    /* ── Dark card palette ───────────────────── */
    --vwn-card-bg:       #12082E;
    --vwn-card-bg-hover: #1A0F3D;
    --vwn-card-border:   rgba(116,55,227,.28);
    --vwn-card-border-h: rgba(92,229,170,.45);
    --vwn-card-text:     #E8E0FF;
    --vwn-card-muted:    rgba(232,224,255,.55);
    --vwn-card-line:     rgba(116,55,227,.2);
    --vwn-card-badge-bg: rgba(92,229,170,.1);
    --vwn-card-cat-bg:   rgba(116,55,227,.18);

    /* ── Page / layout ───────────────────────── */
    --vwn-gray:          #F8F5FF;
    --vwn-gray-mid:      #E2D9F3;
    --vwn-text:          #2D3748;
    --vwn-text-light:    #718096;
    --vwn-radius:        14px;
    --vwn-card-radius:   16px;
    --vwn-shadow:        0 4px 24px rgba(116,55,227,.15);
    --vwn-shadow-hover:  0 12px 48px rgba(116,55,227,.3);
    --vwn-transition:    .25s cubic-bezier(.4,0,.2,1);

    /* Aliases */
    --vwn-navy:      var(--vwn-purple);
    --vwn-navy-mid:  var(--vwn-purple-dark);
    --vwn-cyan:      var(--vwn-green);
    --vwn-cyan-dark: var(--vwn-green-dark);
}

/* ── Utilities ─────────────────────────────────────────────────── */
.vwn-hidden { display: none !important; }
.vwn-no-results { color: var(--vwn-text-light); text-align:center; padding:40px; }

/* ── Resource Cards ─────────────────────────────────────────────── */
.vwn-resources-grid {
    display: grid;
    gap: 28px;
}
.vwn-cols-2 { grid-template-columns: repeat(2,1fr); }
.vwn-cols-3 { grid-template-columns: repeat(3,1fr); }
.vwn-cols-4 { grid-template-columns: repeat(4,1fr); }

@media (max-width: 1024px) {
    .vwn-cols-4 { grid-template-columns: repeat(2,1fr); }
    .vwn-cols-3 { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 640px) {
    .vwn-cols-2, .vwn-cols-3, .vwn-cols-4 { grid-template-columns: 1fr; }
}

.vwn-resource-card {
    background: var(--vwn-white);
    border-radius: var(--vwn-radius);
    box-shadow: var(--vwn-shadow);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform var(--vwn-transition), box-shadow var(--vwn-transition);
    border: 1px solid var(--vwn-gray-mid);
}
.vwn-resource-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--vwn-shadow-hover);
}
.vwn-resource-card.is-featured {
    border: 2px solid var(--vwn-cyan);
    position: relative;
}
.vwn-resource-card.is-featured::before {
    content: '⭐ Featured';
    position: absolute;
    top: 12px; right: 12px;
    background: var(--vwn-cyan);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .5px;
    padding: 4px 10px;
    border-radius: 20px;
    z-index: 1;
}

.vwn-card-thumb {
    display: block;
    overflow: hidden;
    aspect-ratio: 16/9;
}
.vwn-card-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .4s ease;
}
.vwn-resource-card:hover .vwn-card-thumb img { transform: scale(1.04); }

.vwn-card-body {
    padding: 22px;
    display: flex;
    flex-direction: column;
    flex: 1;
    gap: 10px;
}

.vwn-card-badge {
    display: inline-block;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1px;
    border: 1.5px solid var(--vwn-cyan);
    color: var(--vwn-cyan);
    padding: 3px 10px;
    border-radius: 20px;
    text-transform: uppercase;
    width: fit-content;
}

.vwn-card-title {
    font-size: 17px;
    font-weight: 700;
    color: #FFFFFF !important;
    margin: 0;
    line-height: 1.4;
}
.vwn-card-title a { color: #FFFFFF !important; text-decoration: none; }
.vwn-card-title a:hover { color: #5CE5AA !important; }

.vwn-card-excerpt {
    font-size: 14px;
    color: var(--vwn-text-light);
    margin: 0;
    line-height: 1.6;
    flex: 1;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.vwn-card-meta, .vwn-card-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.vwn-card-cat {
    font-size: 11px;
    font-weight: 700;
    background: #F0FBF4;
    color: var(--vwn-cyan-dark);
    padding: 3px 10px;
    border-radius: 20px;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: .5px;
    transition: background var(--vwn-transition);
}
.vwn-card-cat:hover { background: var(--vwn-cyan); color: #fff; }

.vwn-card-tag {
    font-size: 11px;
    color: var(--vwn-text-light);
    background: rgba(116,55,227,.1);
    padding: 2px 8px;
    border-radius: 20px;
    text-decoration: none;
}
.vwn-card-tag:hover { color: var(--vwn-cyan); }

.vwn-card-btn {
    margin-top: auto;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 700;
    color: var(--vwn-cyan);
    text-decoration: none;
    padding: 10px 0 0;
    border-top: 1px solid var(--vwn-gray-mid);
    transition: gap var(--vwn-transition);
}
.vwn-card-btn:hover { gap: 10px; }

/* ── Slider ─────────────────────────────────────────────────────── */
.vwn-resources-slider-wrap {
    position: relative;
    padding: 0 60px;   /* room for arrows on both sides */
}
.vwn-resources-slider { padding-bottom: 52px !important; overflow: visible !important; }

.vwn-resources-slider .swiper-button-next,
.vwn-resources-slider .swiper-button-prev {
    color: var(--vwn-green);
    background: rgba(18,8,46,.9);
    border: 1px solid rgba(92,229,170,.35);
    width: 44px; height: 44px;
    border-radius: 50%;
    box-shadow: 0 4px 20px rgba(0,0,0,.45);
    transition: background var(--vwn-transition), border-color var(--vwn-transition), box-shadow var(--vwn-transition);
    /* Push arrows outside the slider track */
    top: 40%;
}
.vwn-resources-slider .swiper-button-prev { left: -52px; }
.vwn-resources-slider .swiper-button-next { right: -52px; }

.vwn-resources-slider .swiper-button-next:hover,
.vwn-resources-slider .swiper-button-prev:hover {
    background: var(--vwn-purple);
    border-color: var(--vwn-purple);
    box-shadow: 0 0 20px rgba(116,55,227,.5);
}
.vwn-resources-slider .swiper-button-next::after,
.vwn-resources-slider .swiper-button-prev::after { font-size: 15px; font-weight: 900; }

.vwn-resources-slider .swiper-pagination-bullet {
    background: rgba(255,255,255,.2);
    opacity: 1;
    width: 8px; height: 8px;
    transition: all .3s;
}
.vwn-resources-slider .swiper-pagination-bullet-active {
    background: var(--vwn-green);
    width: 24px;
    border-radius: 4px;
    box-shadow: 0 0 8px var(--vwn-green-glow);
}

/* ── Category Cards ─────────────────────────────────────────────── */
.vwn-categories-grid {
    display: grid;
    gap: 28px;
}

.vwn-cat-card {
    background: var(--vwn-white);
    border-radius: var(--vwn-radius);
    box-shadow: var(--vwn-shadow);
    overflow: hidden;
    transition: transform var(--vwn-transition), box-shadow var(--vwn-transition);
    border: 1px solid var(--vwn-gray-mid);
}
.vwn-cat-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--vwn-shadow-hover);
}
.vwn-cat-cover {
    display: block;
    aspect-ratio: 3/1;
    overflow: hidden;
}
.vwn-cat-cover img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform .4s;
}
.vwn-cat-card:hover .vwn-cat-cover img { transform: scale(1.04); }

.vwn-cat-body {
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.vwn-cat-feat-img {
    width: 48px; height: 48px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 4px;
}
.vwn-cat-name { font-size: 18px; font-weight: 700; color: var(--vwn-navy); margin: 0; }
.vwn-cat-name a { color: inherit; text-decoration: none; }
.vwn-cat-subtitle { font-size: 14px; color: var(--vwn-text-light); margin: 0; }
.vwn-cat-count { font-size: 12px; color: var(--vwn-text-light); font-weight: 600; }
.vwn-cat-btn {
    display: inline-block;
    margin-top: 8px;
    font-size: 13px;
    font-weight: 700;
    color: var(--vwn-cyan);
    text-decoration: none;
}
.vwn-cat-btn:hover { text-decoration: underline; }

/* ── Single Resource — Hero ──────────────────────────────────────── */
.vwn-single-hero, .vwn-archive-hero {
    position: relative;
    background: #2D1B5A;
    color: #fff;
    padding: 80px 40px;
    min-height: 280px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}
.vwn-hero-bg {
    position: absolute; inset: 0;
    background-size: cover;
    background-position: center;
}
.vwn-hero-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(135deg, rgba(13,27,42,.92) 0%, rgba(13,27,42,.75) 100%);
}
.vwn-hero-content {
    position: relative; z-index: 1;
    max-width: 800px;
    margin: 0 auto;
}
.vwn-breadcrumb {
    font-size: 13px;
    color: rgba(255,255,255,.6);
    margin-bottom: 16px;
}
.vwn-breadcrumb a { color: var(--vwn-cyan); text-decoration: none; }
.vwn-hero-badge {
    display: inline-block;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1.2px;
    border: 1.5px solid var(--vwn-cyan);
    color: var(--vwn-cyan);
    padding: 4px 14px;
    border-radius: 20px;
    text-transform: uppercase;
    margin-bottom: 16px;
}
.vwn-hero-title {
    font-size: clamp(26px, 4vw, 44px);
    font-weight: 800;
    color: #fff;
    margin: 0 0 16px;
    line-height: 1.2;
}
.vwn-hero-excerpt, .vwn-hero-subtitle {
    font-size: 18px;
    color: rgba(255,255,255,.8);
    margin: 0 0 20px;
    line-height: 1.6;
}
.vwn-hero-tags { display: flex; flex-wrap: wrap; gap: 8px; justify-content: center; }
.vwn-tag-pill {
    background: rgba(30,155,219,.2);
    border: 1px solid var(--vwn-cyan);
    color: var(--vwn-cyan);
    font-size: 12px;
    padding: 4px 12px;
    border-radius: 20px;
    text-decoration: none;
}

/* ── Single layout ──────────────────────────────────────────────── */
.vwn-single-layout {
    display: grid;
    grid-template-columns: 1fr 280px;
    gap: 40px;
    max-width: 1100px;
    margin: 0 auto;
    padding: 48px 24px;
}
@media (max-width: 768px) { .vwn-single-layout { grid-template-columns: 1fr; } }

.vwn-content-body {
    font-size: 16px;
    line-height: 1.8;
    color: rgba(232,224,255,.65);
    border: 1px solid rgba(116,55,227,.25);
}
.vwn-content-body h2, .vwn-content-body h3 { color: var(--vwn-navy); }

.vwn-single-sidebar { display: flex; flex-direction: column; gap: 24px; }

.vwn-sidebar-meta {
    background: rgba(116,55,227,.1);
    border-radius: var(--vwn-radius);
    padding: 20px;
}
.vwn-sidebar-meta h4 { margin: 0 0 10px; font-size: 12px; text-transform: uppercase; letter-spacing: 1px; color: var(--vwn-text-light); }
.vwn-cat-link {
    display: inline-block;
    background: var(--vwn-cyan);
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 20px;
    text-decoration: none;
    margin: 2px;
}

/* ── Archive filters ────────────────────────────────────────────── */
.vwn-archive-filters {
    background: #0E0720;
    border-bottom: 1px solid rgba(116,55,227,.2);
    padding: 16px 24px;
    position: static;
}
.vwn-filters-inner { max-width: 1100px; margin: 0 auto; display: flex; flex-wrap: wrap; gap: 8px; align-items: center; }
.vwn-filter-label { font-size: 12px; font-weight: 700; letter-spacing: .8px; text-transform: uppercase; color: rgba(232,224,255,.45); margin-right: 4px; }
.vwn-filter-pill {
    font-size: 13px;
    font-weight: 600;
    padding: 6px 16px;
    border-radius: 20px;
    background: rgba(116,55,227,.1);
    color: rgba(232,224,255,.65);
    border: 1px solid rgba(116,55,227,.25);
    text-decoration: none;
    transition: all var(--vwn-transition);
}
.vwn-filter-pill:hover, .vwn-filter-pill.active {
    background: #2D1B5A;
    color: #fff;
}

.vwn-archive-grid-section { padding: 48px 24px; }
.vwn-archive-grid-inner { max-width: 1100px; margin: 0 auto; }

.vwn-archive-pagination {
    text-align: center;
    margin-top: 48px;
}
.vwn-archive-pagination .page-numbers {
    display: inline-block;
    padding: 8px 16px;
    border-radius: 6px;
    margin: 2px;
    text-decoration: none;
    color: var(--vwn-navy);
    background: rgba(116,55,227,.1);
    font-weight: 600;
}
.vwn-archive-pagination .page-numbers.current,
.vwn-archive-pagination .page-numbers:hover {
    background: #2D1B5A;
    color: #fff;
}

/* ═══════════════════════════════════════════════════════════════════
   DOWNLOAD GATE SECTION
   ═══════════════════════════════════════════════════════════════════ */
.vwn-gate-section {
    padding: 80px 24px;
    position: relative;
}

/* Dark (navy) style */
.vwn-gate-style-dark {
    background: linear-gradient(135deg, #2D1B5A 0%, var(--vwn-purple) 100%);
    color: #fff;
}
/* Light style */
.vwn-gate-style-light {
    background: rgba(116,55,227,.1);
    color: rgba(232,224,255,.65);
    border: 1px solid rgba(116,55,227,.25);
}
/* Gradient style */
.vwn-gate-style-gradient {
    background: linear-gradient(135deg, var(--vwn-purple) 0%, #2D1B5A 60%);
    color: #fff;
}

.vwn-gate-inner {
    max-width: 680px;
    margin: 0 auto;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
}

.vwn-gate-icon svg, .vwn-unlock-icon svg {
    width: 72px; height: 72px;
    color: var(--vwn-cyan);
}

.vwn-gate-text h2 {
    font-size: 32px;
    font-weight: 800;
    margin: 0 0 12px;
    color: inherit;
}
.vwn-gate-style-dark .vwn-gate-text h2,
.vwn-gate-style-gradient .vwn-gate-text h2 { color: #fff; }

.vwn-gate-text p {
    font-size: 17px;
    color: inherit;
    opacity: .85;
    margin: 0;
    line-height: 1.6;
}

/* Email verification row */
.vwn-email-check-wrap { width: 100%; max-width: 520px; }
.vwn-email-check-row {
    display: flex;
    gap: 10px;
}
.vwn-email-verify-input {
    flex: 1;
    padding: 12px 16px;
    border-radius: 8px;
    border: 2px solid rgba(255,255,255,.2);
    background: rgba(255,255,255,.1);
    color: #fff;
    font-size: 14px;
    outline: none;
    transition: border-color var(--vwn-transition);
}
.vwn-gate-style-light .vwn-email-verify-input {
    background: #fff;
    color: rgba(232,224,255,.65);
    border: 1px solid rgba(116,55,227,.25);
    border-color: var(--vwn-gray-mid);
}
.vwn-email-verify-input:focus { border-color: var(--vwn-cyan); }
.vwn-email-verify-input::placeholder { color: rgba(255,255,255,.5); }
.vwn-gate-style-light .vwn-email-verify-input::placeholder { color: #aaa; }

.vwn-btn-secondary {
    padding: 12px 20px;
    border-radius: 8px;
    background: transparent;
    border: 2px solid var(--vwn-cyan);
    color: var(--vwn-cyan);
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    white-space: nowrap;
    transition: all var(--vwn-transition);
}
.vwn-btn-secondary:hover { background: var(--vwn-cyan); color: #fff; }

.vwn-email-check-note {
    font-size: 13px;
    color: rgba(255,255,255,.5);
    margin: 12px 0 0;
    text-align: center;
}
.vwn-gate-style-light .vwn-email-check-note { color: var(--vwn-text-light); }

/* Fluent form overrides inside gate */
.vwn-gate-form-wrap { width: 100%; max-width: 520px; }
.vwn-gate-form-wrap .ff-el-group label { color: rgba(255,255,255,.85) !important; }
.vwn-gate-style-light .vwn-gate-form-wrap .ff-el-group label { color: var(--vwn-text) !important; }
.vwn-gate-form-wrap input[type="text"],
.vwn-gate-form-wrap input[type="email"],
.vwn-gate-form-wrap input[type="tel"] {
    background: rgba(255,255,255,.1) !important;
    border: 2px solid rgba(255,255,255,.2) !important;
    color: #fff !important;
    border-radius: 8px !important;
}
.vwn-gate-style-light .vwn-gate-form-wrap input {
    background: #fff !important;
    border-color: var(--vwn-gray-mid) !important;
    color: var(--vwn-text) !important;
}
.vwn-gate-form-wrap .ff-btn-submit,
.vwn-gate-form-wrap button[type="submit"] {
    background: var(--vwn-cyan) !important;
    border: none !important;
    color: #fff !important;
    font-weight: 800 !important;
    font-size: 15px !important;
    padding: 14px 32px !important;
    border-radius: 8px !important;
    letter-spacing: .5px !important;
    width: 100% !important;
    cursor: pointer !important;
    transition: background var(--vwn-transition) !important;
}
.vwn-gate-form-wrap .ff-btn-submit:hover,
.vwn-gate-form-wrap button[type="submit"]:hover {
    background: var(--vwn-cyan-dark) !important;
}

/* Download button */
.vwn-download-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: var(--vwn-cyan);
    color: #fff;
    font-size: 17px;
    font-weight: 800;
    padding: 18px 40px;
    border-radius: 50px;
    text-decoration: none;
    letter-spacing: .5px;
    transition: background var(--vwn-transition), transform var(--vwn-transition), box-shadow var(--vwn-transition);
    box-shadow: 0 4px 20px rgba(92,229,170,.35);
}
.vwn-download-btn:hover {
    background: var(--vwn-cyan-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(92,229,170,.5);
    color: #fff;
}
.vwn-dl-icon { width: 22px; height: 22px; flex-shrink: 0; }

.vwn-dl-desc {
    font-size: 13px;
    color: rgba(255,255,255,.6);
    margin: 0;
}
.vwn-gate-style-light .vwn-dl-desc { color: var(--vwn-text-light); }

/* Checking spinner */
.vwn-gate-checking {
    text-align: center;
    padding: 40px;
    color: rgba(255,255,255,.7);
}
.vwn-gate-spinner {
    width: 40px; height: 40px;
    border: 3px solid rgba(255,255,255,.2);
    border-top-color: var(--vwn-cyan);
    border-radius: 50%;
    animation: vwn-spin .8s linear infinite;
    margin: 0 auto 16px;
}
@keyframes vwn-spin { to { transform: rotate(360deg); } }

/* ── Related section ────────────────────────────────────────────── */
.vwn-related { background: var(--vwn-gray); padding: 64px 24px; }
.vwn-related-inner { max-width: 1100px; margin: 0 auto; }
.vwn-related-title {
    font-size: 28px;
    font-weight: 800;
    color: var(--vwn-navy);
    margin: 0 0 32px;
    text-align: center;
}

/* ── No form message ────────────────────────────────────────────── */
.vwn-no-form {
    background: rgba(255,200,0,.1);
    border: 1px solid rgba(255,200,0,.4);
    padding: 16px 20px;
    border-radius: 8px;
    font-size: 14px;
    color: rgba(255,255,255,.8);
}

/* ── Archive feat image ─────────────────────────────────────────── */
.vwn-archive-feat-img {
    width: 72px; height: 72px;
    object-fit: cover;
    border-radius: 12px;
    margin-bottom: 16px;
    border: 3px solid rgba(92,229,170,.4);
}

/* ── Gate section — ensure it sits outside Elementor containers ─── */
.vwn-gate-section {
    margin-left:  calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left:  -50vw;
    margin-right: -50vw;
}
/* Fallback for themes that use max-width containers */
.elementor-widget-text-editor .vwn-gate-section,
.entry-content .vwn-gate-section {
    margin-left:  -9999px;
    margin-right: -9999px;
    padding-left:  9999px;
    padding-right: 9999px;
}

/* ── Unlock badge ───────────────────────────────────────────────── */
.vwn-unlock-badge {
    display: inline-block;
    background: rgba(92,229,170,.15);
    border: 1.5px solid var(--vwn-green);
    color: var(--vwn-green);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .8px;
    padding: 5px 14px;
    border-radius: 20px;
    text-transform: uppercase;
    margin-bottom: 8px;
}

/* ── Gate notice ────────────────────────────────────────────────── */
.vwn-notice {
    background: rgba(255,200,60,.12);
    border: 1px solid rgba(255,200,60,.4);
    color: rgba(255,255,255,.85);
    padding: 12px 18px;
    border-radius: 8px;
    font-size: 14px;
}
.vwn-gate-style-light .vwn-notice { color: var(--vwn-text); }

/* ── Equal height cards everywhere ─────────────────────────────── */
.vwn-resources-grid .vwn-resource-card,
.swiper-slide .vwn-resource-card {
    height: 100%;
}
.swiper-slide {
    height: auto !important;
    display: flex;
}
.swiper-slide .vwn-resource-card {
    width: 100%;
    flex: 1;
}
/* Dark page background for archive wrapper */
.vwn-archive-resource {
    background: #0E0720;
    min-height: 100vh;
}
/* Pagination dark theme */
.vwn-archive-pagination {
    text-align: center;
    margin-top: 48px;
}
.vwn-archive-pagination .page-numbers {
    display: inline-block;
    padding: 8px 16px;
    border-radius: 8px;
    margin: 2px;
    text-decoration: none;
    color: rgba(232,224,255,.7);
    background: rgba(116,55,227,.1);
    border: 1px solid rgba(116,55,227,.2);
    font-weight: 600;
    transition: all var(--vwn-transition);
}
.vwn-archive-pagination .page-numbers.current,
.vwn-archive-pagination .page-numbers:hover {
    background: var(--vwn-purple);
    border-color: var(--vwn-purple);
    color: #fff;
    box-shadow: 0 0 16px rgba(116,55,227,.35);
}
/* Override any theme white background on card body */
.vwn-resource-card .vwn-card-body,
.vwn-resource-card * {
    background-color: transparent;
}
.vwn-resource-card {
    background: #12082E !important;
    color: #E8E0FF;
}
