/* ============================================================
   Kuukauden Tarjoukset Widget — CSS
   ============================================================ */

.kt-gallery-wrapper {
    width: 100%;
}

.kt-gallery-grid {
    display: grid;
    width: 100%;
}

.kt-gallery-item {
    overflow: hidden;
    position: relative;
}

.kt-gallery-item a {
    display: block;
    width: 100%;
    height: 100%;
}

.kt-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

/* Hover-zoomaus */
.kt-hover-overlay .kt-gallery-item:hover img {
    transform: scale(1.04);
}

/* Hover-tummennus overlay */
.kt-hover-overlay .kt-gallery-item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0);
    transition: background 0.3s ease;
    pointer-events: none;
    border-radius: inherit;
}

.kt-hover-overlay .kt-gallery-item:hover::after {
    background: rgba(0, 0, 0, 0.15);
}

/* Debug-viesti editorissa */
.kt-notice {
    padding: 12px 16px;
    background: #fff3cd;
    border: 1px solid #ffc107;
    border-radius: 4px;
    color: #856404;
    font-size: 13px;
}
