/**
 * AIDetector Blog - Bankrate-Style Post Layout
 */

/* ==========================================================================
   POST HERO SECTION - Extends down with content overlap
   ========================================================================== */

.aidetector-post-hero {
    background-color: #1e3a5f;
    padding: 20px 0 80px 0; /* Extra bottom padding for content overlap */
    margin-bottom: -80px; /* Pull content up into hero */
    position: relative;
    z-index: 1;
}

.aidetector-post-hero .hero-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

@media (min-width: 768px) {
    .aidetector-post-hero .hero-container {
        padding: 0 32px;
    }
}

@media (min-width: 1024px) {
    .aidetector-post-hero .hero-container {
        padding: 0 48px;
    }
}

@media (min-width: 1400px) {
    .aidetector-post-hero .hero-container {
        padding: 0 60px;
    }
}

/* Breadcrumbs */
.aidetector-post-hero .hero-breadcrumbs {
    margin-bottom: 16px;
}

.aidetector-post-hero .hero-breadcrumbs,
.aidetector-post-hero .hero-breadcrumbs a,
.aidetector-post-hero .hero-breadcrumbs span {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
}

.aidetector-post-hero .hero-breadcrumbs a:hover {
    color: #ffffff;
    text-decoration: underline;
}

/* Hero Title */
.aidetector-post-hero .hero-title {
    color: #ffffff;
    font-size: 28px;
    font-weight: 700;
    line-height: 1.2;
    margin: 0 0 20px 0;
    padding: 0;
    max-width: 800px;
}

@media (min-width: 768px) {
    .aidetector-post-hero .hero-title {
        font-size: 36px;
    }
}

@media (min-width: 1024px) {
    .aidetector-post-hero .hero-title {
        font-size: 42px;
        margin-bottom: 24px;
    }
}

/* Hero Meta - Bankrate style with avatar */
.aidetector-post-hero .hero-meta {
    margin-top: 0;
}

.aidetector-post-hero .hero-meta-inner {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #ffffff;
    font-size: 14px;
}

.aidetector-post-hero .meta-avatar {
    flex-shrink: 0;
}

.aidetector-post-hero .meta-avatar .author-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.aidetector-post-hero .meta-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.aidetector-post-hero .meta-byline {
    color: rgba(255, 255, 255, 0.9);
}

.aidetector-post-hero .meta-byline a {
    color: #ffffff;
    text-decoration: underline;
}

.aidetector-post-hero .meta-byline a:hover {
    text-decoration: none;
}

.aidetector-post-hero .meta-date-reading {
    color: rgba(255, 255, 255, 0.7);
    font-size: 13px;
}

.aidetector-post-hero .meta-separator {
    margin: 0 8px;
    opacity: 0.5;
}

/* ==========================================================================
   BREADCRUMBS PLUGIN STYLING
   ========================================================================== */

.wpapps-breadcrumbs {
    background-color: transparent !important;
    padding: 0 !important;
    margin: 0 !important;
    font-size: inherit !important;
}

.wpapps-breadcrumbs li {
    display: inline !important;
}

/* ==========================================================================
   SINGLE POST LAYOUT WITH SIDEBAR
   ========================================================================== */

/* Hide GeneratePress default sidebar - we use our custom one */
.has-post-sidebar #right-sidebar,
.has-post-sidebar #left-sidebar,
.has-post-sidebar .sidebar.is-right-sidebar,
.has-post-sidebar .sidebar.is-left-sidebar {
    display: none !important;
}

/* Reset overflow on all parent containers so rounded corners show */
.single-post #page,
.page #page,
.single-post .site,
.page .site {
    overflow: visible !important;
}

.single-post .site-content,
.page .site-content {
    background-color: transparent !important; /* Transparent so hero shows through */
    position: relative;
    z-index: 2;
    overflow: visible !important;
    padding-top: 0 !important; /* No top padding - allow overlap into hero */
}

/* Gray background starts below the overlap area */
.single-post,
.page:not(.page-template-page-builder) {
    background-color: #f2f3f6;
}

/* The content-area wrapper needs to not constrain the grid */
.has-post-sidebar .content-area,
.has-post-sidebar #primary {
    width: 100% !important;
    max-width: none !important;
    margin: 0 !important;
    padding: 0 !important;
    float: none !important;
}

/* Site content wrapper - two column grid */
.has-post-sidebar .site-content {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px 40px 24px !important; /* NO top padding - content overlaps into hero */
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 32px !important;
    align-items: start !important;
    overflow: visible !important;
}

@media (min-width: 768px) {
    .has-post-sidebar .site-content {
        padding: 0 32px 40px 32px !important;
    }
}

@media (min-width: 1024px) {
    .has-post-sidebar .site-content {
        grid-template-columns: 1fr 340px !important;
        padding: 0 48px 60px 48px !important;
        gap: 40px !important;
    }
}

@media (min-width: 1400px) {
    .has-post-sidebar .site-content {
        padding: 0 60px 60px 60px !important;
    }
}

/* Grid children placement */
.has-post-sidebar .content-area,
.has-post-sidebar #primary {
    grid-column: 1 !important;
    grid-row: 1 !important;
}

.has-post-sidebar .aidetector-post-sidebar {
    grid-column: 1 !important;
    grid-row: 2 !important;
}

@media (min-width: 1024px) {
    .has-post-sidebar .aidetector-post-sidebar {
        grid-column: 2 !important;
        grid-row: 1 !important;
    }
}

/* Ensure both columns start at same level */
.has-post-sidebar .site-main,
.has-post-sidebar .aidetector-post-sidebar {
    margin-top: 0;
    overflow: visible !important;
}

.has-post-sidebar .site-main {
    max-width: none;
    padding: 0;
    margin: 0;
    overflow: visible !important;
}

/* Reset any GeneratePress main content wrapper styles */
.single-post main.site-main,
.page main.site-main {
    overflow: visible !important;
    background: transparent !important;
}

/* Without sidebar */
.single-post:not(.has-post-sidebar) .site-main,
.page:not(.has-post-sidebar):not(.page-template-page-builder) .site-main {
    max-width: 860px;
    margin: 0 auto;
    padding: 0 16px 40px 16px;
}

/* ==========================================================================
   ARTICLE CARD - White card that overlaps hero
   Override style.css nested container styling
   ========================================================================== */

/* The article is the card - apply all card styling here */
.single-post article.post,
.page article.page {
    background-color: #ffffff !important;
    border-radius: 16px !important;
    border: none !important;
    box-shadow: 0 10px 40px -10px rgba(0, 0, 0, 0.15), 0 4px 12px -2px rgba(0, 0, 0, 0.08) !important;
    overflow: visible !important;
    position: relative;
    z-index: 2;
}

.single-post article.post:hover,
.page article.page:hover {
    box-shadow: 0 10px 40px -10px rgba(0, 0, 0, 0.15), 0 4px 12px -2px rgba(0, 0, 0, 0.08) !important;
    transform: none !important;
}

/* Reset inside-article - NO nested box styling */
.single-post .inside-article,
.page .inside-article {
    background-color: transparent !important;
    border: none !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    padding: 5px 24px 32px 24px !important;
}

@media (min-width: 768px) {
    .single-post .inside-article,
    .page .inside-article {
        padding: 5px 40px 40px 40px !important;
    }
}

@media (min-width: 1024px) {
    .single-post .inside-article,
    .page .inside-article {
        padding: 5px 48px 48px 48px !important;
    }
}

/* ==========================================================================
   SIDEBAR - Sticky with featured image
   Aligned with top of article card (not internal content)
   ========================================================================== */

.aidetector-post-sidebar {
    position: sticky;
    top: 80px;
    align-self: start;
    margin-top: 20px;
    /* No background or border on sidebar container itself */
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
}

@media (max-width: 1023px) {
    .aidetector-post-sidebar {
        position: static;
    }
}

/* Featured Image in Sidebar - Clean style like Bankrate, NO box container */
.sidebar-featured-image {
    margin-bottom: 20px;
    border-radius: 12px;
    overflow: hidden;
    background: transparent !important;
    border: none !important;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
    padding: 0 !important;
}

.sidebar-featured-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 12px 12px 0 0;
}

/* Caption below image - no box, just text */
.sidebar-featured-image .sidebar-image-caption {
    background-color: transparent !important;
    padding: 10px 0 0 0 !important;
    font-size: 12px;
    color: #6b7280;
    margin: 0;
    text-align: left;
    border: none !important;
    line-height: 1.5;
    font-style: italic;
}

/* Sidebar widgets container - no box styling */
.sidebar-widgets {
    display: flex;
    flex-direction: column;
    gap: 20px;
    background: transparent !important;
    border: none !important;
    padding: 0 !important;
}

/* General widget styling - white card */
.sidebar-widget {
    background-color: #ffffff !important;
    border-radius: 12px !important;
    border: 1px solid #e2e8f0 !important;
    padding: 0 !important;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08) !important;
    overflow: hidden;
}

/* ==========================================================================
   TABLE OF CONTENTS WIDGET
   ========================================================================== */

.toc-widget,
.widget_toc,
.ez-toc-widget-container,
.sidebar-widget.widget_toc {
    background-color: #ffffff !important;
    border-radius: 12px !important;
    border: 1px solid #e2e8f0 !important;
    padding: 0 !important;
    overflow: hidden !important;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08) !important;
}

.widget_toc .widget-title,
.ez-toc-widget-container .ez-toc-title {
    background-color: #f8fafc !important;
    padding: 16px 20px !important;
    margin: 0 !important;
    font-size: 16px !important;
    font-weight: 600 !important;
    color: #111827 !important;
    border-bottom: 1px solid #e2e8f0 !important;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.widget_toc ul,
.ez-toc-widget-container ul {
    padding: 16px 20px !important;
    list-style: none !important;
    margin: 0 !important;
    max-height: 400px;
    overflow-y: auto;
    background: transparent !important;
}

.widget_toc li,
.ez-toc-widget-container li {
    margin-bottom: 4px !important;
    padding: 0 !important;
    background: transparent !important;
    border: none !important;
}

.widget_toc a,
.ez-toc-widget-container a {
    display: block;
    padding: 8px 12px !important;
    color: #6b7280 !important;
    font-size: 14px !important;
    text-decoration: none !important;
    border-radius: 6px;
    border-left: 3px solid transparent;
    transition: all 0.15s ease;
    background: transparent !important;
}

.widget_toc a:hover,
.ez-toc-widget-container a:hover {
    color: #155dfc !important;
    background-color: rgba(21, 93, 252, 0.08) !important;
    border-left-color: #155dfc !important;
}

/* Nested TOC items */
.widget_toc ul ul,
.ez-toc-widget-container ul ul {
    margin-left: 16px !important;
    padding: 4px 0 0 0 !important;
}

.widget_toc ul ul a,
.ez-toc-widget-container ul ul a {
    font-size: 13px !important;
    padding: 6px 12px !important;
}

/* ==========================================================================
   HEADER - Match AIDetector.com main site
   ========================================================================== */

.site-header {
    background-color: #ffffff !important;
    border-bottom: 1px solid var(--aid-border-light, #e2e8f0);
    position: sticky;
    top: 0;
    z-index: 100;
}

.site-header,
.main-navigation {
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05) !important;
}

.inside-header {
    max-width: 1280px;
    margin: 0 auto;
    padding: 8px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

@media (min-width: 768px) {
    .inside-header {
        padding: 8px 32px;
    }
}

@media (min-width: 1024px) {
    .inside-header {
        padding: 8px 48px;
    }
}

@media (min-width: 1400px) {
    .inside-header {
        padding: 8px 60px;
    }
}

/* Logo - no extra margins to maintain alignment with hero content */
.site-logo {
    margin: 0;
    padding: 0;
}

.site-logo a {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.site-logo img,
.site-logo svg,
.custom-logo {
    height: 24px;
    width: auto;
}

/* Navigation - dark text on white header */
.main-navigation {
    font-family: var(--aid-font-sans);
}

.main-navigation .main-nav ul {
    display: flex;
    align-items: center;
    gap: 4px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.main-navigation .main-nav > ul > li > a {
    font-size: 14px;
    font-weight: 500;
    color: var(--aid-text-body, #374151);
    padding: 8px 16px;
    border-radius: 6px;
    text-decoration: none;
    transition: all 0.15s ease;
}

.main-navigation .main-nav > ul > li > a:hover {
    color: var(--aid-primary, #155dfc);
    background-color: var(--aid-primary-light, rgba(21, 93, 252, 0.1));
}

.main-navigation .main-nav > ul > li.current-menu-item > a {
    color: var(--aid-primary, #155dfc);
    font-weight: 600;
}

.menu-toggle {
    display: none;
    background: transparent !important;
    border: none !important;
    padding: 8px !important;
    cursor: pointer;
    color: var(--aid-text-body, #374151);
}

@media (max-width: 767px) {
    .menu-toggle {
        display: block;
    }
    .main-navigation .main-nav {
        display: none;
    }
}

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

.site-footer {
    background-color: #ffffff;
    border-top: 1px solid #e2e8f0;
}

.inside-site-info {
    max-width: 1280px;
    margin: 0 auto;
    padding: 24px;
}

@media (min-width: 768px) {
    .inside-site-info {
        padding: 24px 32px;
    }
}

@media (min-width: 1024px) {
    .inside-site-info {
        padding: 24px 48px;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }
}

@media (min-width: 1400px) {
    .inside-site-info {
        padding: 24px 60px;
    }
}

.site-info {
    font-size: 14px;
    color: #6b7280;
}

/* ==========================================================================
   CONTENT TYPOGRAPHY
   ========================================================================== */

.single-post .entry-content,
.page .entry-content {
    font-size: 16px;
    line-height: 1.75;
    color: #374151;
}

.single-post .entry-content h2 {
    font-size: 24px;
    font-weight: 600;
    margin-top: 32px;
    margin-bottom: 16px;
    color: #111827;
}

.single-post .entry-content h3 {
    font-size: 20px;
    font-weight: 600;
    margin-top: 24px;
    margin-bottom: 12px;
    color: #111827;
}

.single-post .entry-content p {
    margin-bottom: 24px;
}

.single-post .entry-content a {
    color: #155dfc;
    text-decoration: underline;
}

.single-post .entry-content a:hover {
    color: #1e40af;
}

/* ==========================================================================
   RESPONSIVE ADJUSTMENTS
   ========================================================================== */

@media (max-width: 767px) {
    .aidetector-post-hero {
        padding: 24px 0 100px 0;
        margin-bottom: -60px;
    }

    .aidetector-post-hero .hero-title {
        font-size: 24px;
        margin-bottom: 16px;
    }

    .aidetector-post-hero .hero-meta-inner {
        flex-direction: row;
        align-items: center;
    }

    .aidetector-post-hero .meta-avatar .author-avatar {
        width: 40px;
        height: 40px;
    }
}

/* ==========================================================================
   LOGO TEXT STYLING - White header with dark text
   ========================================================================== */

.site-logo .site-title-text {
    font-family: "Montserrat", sans-serif;
    font-size: 20px;
    font-weight: 700;
    text-decoration: none;
    display: flex;
    align-items: center;
}

.site-logo .logo-ai {
    color: #155dfc; /* Brand blue */
}

.site-logo .logo-detector {
    color: #111827; /* Dark text for white header */
}

/* ==========================================================================
   Wagih
   ========================================================================== */

.site-logo
{
	padding-left:0px!important;
	width: 40%!important;
}
.main-navigation
{
	width:60%!important;
}
.menu li a
{
	display: inline!important;
}
.current-menu-button a
{
	display: inline!important;
    color: white!important;
    background-color: #155dfc!important;
}
.current-menu-button a:hover
{
    background-color: color-mix(in oklab, #155dfc 75%, transparent)!important;
}

.inside-header
{
	justify-content: flex-start!important;
	height: 65px;
}

@media (min-width: 768px) {
    .inside-header {
        padding: 0 32px 0px 32px !important;
    }
	
}


@media (max-width: 1024px)
{
	.site-logo
	{
	  width: 30% !important;
	}
	.main-navigation
	{
		width:68%!important;
	}
}

@media (min-width: 1024px) {
    .inside-header {
        padding: 0 48px 0px 48px !important;
    }
}
@media (min-width: 1400px) {
     .inside-header {
        padding: 0 60px 0px 60px !important;
    }
}

@media (max-width: 768px) {
    .site-logo
	{
		width: auto !important;
	}
	.inside-header
	{
		height: auto;
	}
	.has-post-sidebar .aidetector-post-sidebar {
        grid-column: 1 !important;
        grid-row: 1 !important;
    }
	.has-post-sidebar .content-area, .has-post-sidebar #primary 
	{
    	grid-column: 1 !important;
    	grid-row: 2 !important;
	}
	.has-post-sidebar .site-content
	{
		gap:0px!important;
	}
}

/* ==========================================================================
   AUTHOR ARCHIVE PAGE
   ========================================================================== */

/* Hide default GeneratePress author page header - we use custom hero instead */
.author .page-header,
.author .archive-header {
    display: none !important;
}

/* Hide default sidebar on author pages */
.author #right-sidebar,
.author .sidebar.is-right-sidebar {
    display: none !important;
}

/* Author page hero section */
.author .aidetector-post-hero,
.aidetector-post-hero.author-hero {
    padding: 30px 0 100px 0;
    margin-bottom: -80px;
}

/* Author hero content layout */
.author-hero-content {
    display: flex;
    align-items: flex-start;
    gap: 24px;
    margin-top: 20px;
}

.author-hero-avatar .author-avatar-large {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    border: 3px solid rgba(255, 255, 255, 0.3);
}

.author-hero-info {
    flex: 1;
}

.author-hero-info .hero-title {
    margin-bottom: 12px;
}

.author-hero-bio {
    color: rgba(255, 255, 255, 0.85);
    font-size: 16px;
    line-height: 1.6;
    margin: 0 0 12px 0;
    max-width: 600px;
}

.author-hero-meta {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
}

.author-hero-meta .post-count {
    background-color: rgba(255, 255, 255, 0.15);
    padding: 6px 12px;
    border-radius: 20px;
    display: inline-block;
}

@media (max-width: 767px) {
    .author-hero-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .author-hero-avatar .author-avatar-large {
        width: 80px;
        height: 80px;
    }

    .author-hero-bio {
        font-size: 15px;
    }
}

/* Author page content area - no sidebar, full width */
.author .site-content {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px 40px 24px !important;
    display: block !important;
    background-color: transparent !important;
    position: relative;
    z-index: 2;
}

@media (min-width: 768px) {
    .author .site-content {
        padding: 0 32px 40px 32px !important;
    }
}

@media (min-width: 1024px) {
    .author .site-content {
        padding: 0 48px 60px 48px !important;
    }
}

@media (min-width: 1400px) {
    .author .site-content {
        padding: 0 60px 60px 60px !important;
    }
}

/* Author page content-area full width (no sidebar) */
.author .content-area,
.author #primary {
    width: 100% !important;
    max-width: 100% !important;
    float: none !important;
}

/* Author page background */
.author {
    background-color: #f2f3f6;
}

/* Author page main content - full width */
.author .site-main {
    max-width: 100% !important;
    width: 100% !important;
    margin: 0;
    padding: 20px 0 0 0;
}

/* Author bio card at top */
.author-info,
.author-box {
    background-color: #ffffff;
    border-radius: 16px;
    box-shadow: 0 10px 40px -10px rgba(0, 0, 0, 0.15), 0 4px 12px -2px rgba(0, 0, 0, 0.08);
    padding: 32px;
    margin-bottom: 32px;
    display: flex;
    gap: 24px;
    align-items: flex-start;
}

.author-info .author-avatar,
.author-box .author-avatar {
    flex-shrink: 0;
}

.author-info .author-avatar img,
.author-box .author-avatar img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    border: 3px solid #e2e8f0;
}

.author-info .author-description,
.author-box .author-description {
    flex: 1;
}

.author-info .author-title,
.author-box .author-title,
.author-info h1,
.author-box h1 {
    font-size: 24px;
    font-weight: 700;
    color: #111827;
    margin: 0 0 8px 0;
}

.author-info .author-bio,
.author-box .author-bio,
.author-info p,
.author-box p {
    font-size: 16px;
    line-height: 1.6;
    color: #6b7280;
    margin: 0;
}

/* Author posts grid */
.author .site-main > article,
.author .posts-container article {
    background-color: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    margin-bottom: 24px;
    overflow: hidden;
    transition: box-shadow 0.2s ease, transform 0.2s ease;
    width: 100% !important;
    max-width: 100% !important;
}

.author .site-main > article:hover,
.author .posts-container article:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    transform: translateY(-2px);
}

.author .site-main > article .inside-article,
.author .posts-container article .inside-article {
    padding: 24px !important;
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
}

.author .site-main > article .entry-header,
.author .posts-container article .entry-header {
    margin-bottom: 12px;
}

.author .site-main > article .entry-title,
.author .posts-container article .entry-title {
    font-size: 20px;
    font-weight: 600;
    margin: 0 0 8px 0;
}

.author .site-main > article .entry-title a,
.author .posts-container article .entry-title a {
    color: #111827;
    text-decoration: none;
}

.author .site-main > article .entry-title a:hover,
.author .posts-container article .entry-title a:hover {
    color: #155dfc;
}

.author .site-main > article .entry-meta,
.author .posts-container article .entry-meta {
    font-size: 14px;
    color: #6b7280;
}

.author .site-main > article .entry-summary,
.author .posts-container article .entry-summary {
    font-size: 15px;
    line-height: 1.6;
    color: #374151;
}

/* Page title / Archive title for author pages */
.author .page-header,
.author .archive-header {
    margin-bottom: 24px;
}

.author .page-title,
.author .archive-title {
    font-size: 14px;
    font-weight: 500;
    color: #6b7280;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin: 0;
}

/* Pagination on author page */
.author .pagination,
.author .nav-links {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 32px;
}

.author .pagination a,
.author .nav-links a,
.author .pagination span,
.author .nav-links span {
    padding: 10px 16px;
    background-color: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    color: #374151;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.15s ease;
}

.author .pagination a:hover,
.author .nav-links a:hover {
    background-color: #155dfc;
    border-color: #155dfc;
    color: #ffffff;
}

.author .pagination .current,
.author .nav-links .current {
    background-color: #155dfc;
    border-color: #155dfc;
    color: #ffffff;
}

/* Responsive author page */
@media (max-width: 767px) {
    .author-info,
    .author-box {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }

    .author-info .author-avatar img,
    .author-box .author-avatar img {
        width: 80px;
        height: 80px;
    }
}

