/**
 * Blog Styling
 * FemNaturBalance - Online-Sprechstunde für Frauengesundheit & Hormonbalance
 */

/* ==========================================
   Blog Hero Section
   ========================================== */

.blog-hero {
    position: relative;
    height: 500px;
    overflow: hidden;
}

.blog-hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.blog-hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 65%;
}

.blog-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to bottom,
        rgba(44, 36, 22, 0.45) 0%,
        rgba(44, 36, 22, 0.65) 100%
    );
}

.blog-hero-content {
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    z-index: 2;
}

.blog-hero-title {
    font-family: var(--font-primary);
    font-size: clamp(3rem, 6vw, 4.5rem);
    font-weight: 400;
    color: var(--color-white);
    margin: 0 0 1rem;
    letter-spacing: -0.02em;
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.blog-hero-subtitle {
    font-size: clamp(1.125rem, 2.5vw, 1.5rem);
    color: var(--color-white);
    margin: 0;
    font-weight: 300;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

/* ==========================================
   Blog Intro
   ========================================== */

.blog-intro {
    padding: 4rem 0;
    background: var(--color-white);
}

.blog-intro-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.blog-intro-content p {
    font-size: 1.25rem;
    line-height: 1.8;
    color: var(--color-text);
    margin: 0;
}

/* ==========================================
   Blog Posts Grid
   ========================================== */

.blog-posts {
    padding: 4rem 0 6rem;
    background: linear-gradient(to bottom, #FCF4EE 0%, #F8F4EE 100%);
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 2.5rem;
    max-width: var(--container-width);
    margin: 0 auto;
}

/* ==========================================
   Blog Card
   ========================================== */

.blog-card {
    background: var(--color-white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(44, 36, 22, 0.08);
    border: 1px solid rgba(184, 153, 138, 0.08);
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
}

.blog-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(44, 36, 22, 0.15);
    border-color: rgba(184, 153, 138, 0.3);
}

/* Card Link Wrapper - wraps entire card */
.blog-card-link {
    display: block;
    text-decoration: none;
    color: inherit;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.blog-card-image {
    width: 100%;
    height: 320px;
    overflow: hidden;
    background: linear-gradient(135deg, #FCF4EE 0%, #F8F4EE 100%);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.blog-card-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.blog-card:hover .blog-card-image img {
    transform: scale(1.08);
}

.blog-card-content {
    padding: 2rem 2rem 2.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.blog-card-meta {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.25rem;
    font-size: 0.875rem;
}

.blog-card-category {
    display: inline-block;
    padding: 0.375rem 0.875rem;
    background: linear-gradient(135deg, rgba(184, 153, 138, 0.12) 0%, rgba(184, 153, 138, 0.08) 100%);
    color: var(--color-primary);
    border-radius: 20px;
    font-size: 0.8125rem;
    font-weight: 600;
    letter-spacing: 0.02em;
}

.blog-card-date {
    color: var(--color-text-light);
    font-weight: 400;
}

.blog-card-title {
    font-family: var(--font-primary);
    font-size: 1.625rem;
    font-weight: 500;
    color: var(--color-text);
    margin: 0 0 1rem;
    line-height: 1.35;
    letter-spacing: -0.01em;
    transition: color 0.3s ease;
}

.blog-card:hover .blog-card-title {
    color: var(--color-primary);
}

.blog-card-excerpt {
    font-size: 1.0625rem;
    line-height: 1.75;
    color: var(--color-text-light);
    margin: 0 0 auto;
    flex-grow: 1;
}

.blog-card-footer {
    margin-top: 1.75rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(184, 153, 138, 0.15);
}

.blog-card-read-more {
    display: inline-flex;
    align-items: center;
    gap: 0.625rem;
    color: var(--color-primary);
    font-weight: 600;
    font-size: 0.9375rem;
    letter-spacing: 0.02em;
    transition: all 0.3s ease;
}

.blog-card-read-more svg {
    width: 18px;
    height: 18px;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.blog-card:hover .blog-card-read-more {
    color: var(--color-text);
    gap: 0.875rem;
}

.blog-card:hover .blog-card-read-more svg {
    transform: translateX(4px);
}

/* ==========================================
   Blog Card Placeholder (für "Bald verfügbar")
   ========================================== */

.blog-card-placeholder {
    padding: 3rem 2rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    min-height: 400px;
    justify-content: center;
}

.blog-card-placeholder svg {
    width: 80px;
    height: 80px;
    color: var(--color-primary);
    opacity: 0.3;
}

.blog-card-placeholder h3 {
    font-family: var(--font-primary);
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--color-text);
    margin: 0;
}

.blog-card-placeholder p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--color-text-light);
    margin: 0;
    max-width: 300px;
}

/* ==========================================
   CTA Section
   ========================================== */

.cta-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--color-primary) 0%, #9B7E72 100%);
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.cta-title {
    font-family: var(--font-primary);
    font-size: clamp(2rem, 4vw, 2.5rem);
    font-weight: 400;
    color: var(--color-white);
    margin: 0 0 1rem;
    letter-spacing: -0.02em;
}

.cta-text {
    font-size: 1.25rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.95);
    margin: 0 0 2rem;
}

.cta-section .btn-primary {
    background: var(--color-white);
    color: var(--color-primary);
}

.cta-section .btn-primary:hover {
    background: #FCF4EE;
    color: var(--color-text);
}

/* ==========================================
   Responsive Design
   ========================================== */

@media (max-width: 968px) {
    .blog-hero {
        height: 400px;
    }

    .blog-grid {
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
        gap: 2rem;
    }

    .blog-intro {
        padding: 3rem 0;
    }

    .blog-posts {
        padding: 3rem 0 4rem;
    }
}

@media (max-width: 768px) {
    .blog-hero {
        height: 350px;
    }

    .blog-hero-title {
        font-size: 2.5rem;
    }

    .blog-hero-subtitle {
        font-size: 1.125rem;
    }

    .blog-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .blog-intro-content p {
        font-size: 1.125rem;
    }

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

    .blog-intro {
        padding: 2rem 0;
    }

    .blog-posts {
        padding: 2rem 0 3rem;
    }

    .cta-section {
        padding: 3rem 0;
    }
}

@media (max-width: 480px) {
    .blog-hero {
        height: 300px;
    }

    .blog-card-image {
        height: 280px;
    }

    .blog-card-content {
        padding: 1.5rem 1.5rem 2rem;
    }

    .blog-card-title {
        font-size: 1.375rem;
    }

    .blog-card-excerpt {
        font-size: 1rem;
    }

    .blog-card-placeholder {
        min-height: 300px;
        padding: 2rem 1.5rem;
    }
}

/* ==========================================
   Individual Blog Post
   ========================================== */

.blog-post {
    background: var(--color-white);
}

/* Header Wrapper with Grid Layout */
.blog-post-header,
.blog-post-header-wrapper {
    padding: 5rem 0 3rem;
    background: linear-gradient(to bottom, #FCF4EE 0%, var(--color-white) 100%);
}

/* Breadcrumb */
.blog-post-breadcrumb {
    margin-bottom: 2rem;
}

.breadcrumb-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--color-text-light);
    text-decoration: none;
    font-size: 0.9375rem;
    transition: color 0.3s ease;
}

.breadcrumb-link svg {
    width: 20px;
    height: 20px;
}

.breadcrumb-link:hover {
    color: var(--color-primary);
}

.blog-post-header-grid {
    display: grid;
    grid-template-columns: 1fr 500px;
    gap: 4rem;
    align-items: center;
}

.blog-post-header-content {
    min-width: 0;
}

.blog-post-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.blog-back-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--color-text-light);
    text-decoration: none;
    font-size: 0.9375rem;
    transition: color 0.3s ease;
}

.blog-back-link svg {
    width: 20px;
    height: 20px;
}

.blog-back-link:hover {
    color: var(--color-primary);
}

.blog-post-info {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.blog-post-date {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9375rem;
    color: var(--color-text-light);
}

.blog-post-date svg {
    width: 18px;
    height: 18px;
    color: var(--color-primary);
}

.blog-post-category {
    display: inline-block;
    padding: 0.375rem 1rem;
    background: rgba(184, 153, 138, 0.15);
    color: var(--color-primary);
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 500;
}

.blog-post-title {
    font-family: var(--font-primary);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 400;
    color: var(--color-text);
    margin: 0;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.blog-post-lead {
    font-size: 1.25rem;
    line-height: 1.8;
    color: var(--color-text-light);
    margin: 1.5rem 0 0;
}

.blog-post-header-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.blog-post-header-image img {
    width: 100%;
    height: auto;
    max-width: 500px;
    max-height: 500px;
    object-fit: contain;
    border-radius: 16px;
    box-shadow: 0 8px 24px rgba(44, 36, 22, 0.1);
}

.blog-post-content,
.blog-post-content-section {
    padding: 2rem 0 4rem;
}

/* Content Layout with Sidebar */
.blog-post-layout,
.blog-content-wrapper {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 3rem;
    align-items: start;
    max-width: var(--container-width);
    margin: 0 auto;
}

/* Sidebar (Table of Contents) */
.blog-post-sidebar {
    position: sticky;
    top: 120px;
}

.blog-post-toc,
.table-of-contents {
    background: linear-gradient(135deg, #FCF4EE 0%, #F8F4EE 100%);
    border: 2px solid rgba(184, 153, 138, 0.2);
    border-radius: 16px;
    padding: 2rem;
}

.blog-post-toc-title,
.toc-title {
    font-family: var(--font-primary);
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--color-text);
    margin: 0 0 1.5rem;
}

.blog-post-toc-list,
.toc-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.blog-post-toc-list li,
.toc-list li {
    margin-bottom: 0.75rem;
}

.blog-post-toc-list li:last-child,
.toc-list li:last-child {
    margin-bottom: 0;
}

.blog-post-toc-list a,
.toc-link,
.toc-list a {
    display: block;
    color: var(--color-text-light);
    text-decoration: none;
    font-size: 1rem;
    line-height: 1.6;
    padding: 0.5rem 0.75rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
}

.blog-post-toc-list a:hover,
.toc-link:hover,
.toc-list a:hover {
    color: var(--color-primary);
    background: rgba(184, 153, 138, 0.08);
    border-left-color: var(--color-primary);
    padding-left: 1rem;
}

.blog-post-toc-list a.active,
.toc-link.active,
.toc-list a.active {
    color: var(--color-primary);
    background: rgba(184, 153, 138, 0.12);
    border-left-color: var(--color-primary);
    font-weight: 500;
}

/* Main Content Area */
.blog-post-main,
.blog-main-content {
    min-width: 0;
}

.blog-post-body {
    max-width: 800px;
    margin: 0 auto;
}

/* Content Sections */
.blog-post-section {
    margin-bottom: 3rem;
}

.blog-post-section:last-of-type {
    margin-bottom: 0;
}

.blog-post-body h2 {
    font-family: var(--font-primary);
    font-size: 2rem;
    font-weight: 500;
    color: var(--color-text);
    margin: 3rem 0 1.5rem;
    line-height: 1.3;
}

.blog-post-body h3 {
    font-family: var(--font-primary);
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--color-text);
    margin: 2.5rem 0 1rem;
    line-height: 1.4;
}

.blog-post-body h4 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--color-text);
    margin: 2rem 0 1rem;
}

.blog-post-body p {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--color-text);
    margin: 0 0 1.5rem;
}

.blog-post-body ul,
.blog-post-body ol {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--color-text);
    margin: 0 0 1.5rem;
    padding-left: 2rem;
}

.blog-post-body li {
    margin-bottom: 0.75rem;
}

.blog-post-body li::marker {
    color: var(--color-primary);
}

.blog-post-body blockquote {
    margin: 2.5rem 0;
    padding: 2rem 2.5rem;
    background: linear-gradient(135deg, rgba(184, 153, 138, 0.08) 0%, rgba(184, 153, 138, 0.04) 100%);
    border-left: 4px solid var(--color-primary);
    border-radius: 8px;
    font-style: italic;
    font-size: 1.25rem;
    line-height: 1.7;
    color: var(--color-text);
}

.blog-post-body strong {
    font-weight: 600;
    color: var(--color-text);
}

.blog-post-body a {
    color: var(--color-primary);
    text-decoration: underline;
    transition: color 0.3s ease;
}

.blog-post-body a:hover {
    color: var(--color-text);
}

.blog-post-body img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    margin: 2rem 0;
}

/* Author Bio */
.blog-post-author {
    max-width: 800px;
    margin: 4rem auto 0;
    padding: 2.5rem;
    background: linear-gradient(135deg, #FCF4EE 0%, #F8F4EE 100%);
    border-radius: 16px;
    border: 1px solid rgba(184, 153, 138, 0.15);
    display: flex;
    gap: 2rem;
    align-items: center;
}

.author-avatar {
    flex-shrink: 0;
}

.author-avatar img {
    width: 160px;
    height: 160px;
    border-radius: 50%;
    object-fit: cover;
    object-position: center 20%;
    border: 4px solid var(--color-white);
    box-shadow: 0 4px 12px rgba(44, 36, 22, 0.1);
}

.author-info h3,
.author-name {
    font-family: var(--font-primary);
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--color-text);
    margin: 0 0 0.75rem;
}

.author-title {
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-primary);
    margin: 0 0 1rem;
}

.author-bio,
.author-info p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--color-text-light);
    margin: 0;
}

/* Table of Contents */
.table-of-contents {
    background: linear-gradient(135deg, #FCF4EE 0%, #F8F4EE 100%);
    border: 2px solid rgba(184, 153, 138, 0.2);
    border-radius: 16px;
    padding: 2rem;
    margin: 3rem 0;
    position: sticky;
    top: 120px;
}

.toc-title {
    font-family: var(--font-primary);
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--color-text);
    margin: 0 0 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.toc-title svg {
    width: 24px;
    height: 24px;
    color: var(--color-primary);
}

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

.toc-list li {
    margin-bottom: 0.75rem;
}

.toc-list li:last-child {
    margin-bottom: 0;
}

.toc-list a {
    display: block;
    color: var(--color-text-light);
    text-decoration: none;
    font-size: 1rem;
    line-height: 1.6;
    padding: 0.5rem 0.75rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
}

.toc-list a:hover {
    color: var(--color-primary);
    background: rgba(184, 153, 138, 0.08);
    border-left-color: var(--color-primary);
    padding-left: 1rem;
}

.toc-list a.active {
    color: var(--color-primary);
    background: rgba(184, 153, 138, 0.12);
    border-left-color: var(--color-primary);
    font-weight: 500;
}

/* Content with Sidebar Layout */
.blog-content-wrapper {
    display: grid;
    grid-template-columns: 1fr 280px;
    gap: 3rem;
    align-items: start;
}

.blog-main-content {
    min-width: 0;
}

/* Highlight Sections */
.blog-post-highlight,
.highlight-section {
    background: linear-gradient(135deg, rgba(184, 153, 138, 0.08) 0%, rgba(184, 153, 138, 0.04) 100%);
    border-radius: 16px;
    padding: 2.5rem;
    margin: 3rem 0;
    border-left: 4px solid var(--color-primary);
}

.blog-post-highlight h2,
.blog-post-highlight h3,
.highlight-section h2 {
    margin-top: 0 !important;
    font-family: var(--font-primary);
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--color-text);
    margin-bottom: 1rem;
}

.blog-post-highlight p,
.highlight-section p {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--color-text);
    margin: 0;
}

/* FAQ Accordion */
.faq-container,
.faq-section {
    margin: 3rem 0;
}

.faq-item {
    margin-bottom: 1rem;
    background: var(--color-white);
    border: 1px solid rgba(184, 153, 138, 0.15);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: var(--color-primary);
    box-shadow: 0 4px 12px rgba(44, 36, 22, 0.08);
}

.faq-item:last-child {
    margin-bottom: 0;
}

.faq-question {
    width: 100%;
    text-align: left;
    background: transparent;
    border: none;
    padding: 1.5rem 2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    transition: background 0.3s ease;
}

.faq-question:hover {
    background: rgba(184, 153, 138, 0.05);
}

.faq-question h3 {
    font-family: var(--font-primary);
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--color-text);
    margin: 0;
    line-height: 1.4;
    flex: 1;
}

.faq-icon {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    color: var(--color-primary);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    padding: 0 2rem;
}

.faq-item.active .faq-answer {
    max-height: 1000px;
    padding: 0 2rem 1.5rem;
}

.faq-answer p {
    font-size: 1.0625rem;
    line-height: 1.8;
    color: var(--color-text);
    margin: 0 0 1rem;
}

.faq-answer p:last-child {
    margin-bottom: 0;
}

.faq-answer ul {
    font-size: 1.0625rem;
    line-height: 1.8;
    color: var(--color-text);
    margin: 1rem 0 0;
    padding-left: 1.5rem;
}

.faq-answer li {
    margin-bottom: 0.5rem;
}

.faq-answer li::marker {
    color: var(--color-primary);
}

/* ==========================================
   Responsive Design for Blog Post
   ========================================== */

@media (max-width: 968px) {
    .blog-post-layout,
    .blog-content-wrapper {
        grid-template-columns: 1fr;
    }

    .blog-post-sidebar {
        position: static;
    }

    .blog-post-toc,
    .table-of-contents {
        position: static;
        order: -1;
    }

    .blog-post-header,
    .blog-post-header-wrapper {
        padding: 3rem 0 2rem;
    }

    .blog-post-header-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .blog-post-header-image {
        order: -1;
    }

    .blog-post-header-image img {
        max-width: 400px;
    }
}

@media (max-width: 768px) {
    .blog-post-header,
    .blog-post-header-wrapper {
        padding: 3rem 0 2rem;
    }

    .blog-post-header-grid {
        gap: 2rem;
    }

    .blog-post-meta {
        flex-direction: column;
        align-items: flex-start;
        margin-bottom: 1.5rem;
    }

    .blog-post-title {
        font-size: 1.75rem;
    }

    .blog-post-header-image img {
        max-width: 350px;
    }

    .blog-post-content,
    .blog-post-content-section {
        padding: 1.5rem 0 3rem;
    }

    .blog-post-highlight,
    .highlight-section {
        padding: 2rem 1.5rem;
    }

    .blog-post-toc,
    .table-of-contents {
        padding: 1.5rem;
    }

    .blog-post-body h2 {
        font-size: 1.75rem;
        margin: 2.5rem 0 1rem;
    }

    .blog-post-body h3 {
        font-size: 1.375rem;
        margin: 2rem 0 0.75rem;
    }

    .blog-post-body p,
    .blog-post-body ul,
    .blog-post-body ol {
        font-size: 1.0625rem;
    }

    .blog-post-body blockquote {
        padding: 1.5rem;
        font-size: 1.125rem;
        margin: 2rem 0;
    }

    .blog-post-author {
        flex-direction: column;
        text-align: center;
        padding: 2rem;
        gap: 1.5rem;
        margin-top: 3rem;
    }

    .author-avatar img {
        width: 140px;
        height: 140px;
    }

    .faq-question {
        padding: 1.25rem 1.5rem;
    }

    .faq-question h3 {
        font-size: 1.125rem;
    }

    .faq-answer {
        padding: 0 1.5rem;
    }

    .faq-item.active .faq-answer {
        padding: 0 1.5rem 1.25rem;
    }

    .highlight-section {
        padding: 2rem 1.5rem;
    }

    .table-of-contents {
        padding: 1.5rem;
    }

    .toc-title {
        font-size: 1.125rem;
    }
}

@media (max-width: 480px) {
    .blog-post-title {
        font-size: 1.5rem;
    }

    .blog-post-header-image img {
        max-width: 300px;
    }

    .blog-post-body h2 {
        font-size: 1.5rem;
    }

    .blog-post-body h3 {
        font-size: 1.25rem;
    }

    .blog-post-author {
        padding: 1.5rem;
    }
}
