.expandable-gallery-item-101ac0e6 {
    position: relative;
    cursor: pointer;
    transition: all 0.3s ease;
}

.expandable-gallery-item-101ac0e6.expanded {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 9999;
    width: 90vw;
    max-width: 800px;
    height: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.expandable-gallery-overlay-101ac0e6 {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 9998;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.expandable-gallery-overlay-101ac0e6.active {
    opacity: 1;
    pointer-events: auto;
}

.expandable-gallery-content-101ac0e6 {
    display: none;
    background: white;
    padding: 2rem;
    margin-top: 1rem;
    border-radius: 0.5rem;
}

.expandable-gallery-item-101ac0e6.expanded .expandable-gallery-content-101ac0e6 {
    display: block;
}

.expandable-gallery-content-101ac0e6 h3 {
    margin: 0 0 1rem 0;
    font-size: 1.5rem;
    color: #333;
}

.expandable-gallery-content-101ac0e6 p {
    margin: 0;
    font-size: 1rem;
    line-height: 1.6;
    color: #666;
}

.expandable-gallery-close-101ac0e6 {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 2rem;
    height: 2rem;
    background: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    line-height: 1;
    color: #333;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    z-index: 10000;
}

.expandable-gallery-item-101ac0e6.expanded .expandable-gallery-close-101ac0e6 {
    display: flex;
}

.expandable-gallery-close-101ac0e6:hover {
    background: #f0f0f0;
}
