* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen',
        'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue',
        sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    color: #333;
    background: #fff;
    line-height: 1.6;
    overflow-x: hidden; /* Prevent horizontal scrollbar */
}

html {
    overflow-x: hidden; /* Prevent horizontal scrollbar */
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Navigation */
.navigation {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: #fff;
    border-bottom: 1px solid #e0e0e0;
    z-index: 1000;
    height: 70px;
    display: flex;
    align-items: center;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    flex-wrap: nowrap;
}

.logo {
    font-size: 1.5rem;
    font-weight: 600;
    color: #333333;
    letter-spacing: -0.5px;
}

.burger-menu {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 24px;
    height: 18px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
    position: relative;
    overflow: visible;
}

/* Always show on mobile - override base display:none - REMOVED, using JS instead */

.burger-menu span {
    width: 100%;
    height: 2px;
    min-height: 2px;
    background: #333333;
    border-radius: 2px;
    transition: all 0.3s ease;
    transform-origin: center;
    display: block;
    flex-shrink: 0;
    margin: 0;
    padding: 0;
    content: '';
    opacity: 1;
}

.burger-menu.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.burger-menu.active span:nth-child(2) {
    opacity: 0;
}

.burger-menu.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-links a {
    font-size: 1rem;
    color: #666;
    transition: color 0.2s;
    position: relative;
    padding-bottom: 4px;
}

.nav-links a:hover,
.nav-links a.active {
    color: #333333;
}

.nav-links a.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: #333333;
}

body.menu-open {
    overflow: hidden;
}

.main-content {
    padding-top: 80px;
    min-height: calc(100vh - 80px);
}

/* Home Page Hero */
.home-hero {
    width: 100%;
    height: 9vh;
    min-height: 60px;
    max-height: 90px;
    overflow: hidden;
    position: relative;
    margin-bottom: 2rem;
}

.home-hero img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.home-description {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem 3rem;
}

.home-description-content {
    text-align: center;
    font-size: 1.2rem;
    color: #555;
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto;
}

.home-cta-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.cta-link {
    color: #999;
    font-size: 1.1rem;
    transition: color 0.2s;
    text-decoration: none;
}

.cta-link:hover {
    color: #666;
}

.home-cta-bottom {
    max-width: 1200px;
    margin: 3rem auto;
    padding: 0 2rem;
    text-align: center;
}

.cta-button {
    display: inline-block;
    padding: 0.75rem 2rem;
    color: #999;
    font-size: 1.1rem;
    transition: color 0.2s;
    text-decoration: none;
}

.cta-button:hover {
    color: #666;
}

/* Home Page Gallery */
.gallery-container {
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
    padding: 2rem;
}

.gallery-row {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    flex-wrap: nowrap;
    padding: 10px 0; /* Add padding to allow hover effect to show */
}

.gallery-item {
    overflow: hidden; /* Keep hidden for image clipping */
    background: #f5f5f5;
    position: relative;
}

.gallery-item.side {
    width: 200px;
    height: 300px;
    cursor: pointer;
    flex-shrink: 0;
}

.gallery-item.center {
    width: 350px;
    height: 500px;
    cursor: pointer;
    flex-shrink: 0;
    overflow: hidden;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.gallery-item.center img {
    transition: transform 0.3s ease;
}

.gallery-item.center:hover img {
    transform: scale(1.1);
}

/* Home page gallery items - only apply to items NOT in gallery-grid */
.gallery-row .gallery-item::after {
    content: attr(data-alt);
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.8);
    color: #fff;
    padding: 12px 16px;
    font-size: 0.95rem;
    white-space: normal;
    word-wrap: break-word;
    overflow-wrap: break-word;
    pointer-events: none;
    z-index: 10;
    opacity: 0;
    transition: opacity 0.3s ease;
    box-sizing: border-box;
}

.gallery-row .gallery-item:hover::after {
    opacity: 1;
}

/* Artwork Page */
.artwork-page {
    max-width: 1000px;
    margin: 0 auto;
    padding: 3rem 2rem;
    text-align: left;
}

.artwork-section {
    margin-bottom: 4rem;
}

.artwork-section h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #666666;
}

.section-description {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 2rem;
    max-width: 800px;
}

.artwork-images {
    position: relative;
    margin-bottom: 1.5rem;
    max-width: 800px;
}

.artwork-image-item {
    position: relative;
    overflow: hidden;
    background: #f5f5f5;
    cursor: pointer;
}

.artwork-images img {
    width: 100%;
    height: auto;
    object-fit: cover;
    transition: transform 0.5s ease;
    display: block;
}

.artwork-image-item:hover img {
    transform: scale(1.02);
}

.artwork-image-item::after {
    content: attr(data-title);
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.8);
    color: #fff;
    padding: 12px 16px;
    font-size: 0.95rem;
    white-space: normal;
    pointer-events: none;
    z-index: 10;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.artwork-image-item:hover::after {
    opacity: 1;
}

.view-all-link {
    display: inline-block;
    color: #333333;
    font-weight: 500;
    transition: color 0.2s;
    cursor: pointer;
}

.view-all-link:hover {
    color: #555;
}

/* Gallery Modal */
.gallery-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 2000;
    overflow-y: auto;
    align-items: flex-start;
    justify-content: center;
    padding: 2rem;
}

.gallery-modal-content {
    max-width: 1400px;
    width: 100%;
    background: #fff;
    border-radius: 8px;
    margin: 2rem auto;
    padding: 2rem;
    position: relative;
}

.gallery-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid #e0e0e0;
}

.gallery-header h2 {
    font-size: 2rem;
    color: #333333;
    margin: 0;
}

.gallery-close {
    background: none;
    border: none;
    font-size: 2.5rem;
    color: #666;
    cursor: pointer;
    line-height: 1;
    padding: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.2s;
}

.gallery-close:hover {
    color: #333333;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
    grid-auto-rows: auto;
}

.gallery-grid .gallery-item {
    position: relative;
    background: #f5f5f5;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Prevent home page gallery styles from affecting gallery-grid items */
.gallery-grid .gallery-item::after {
    content: none !important;
}

.gallery-grid .gallery-image-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: visible;
    border-radius: 4px;
}

.gallery-grid .gallery-item img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
    max-height: 80vh;
    border-radius: 4px;
}

.gallery-grid .gallery-item {
    overflow: hidden;
}

.gallery-grid .gallery-image-wrapper::after {
    content: attr(data-title);
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.85);
    color: #fff;
    padding: 12px 16px;
    font-size: 0.95rem;
    white-space: normal;
    word-wrap: break-word;
    overflow-wrap: break-word;
    pointer-events: none;
    z-index: 10;
    opacity: 0;
    transition: opacity 0.3s ease;
    box-sizing: border-box;
}

.gallery-grid .gallery-item:hover .gallery-image-wrapper::after {
    opacity: 1;
}

/* Responsive gallery */
@media (max-width: 1024px) {
    .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 1rem;
    }
}

@media (max-width: 768px) {
    .gallery-modal {
        padding: 1rem;
    }

    .gallery-modal-content {
        padding: 1rem;
        margin: 1rem auto;
    }

    .gallery-header h2 {
        font-size: 1.5rem;
    }

    .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
        gap: 0.75rem;
    }
}

/* Single Image Modal */
.image-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 3000; /* Higher than gallery modal (2000) */
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.image-modal-container {
    max-width: 90vw;
    max-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.image-modal-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    max-width: 100%;
    max-height: 90vh;
}

.image-modal-container img {
    max-width: 100%;
    max-height: calc(90vh - 80px);
    width: auto;
    height: auto;
    object-fit: contain;
    border-radius: 4px;
}

.modal-image-title {
    width: 100%;
    background: rgba(0, 0, 0, 0.8);
    color: #fff;
    padding: 12px 16px;
    font-size: 0.95rem;
    text-align: center;
    margin-top: 8px;
    border-radius: 4px;
    word-wrap: break-word;
    overflow-wrap: break-word;
    box-sizing: border-box;
}

.image-modal-close {
    position: absolute;
    top: 2rem;
    right: 2rem;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: #fff;
    font-size: 2.5rem;
    cursor: pointer;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
    z-index: 2001;
}

.image-modal-close:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    transform: scale(1.1);
}

@media (max-width: 768px) {
    .image-modal-close {
        top: 1rem;
        right: 1rem;
        width: 40px;
        height: 40px;
        font-size: 2rem;
    }

    .image-modal-container {
        max-width: 95vw;
        max-height: 95vh;
    }

    .image-modal-content {
        max-height: 95vh;
    }

    .image-modal-container img {
        max-height: calc(95vh - 80px);
    }

    .modal-image-title {
        font-size: 0.85rem;
        padding: 10px 12px;
    }
}

/* About Page */
.about-page {
    max-width: 1000px;
    margin: 0 auto;
    padding: 3rem 2rem;
}

.bio-section {
    margin-bottom: 4rem;
}

.bio-content {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 3rem;
    align-items: start;
    margin-top: 2rem;
}

.bio-image {
    width: 100%;
}

.bio-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 8px;
    display: block;
}

.bio-text {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.bio-text h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #999;
}

.bio-header h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.bio-text p {
    line-height: 1.8;
    margin: 0;
}

.bio-header,
.bio-studies,
.bio-exhibitions,
.bio-group-exhibitions,
.bio-awards {
    margin-bottom: 1rem;
}

.toggle-link {
    display: inline-block;
    color: #666;
    text-decoration: none;
    font-size: 0.9rem;
    cursor: pointer;
    transition: color 0.3s ease;
    margin-top: 1rem;
}

.toggle-link:hover {
    color: #333;
}

.bio-section-content {
    transition: max-height 0.5s ease-out;
    overflow: hidden;
    position: relative;
}

.bio-section-content.collapsed {
    max-height: 300px;
}

.bio-section-content.collapsed::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 50px;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.95));
    pointer-events: none;
}

.bio-section-content:not(.collapsed) {
    max-height: 10000px;
}

.bio-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 1rem;
    border: 1px solid #ffffff;
}

.bio-table td {
    padding: 0.5rem 1rem;
    border: 1px solid #ffffff;
    vertical-align: top;
    color: #555;
}

.bio-table td:first-child {
    width: 80px;
    text-align: left;
    font-weight: normal;
}

.bio-table td:last-child {
    width: auto;
}

.statement-section,
.working-images-section {
    margin-bottom: 4rem;
}

.statement-content {
    margin-top: 2rem;
    overflow: hidden;
}

.statement-image {
    float: left;
    width: 300px;
    margin-right: 2rem;
    margin-bottom: 1rem;
}

.statement-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 8px;
    display: block;
}

.statement-content p {
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.statement-content p.clear-float {
    clear: both;
}

.about-page h1 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #666666;
}

.about-page h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #666666;
}

.about-page p {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 1rem;
    line-height: 1.8;
}

.working-images {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 2rem;
}

.working-images img {
    width: 100%;
    height: auto;
    object-fit: contain;
    background: #f5f5f5;
}

/* Reviews Section */
.reviews-section {
    margin-top: 4rem;
    margin-bottom: 4rem;
}

.reviews-container {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    margin-top: 2rem;
}

.review-item {
    display: flex;
    flex-direction: column;
}

.review-content {
    transition: max-height 0.5s ease-out, opacity 0.3s ease-out;
    overflow: hidden;
    position: relative;
}

.review-content.collapsed {
    max-height: 200px;
    opacity: 0.7;
}

.review-content.collapsed::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 80px;
    background: linear-gradient(to bottom, transparent, rgba(255, 255, 255, 0.95));
    pointer-events: none;
}

.review-content:not(.collapsed) {
    max-height: 5000px;
    opacity: 1;
}

.review-text {
    font-style: italic;
    font-size: 1rem;
    color: #555;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.review-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 1rem;
}

.review-author {
    font-style: normal;
    font-weight: 600;
    font-size: 0.9rem;
    color: #666666;
    margin: 0;
}

.show-more-link {
    color: #666666;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    transition: color 0.3s ease;
}

.show-more-link:hover {
    color: #333;
}

/* Exhibitions Section */
.exhibitions-section {
    margin-top: 4rem;
    margin-bottom: 4rem;
}

.exhibitions-section h3 {
    color: #666666;
}

/* Contact Page */
.contact-page {
    max-width: 800px;
    margin: 0 auto;
    padding: 3rem 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: calc(100vh - 150px);
}

.contact-content {
    text-align: center;
}

.contact-content h1 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #333333;
}

.contact-cta {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 3rem;
    line-height: 1.8;
}

.contact-info {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
    padding: 0;
}

.contact-item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5rem;
    text-align: left;
}

.contact-line {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 1rem;
}

.contact-line i {
    font-size: 1.2rem;
    color: #333333;
    width: 25px;
    text-align: left;
}

.contact-link {
    font-size: 1.2rem;
    color: #333333;
    font-weight: 400;
    transition: color 0.2s;
}

.contact-link:hover {
    color: #555;
}

.contact-text {
    font-size: 1.2rem;
    color: #333333;
    font-weight: 400;
}

/* Footer */
.site-footer {
    background: #fff;
    border-top: 1px solid #e0e0e0;
    padding: 2rem 0;
    margin-top: 4rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    text-align: center;
}

.footer-content p {
    color: #666;
    font-size: 0.9rem;
    margin: 0;
}

/* Responsive */
@media screen and (max-width: 1024px) {
    .gallery-grid {
        grid-template-columns: 1fr 1.5fr 1fr;
        gap: 0.75rem;
    }

    .artwork-images {
        gap: 1rem;
    }

    .working-images {
        gap: 1rem;
    }
}

@media (max-width: 768px) {
    .nav-container {
        padding: 0 1rem;
        position: relative;
    }

    /* Burger menu mobile styles - show on mobile */
    .burger-menu {
        display: flex !important;
        order: 2;
        margin-left: auto;
    }
    
    .burger-menu span {
        width: 100% !important;
        height: 2px !important;
        min-height: 2px !important;
        max-height: 2px !important;
        background: #333333 !important;
        border: none !important;
        border-radius: 2px !important;
        display: block !important;
        flex-shrink: 0 !important;
        margin: 0 !important;
        padding: 0 !important;
        opacity: 1 !important;
        visibility: visible !important;
        position: relative !important;
        box-sizing: border-box !important;
    }
    
    .logo {
        order: 1;
    }

    .nav-links {
        order: 3;
        display: none !important;
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: #fff;
        flex-direction: column;
        padding: 2rem;
        gap: 0;
        border-bottom: 1px solid #e0e0e0;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: transform 0.3s ease, opacity 0.3s ease, visibility 0.3s;
        z-index: 999;
    }

    .nav-links.active {
        display: flex !important;
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    .nav-links li {
        width: 100%;
        border-bottom: 1px solid #f0f0f0;
    }

    .nav-links li:last-child {
        border-bottom: none;
    }

    .nav-links a {
        display: block;
        padding: 1rem 0;
        font-size: 1.1rem;
        width: 100%;
    }

    .nav-links a.active::after {
        display: none;
    }

    .nav-links a.active {
        font-weight: 600;
        color: #333333;
    }

    .gallery-container {
        padding: 1rem;
    }

    .home-hero {
        height: 6vh;
        min-height: 40px;
        margin-bottom: 1.5rem;
    }

    .home-description {
        padding: 0 1rem 2rem;
    }

    .home-description-content {
        font-size: 1rem;
    }

    .home-cta-links {
        gap: 1.5rem;
        margin-top: 1.5rem;
    }

    .cta-link {
        font-size: 1rem;
    }

    .home-cta-bottom {
        margin: 2rem auto;
        padding: 0 1rem;
    }

    .cta-button {
        font-size: 1rem;
        padding: 0.6rem 1.5rem;
    }

    .gallery-row {
        gap: 0.5rem;
        overflow-x: hidden; /* Prevent horizontal scroll */
    }
    
    .gallery-container {
        overflow-x: hidden; /* Prevent horizontal scroll */
    }

    .gallery-item.side {
        width: 80px; /* Very small for mobile */
        height: 120px; /* Very small for mobile */
    }

    .gallery-item.center {
        width: 180px; /* Bigger middle for mobile */
        height: 250px; /* Bigger middle for mobile */
    }
    
    /* Disable hover effects on mobile - no mouse hover */
    .gallery-item.center:hover img,
    .gallery-item.side:hover img {
        transform: none;
    }
    
    .gallery-row .gallery-item:hover::after {
        opacity: 0;
    }
    
    .artwork-image-item:hover img {
        transform: none;
    }
    
    .artwork-image-item:hover::after {
        opacity: 0;
    }
    
    .gallery-grid .gallery-item:hover .gallery-image-wrapper::after {
        opacity: 0;
    }

    .artwork-images,
    .working-images {
        grid-template-columns: 1fr;
    }

    .bio-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .bio-image {
        max-width: 400px;
        margin: 0 auto;
    }

    .statement-image {
        float: none;
        width: 100%;
        max-width: 300px;
        margin: 0 auto 1.5rem;
    }

    .bio-section-content.collapsed {
        max-height: 200px;
    }

    .toggle-link {
        margin-top: 0.75rem;
    }

    .reviews-container {
        gap: 2rem;
    }

    .review-content.collapsed {
        max-height: 150px;
    }

    .review-footer {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }

    .review-author {
        margin-bottom: 0;
    }

    .about-page,
    .artwork-page,
    .contact-page {
        padding: 2rem 1rem;
    }

    .about-page h1,
    .contact-content h1 {
        font-size: 2rem;
    }

    .contact-info {
        padding: 0 1rem;
    }

    .contact-item {
        gap: 1.25rem;
    }

    .contact-line i {
        font-size: 1.1rem;
        width: 22px;
    }

    .contact-link,
    .contact-text {
        font-size: 1.1rem;
    }

    .site-footer {
        padding: 1.5rem 0;
        margin-top: 2rem;
    }

    .footer-content {
        padding: 0 1rem;
    }
}
