/* Missing style for thumb-modern */
.thumb-modern {
    position: relative;
    display: block;
    overflow: hidden;
    border-radius: 8px;
    cursor: pointer;
    margin-bottom: 30px;
    background: #000;
}
.thumb-modern figure {
    margin: 0;
}
.thumb-modern img {
    width: 100%;
    height: auto;
    transition: transform 0.5s ease;
    display: block;
}
.thumb-modern:hover img {
    transform: scale(1.1);
    opacity: 0.7;
}
.thumb-modern__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}
.thumb-modern:hover .thumb-modern__overlay {
    opacity: 1;
}
/* Ensure the lightbox has a high z-index */
.lg-container {
    z-index: 1000000 !important;
}
