.fc-cf44a1d0-card {
    box-sizing: border-box;
    border-style: solid;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
    display: flex;
    flex-direction: column;
    width: 100%;
    overflow: hidden;
}

.fc-cf44a1d0-img-container {
    width: 100%;
    overflow: hidden;
    position: relative;
    cursor: pointer;
}

.fc-cf44a1d0-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Hover Overlay with Zoom Icon */
.fc-cf44a1d0-img-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(95, 0, 128, 0.2); /* Popcorn purple overlay tint */
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.2s ease-in-out;
}

.fc-cf44a1d0-img-container:hover .fc-cf44a1d0-img-overlay {
    opacity: 1;
}

.fc-cf44a1d0-zoom-icon {
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.fc-cf44a1d0-zoom-icon svg {
    width: 20px;
    height: 20px;
    fill: #5F0080;
}

.fc-cf44a1d0-lightbox-hint {
    display: block;
    font-size: 11px;
    color: #888888;
    margin-top: 6px;
    margin-bottom: 12px;
}

.fc-cf44a1d0-title {
    margin-top: 0;
    font-weight: 700;
}

/* Lozenge Styles */
.fc-cf44a1d0-lozenge-container {
    display: flex;
}

.fc-cf44a1d0-lozenge {
    display: inline-block;
    font-size: 13px;
    font-weight: 600;
    line-height: 1.2;
    text-align: center;
}

.fc-cf44a1d0-desc {
    margin-top: 0;
    line-height: 1.5;
}

.fc-cf44a1d0-link {
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    transition: color 0.2s ease-in-out;
}

/* Lightbox Modal CSS */
.popcorn-lightbox-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.85);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99999;
    opacity: 0;
    transition: opacity 0.25s ease-out;
}
body.admin-bar .popcorn-lightbox-overlay {
    top: var(--wp-admin--admin-bar--height, 32px);
}
@media screen and (max-width: 782px) {
    body.admin-bar .popcorn-lightbox-overlay {
        top: 46px;
    }
}

.popcorn-lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
}

.popcorn-lightbox-content img {
    max-width: 100%;
    max-height: 90vh;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.popcorn-lightbox-close {
    position: absolute;
    top: -40px;
    right: 0;
    color: #ffffff;
    font-size: 30px;
    font-weight: bold;
    cursor: pointer;
    background: none;
    border: none;
    outline: none;
    line-height: 1;
}
.popcorn-lightbox-close:hover {
    color: #f5edfa;
}
