:root {
    --ayat-bg: #fcfcfa;
    --ayat-surface: #ffffff;
    --ayat-text: #1d241d;
    --ayat-muted: #6e756d;
    --ayat-border: #e8ebe3;

    --ayat-primary: #a4b61f;
    --ayat-primary-dark: #879817;
    --ayat-primary-soft: #f4f7df;

    --ayat-container: 1240px;

    --ayat-radius-sm: 12px;
    --ayat-radius-md: 18px;
    --ayat-radius-lg: 999px;

    --ayat-shadow: 0 10px 30px rgba(25, 35, 18, 0.05);
}

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

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: var(--ayat-bg);
    color: var(--ayat-text);
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

img {
    display: block;
    max-width: 100%;
    height: auto;
}

a {
    color: inherit;
    text-decoration: none;
}

button,
input,
textarea,
select {
    font: inherit;
}

.ayat-container {
    width: min(calc(100% - 32px), var(--ayat-container));
    margin-inline: auto;
}

.ayat-skip-link {
    position: fixed;
    top: -100px;
    inset-inline-start: 16px;
    z-index: 99999;
    padding: 10px 14px;
    background: #111;
    color: #fff;
    border-radius: 8px;
}

.ayat-skip-link:focus {
    top: 16px;
}

.ayat-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(252, 252, 250, 0.92);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(168, 176, 160, 0.16);
}

.admin-bar .ayat-header {
    top: 32px;
}

.ayat-header-inner {
    min-height: 78px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 26px;
}

.ayat-brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

.ayat-logo-image {
    width: 40px;
    height: 56px;
    object-fit: contain;
    object-position: center;
}

.ayat-brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1.05;
}

.ayat-brand-text strong {
    font-size: 1.08rem;
    font-weight: 650;
    letter-spacing: -0.02em;
}

.ayat-brand-text small {
    margin-top: 4px;
    color: var(--ayat-muted);
    font-size: 0.68rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.ayat-desktop-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2px;
    margin-inline-start: auto;
}

.ayat-desktop-nav a {
    padding: 10px 12px;
    color: #495148;
    font-size: 0.92rem;
    font-weight: 500;
    border-radius: 10px;
    transition: background 160ms ease, color 160ms ease;
}

.ayat-desktop-nav a:hover {
    background: var(--ayat-primary-soft);
    color: #27311f;
}

.ayat-header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.ayat-language-switcher {
    display: inline-flex;
    align-items: center;
    padding: 3px;
    border: 1px solid var(--ayat-border);
    border-radius: 999px;
    background: rgba(255,255,255,.85);
}

.ayat-lang {
    min-width: 30px;
    height: 29px;
    display: grid;
    place-items: center;
    padding-inline: 8px;
    color: var(--ayat-muted);
    font-size: 0.68rem;
    font-weight: 700;
    border-radius: 999px;
}

.ayat-lang.is-current {
    color: #2a331f;
    background: var(--ayat-primary-soft);
}

.ayat-header-cta,
.ayat-mobile-cta {
    min-height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 18px;
    color: #1f2817;
    background: var(--ayat-primary);
    border-radius: 999px;
    font-size: 0.87rem;
    font-weight: 650;
    transition: transform 160ms ease, background 160ms ease;
}

.ayat-header-cta:hover,
.ayat-mobile-cta:hover {
    background: var(--ayat-primary-dark);
    transform: translateY(-1px);
}

.ayat-menu-toggle {
    width: 42px;
    height: 42px;
    display: none;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 4px;
    padding: 0;
    border: 1px solid var(--ayat-border);
    border-radius: 12px;
    background: #fff;
    cursor: pointer;
}

.ayat-menu-toggle span {
    width: 17px;
    height: 1.5px;
    border-radius: 4px;
    background: var(--ayat-text);
    transition: transform 180ms ease, opacity 180ms ease;
}

.ayat-menu-toggle.is-open span:nth-child(1) {
    transform: translateY(5.5px) rotate(45deg);
}

.ayat-menu-toggle.is-open span:nth-child(2) {
    opacity: 0;
}

.ayat-menu-toggle.is-open span:nth-child(3) {
    transform: translateY(-5.5px) rotate(-45deg);
}

.ayat-mobile-menu {
    border-top: 1px solid var(--ayat-border);
    background: rgba(252, 252, 250, 0.98);
}

.ayat-mobile-menu nav {
    display: grid;
    padding: 12px 0 20px;
}

.ayat-mobile-menu nav > a:not(.ayat-mobile-cta) {
    padding: 13px 4px;
    color: #475045;
    font-size: 0.95rem;
    border-bottom: 1px solid rgba(232, 235, 227, 0.7);
}

.ayat-mobile-cta {
    margin-top: 16px;
}

.site-main {
    min-height: 70vh;
}

html[dir="rtl"] body {
    direction: rtl;
    text-align: right;
}

html[dir="rtl"] .ayat-brand-text small {
    letter-spacing: 0;
    text-transform: none;
}

@media (max-width: 1040px) {
    .ayat-desktop-nav {
        display: none;
    }

    .ayat-menu-toggle {
        display: flex;
    }
}

@media (max-width: 680px) {
    .ayat-container {
        width: min(calc(100% - 24px), var(--ayat-container));
    }

    .ayat-header-inner {
        min-height: 70px;
        gap: 10px;
    }

    .ayat-logo-image {
        width: 34px;
        height: 48px;
    }

    .ayat-brand-text strong {
        font-size: 1rem;
    }

    .ayat-brand-text small {
        font-size: 0.6rem;
    }

    .ayat-header-cta {
        display: none;
    }

    .ayat-lang {
        min-width: 28px;
        font-size: 0.64rem;
        padding-inline: 6px;
    }
}

@media (max-width: 390px) {
    .ayat-brand-text small {
        display: none;
    }
}

/* ==================================================
   AYAT HEADER LOGO - HARD SIZE CONTROL
================================================== */

.ayat-header .ayat-logo-image {
    display: block !important;

    width: 40px !important;
    min-width: 40px !important;
    max-width: 40px !important;

    height: 56px !important;
    min-height: 56px !important;
    max-height: 56px !important;

    object-fit: contain !important;
    object-position: center !important;

    flex: 0 0 40px;

    margin: 0 !important;
    padding: 0 !important;
}

.ayat-header .ayat-brand {
    min-width: 0;
}

@media (max-width: 680px) {

    .ayat-header .ayat-logo-image {
        width: 32px !important;
        min-width: 32px !important;
        max-width: 32px !important;

        height: 45px !important;
        min-height: 45px !important;
        max-height: 45px !important;

        flex-basis: 32px;
    }

}

/* ==================================================
   FIXED HEADER LANGUAGE BEHAVIOUR
================================================== */

/*
 * Keep header physical positions identical
 * in English, Arabic and French.
 */
.ayat-header,
.ayat-header-inner,
.ayat-header-actions,
.ayat-desktop-nav {
    direction: ltr !important;
}

.ayat-header-inner {
    display: grid !important;
    grid-template-columns: auto 1fr auto;
    align-items: center;
}

.ayat-brand {
    grid-column: 1;
}

.ayat-desktop-nav {
    grid-column: 2;
    margin-inline: 0 !important;
    justify-self: center;
}

.ayat-header-actions {
    grid-column: 3;
    justify-self: end;
}

/*
 * Arabic/French text itself still renders naturally,
 * while the header structure stays in the same place.
 */
.ayat-desktop-nav a,
.ayat-header-cta,
.ayat-mobile-menu a {
    unicode-bidi: plaintext;
}

/* Language control */

.ayat-language-control {
    position: relative;
    direction: ltr;
    flex: 0 0 auto;
}

.ayat-language-button {
    width: 42px;
    height: 42px;

    display: grid;
    place-items: center;

    padding: 0;

    border: 0;
    border-radius: 11px;

    background: transparent;
    color: var(--ayat-primary);

    cursor: pointer;

    transition:
        background 160ms ease,
        transform 160ms ease;
}

.ayat-language-button:hover,
.ayat-language-button[aria-expanded="true"] {
    background: var(--ayat-primary-soft);
}

.ayat-language-button:active {
    transform: scale(.96);
}

.ayat-language-button svg {
    width: 25px;
    height: 25px;

    fill: none;
    stroke: currentColor;
    stroke-width: 1.75;
    stroke-linecap: round;
    stroke-linejoin: round;
}

/* Dropdown */

.ayat-language-menu {
    position: absolute;

    top: calc(100% + 10px);
    right: 0;

    width: 172px;

    padding: 7px;

    background: #fff;

    border: 1px solid var(--ayat-border);
    border-radius: 14px;

    box-shadow:
        0 18px 45px rgba(31, 40, 25, .11);

    z-index: 1100;
}

.ayat-language-menu[hidden] {
    display: none !important;
}

.ayat-language-option {
    min-height: 43px;

    display: flex;
    align-items: center;
    gap: 10px;

    padding: 7px 9px;

    color: #3d4539;

    border-radius: 9px;

    font-size: .84rem;
    font-weight: 520;

    white-space: nowrap;
}

.ayat-language-option:hover {
    background: #f7f8f3;
}

.ayat-language-option.is-current {
    color: #64720e;
    background: var(--ayat-primary-soft);
}

.ayat-language-code {
    width: 31px;
    height: 27px;

    display: grid;
    place-items: center;

    flex: 0 0 31px;

    border-radius: 7px;

    background: #f3f5ed;

    color: var(--ayat-primary-dark);

    font-size: .64rem;
    font-weight: 750;
}

/* Remove old switcher styling if still present */

.ayat-language-switcher {
    display: none !important;
}

/* Mobile */

@media (max-width: 1040px) {

    .ayat-header-inner {
        grid-template-columns: auto 1fr auto;
    }

    .ayat-desktop-nav {
        display: none !important;
    }

    .ayat-header-actions {
        grid-column: 3;
    }

}

@media (max-width: 680px) {

    .ayat-language-button {
        width: 38px;
        height: 38px;
    }

    .ayat-language-button svg {
        width: 23px;
        height: 23px;
    }

    .ayat-language-menu {
        width: 160px;
    }

}

/* ==================================================
   LANGUAGE FLAGS
================================================== */

.ayat-language-option {
    display: flex;
    align-items: center;
    gap: 10px;
}

.ayat-language-flag {
    width: 26px;
    min-width: 26px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    line-height: 1;
}

.ayat-language-name {
    display: inline-block;
    line-height: 1.2;
}

.ayat-language-option.is-current .ayat-language-name {
    font-weight: 700;
}

.ayat-language-option.is-current .ayat-language-flag {
    transform: scale(1.04);
}

/* ==================================================
   REAL SVG LANGUAGE FLAGS
================================================== */

.ayat-language-flag {
    width: 28px !important;
    min-width: 28px !important;
    height: 20px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    overflow: hidden;

    border-radius: 4px;

    background: transparent;

    box-shadow:
        0 0 0 1px rgba(20, 30, 15, .08);
}

.ayat-language-flag img {
    display: block;

    width: 28px !important;
    height: 20px !important;

    object-fit: cover;

    margin: 0 !important;
    padding: 0 !important;
}

.ayat-language-option {
    gap: 11px;
}

.ayat-language-option.is-current .ayat-language-flag {
    box-shadow:
        0 0 0 1px rgba(164, 182, 31, .35);
}

/* ==================================================
   AYAT HOME HERO - FACEBOOK STYLE COVER
================================================== */

body.home {
    background: #f6f6f2;
}

.ayat-home-hero {
    padding: 28px 0 64px;
}

.ayat-cover-card {
    background: #ffffff;
    border: 1px solid rgba(25, 35, 15, 0.08);
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 18px 60px rgba(16, 24, 12, 0.06);
}

.ayat-cover-banner {
    height: clamp(240px, 34vw, 420px);
    background-color: #e8eadf;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}

.ayat-cover-banner::after {
    content: "";
    position: absolute;
    inset: auto 0 0;
    height: 42%;
    background: linear-gradient(
        180deg,
        rgba(255,255,255,0) 0%,
        rgba(255,255,255,0.12) 45%,
        rgba(255,255,255,0.32) 100%
    );
}

.ayat-cover-content {
    position: relative;
    margin-top: -72px;
    padding: 0 32px 40px;
}

.ayat-cover-logo-wrap {
    display: flex;
    justify-content: center;
    margin-bottom: 18px;
}

.ayat-cover-logo {
    width: 144px;
    height: 144px;
    border-radius: 50%;
    background: #ffffff;
    border: 8px solid #ffffff;
    overflow: hidden;
    box-shadow: 0 14px 35px rgba(18, 24, 15, 0.12);
}

.ayat-cover-logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.ayat-cover-copy {
    text-align: center;
    max-width: 860px;
    margin: 0 auto;
}

.ayat-home-eyebrow {
    display: inline-block;
    margin-bottom: 10px;
    font-size: 13px;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: #87906f;
    font-weight: 700;
}

.ayat-home-title {
    margin: 0;
    font-size: clamp(30px, 4vw, 52px);
    line-height: 1.12;
    letter-spacing: -0.02em;
    font-weight: 800;
    color: #1f241b;
}

.ayat-home-text {
    max-width: 760px;
    margin: 16px auto 0;
    font-size: 18px;
    line-height: 1.8;
    color: #5b6352;
}

.ayat-home-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px;
    margin-top: 28px;
}

.ayat-home-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 0 24px;
    border-radius: 999px;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    transition: .25s ease;
}

.ayat-home-btn-primary {
    background: #a4b61f;
    color: #1f241b;
    border: 1px solid #a4b61f;
}

.ayat-home-btn-primary:hover {
    transform: translateY(-1px);
    background: #98aa1d;
    border-color: #98aa1d;
}

.ayat-home-btn-secondary {
    background: #ffffff;
    color: #1f241b;
    border: 1px solid rgba(31, 36, 27, 0.14);
}

.ayat-home-btn-secondary:hover {
    transform: translateY(-1px);
    border-color: rgba(31, 36, 27, 0.28);
    background: #fbfbf8;
}

html[dir="rtl"] .ayat-home-title,
html[dir="rtl"] .ayat-home-text {
    letter-spacing: 0;
}

@media (max-width: 991px) {
    .ayat-cover-content {
        margin-top: -58px;
        padding: 0 22px 30px;
    }

    .ayat-cover-logo {
        width: 124px;
        height: 124px;
        border-width: 7px;
    }

    .ayat-home-text {
        font-size: 16px;
        line-height: 1.75;
    }
}

@media (max-width: 640px) {
    .ayat-home-hero {
        padding: 18px 0 36px;
    }

    .ayat-cover-card {
        border-radius: 22px;
    }

    .ayat-cover-banner {
        height: 200px;
    }

    .ayat-cover-content {
        margin-top: -52px;
        padding: 0 16px 24px;
    }

    .ayat-cover-logo {
        width: 110px;
        height: 110px;
    }

    .ayat-home-title {
        font-size: 28px;
    }

    .ayat-home-text {
        font-size: 15px;
    }

    .ayat-home-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .ayat-home-btn {
        width: 100%;
    }
}

/* ==================================================
   AYAT HOME STATS SECTION
================================================== */

.ayat-stats-section {
    padding: 8px 0 68px;
}

.ayat-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}

.ayat-stat-card {
    position: relative;
    background: linear-gradient(
        180deg,
        #ffffff 0%,
        #fbfbf7 100%
    );
    border: 1px solid rgba(36, 42, 29, 0.08);
    border-radius: 24px;
    padding: 26px 22px 24px;
    text-align: center;
    box-shadow: 0 18px 50px rgba(20, 24, 15, 0.05);
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.ayat-stat-card::before {
    content: "";
    position: absolute;
    inset: 0 auto auto 0;
    width: 100%;
    height: 4px;
    border-radius: 24px 24px 0 0;
    background: linear-gradient(90deg, #a4b61f 0%, #d6d9bd 62%, #c78981 100%);
}

.ayat-stat-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 22px 55px rgba(20, 24, 15, 0.08);
    border-color: rgba(164, 182, 31, 0.20);
}

.ayat-stat-number {
    font-size: clamp(30px, 3vw, 42px);
    line-height: 1;
    font-weight: 800;
    letter-spacing: -0.03em;
    color: #1f241b;
    margin-bottom: 12px;
}

.ayat-stat-label {
    font-size: 15px;
    line-height: 1.7;
    font-weight: 600;
    color: #67705d;
}

html[dir="rtl"] .ayat-stat-number,
html[dir="rtl"] .ayat-stat-label {
    letter-spacing: 0;
}

@media (max-width: 991px) {
    .ayat-stats-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 640px) {
    .ayat-stats-section {
        padding: 6px 0 40px;
    }

    .ayat-stats-grid {
        display: flex;
        gap: 12px;
        overflow-x: auto;
        overflow-y: hidden;
        padding-bottom: 6px;
        scroll-snap-type: x proximity;
        -webkit-overflow-scrolling: touch;
    }

    .ayat-stats-grid::-webkit-scrollbar {
        height: 6px;
    }

    .ayat-stats-grid::-webkit-scrollbar-thumb {
        background: rgba(164, 182, 31, 0.35);
        border-radius: 999px;
    }

    .ayat-stat-card {
        flex: 0 0 220px;
        min-width: 220px;
        scroll-snap-align: start;
        padding: 22px 18px 20px;
        border-radius: 20px;
    }

    .ayat-stat-number {
        font-size: 30px;
    }

    .ayat-stat-label {
        font-size: 14px;
    }
}

/* ==================================================
   AYAT MOBILE STATS - FORCE ONE LINE
================================================== */

@media (max-width: 640px) {

    .ayat-stats-section .ayat-container {
        padding-left: 12px;
        padding-right: 12px;
    }

    .ayat-stats-grid {
        display: grid !important;
        grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
        gap: 8px !important;
        overflow: visible !important;
        overflow-x: visible !important;
        overflow-y: visible !important;
        padding-bottom: 0 !important;
        scroll-snap-type: none !important;
    }

    .ayat-stat-card {
        min-width: 0 !important;
        flex: unset !important;
        padding: 14px 8px 13px !important;
        border-radius: 16px !important;
    }

    .ayat-stat-card::before {
        height: 3px !important;
        border-radius: 16px 16px 0 0 !important;
    }

    .ayat-stat-number {
        font-size: 20px !important;
        line-height: 1 !important;
        margin-bottom: 7px !important;
    }

    .ayat-stat-label {
        font-size: 11px !important;
        line-height: 1.35 !important;
        font-weight: 700 !important;
    }
}

@media (max-width: 420px) {

    .ayat-stats-section .ayat-container {
        padding-left: 10px;
        padding-right: 10px;
    }

    .ayat-stats-grid {
        gap: 6px !important;
    }

    .ayat-stat-card {
        padding: 12px 6px 11px !important;
        border-radius: 14px !important;
    }

    .ayat-stat-number {
        font-size: 18px !important;
        margin-bottom: 6px !important;
    }

    .ayat-stat-label {
        font-size: 10px !important;
        line-height: 1.3 !important;
    }
}

/* ==================================================
   AYAT HOME - REMOVE DIVIDER + BRAND TYPOGRAPHY
================================================== */

:root {
    --ayat-brand: #a4b61f;
    --ayat-brand-dark: #4f5e1b;
}

/* ------------------------------------------
   REMOVE UNWANTED DIVIDER / SEPARATOR
------------------------------------------ */

.ayat-divider,
.ayat-home-divider,
.ayat-section-divider,
.ayat-hero-divider,
.ayat-stats-divider,
hr.ayat-divider,
hr.ayat-home-divider,
hr.ayat-section-divider {
    display: none !important;
}

.ayat-hero-section,
.ayat-hero-card,
.ayat-stats-section,
.ayat-stats-wrap,
.ayat-home-stats,
.ayat-home-main,
.ayat-home-content {
    border-top: 0 !important;
    border-bottom: 0 !important;
    box-shadow: none !important;
}

.ayat-hero-section::before,
.ayat-hero-section::after,
.ayat-hero-card::before,
.ayat-hero-card::after,
.ayat-stats-section::before,
.ayat-stats-section::after,
.ayat-stats-grid::before,
.ayat-stats-grid::after {
    content: none !important;
    display: none !important;
    border: 0 !important;
    box-shadow: none !important;
}

/* تقليل الفراغ لو كان الفاصل واخد مسافة */
.ayat-stats-section {
    margin-top: 12px !important;
    padding-top: 0 !important;
}

@media (max-width: 640px) {
    .ayat-stats-section {
        margin-top: 8px !important;
        padding-top: 0 !important;
    }
}

/* ------------------------------------------
   BRAND TYPOGRAPHY
------------------------------------------ */

/* العناوين الكبيرة */
.ayat-hero-title,
.ayat-section-title,
.ayat-page-title,
.ayat-stat-number,
.home h1,
.home h2,
.home h3 {
    color: var(--ayat-brand-dark) !important;
}

/* الكلام الصغير / الوصف */
.ayat-hero-subtitle,
.ayat-hero-description,
.ayat-hero-text,
.ayat-section-subtitle,
.ayat-section-description,
.ayat-section-lead,
.ayat-stat-label,
.home p,
.home .entry-content,
.home .wp-block-paragraph {
    color: var(--ayat-brand) !important;
}

/* تحسين الإحصائيات */
.ayat-stat-card {
    background: #ffffff !important;
    border: 1px solid rgba(164, 182, 31, 0.12) !important;
}

.ayat-stat-number {
    letter-spacing: -0.02em;
}

.ayat-stat-label {
    font-weight: 600 !important;
}

/* الهيرو */
.ayat-hero-title {
    letter-spacing: -0.03em;
}

.ayat-hero-subtitle,
.ayat-hero-description {
    font-weight: 500;
}

/* لو فيه نص أسود داخل محتوى الهوم */
.home .ayat-hero-section p,
.home .ayat-stats-section p {
    color: var(--ayat-brand) !important;
}

/* ==================================================
   AYAT - REMOVE GAP BETWEEN HERO AND STATS
================================================== */

.ayat-home-hero {
    padding-bottom: 0 !important;
    margin-bottom: 0 !important;
}

.ayat-home-hero + .ayat-stats-section,
.ayat-stats-section {
    margin-top: 0 !important;
    padding-top: 0 !important;
}

.ayat-cover-card {
    margin-bottom: 0 !important;
}

@media (max-width: 640px) {

    .ayat-home-hero {
        padding-bottom: 0 !important;
        margin-bottom: 0 !important;
    }

    .ayat-home-hero + .ayat-stats-section,
    .ayat-stats-section {
        margin-top: 0 !important;
        padding-top: 0 !important;
    }
}
