/* Epic Art - drop-in widget that fills its parent with cover-fitted art */

.epic-art {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.epic-art img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: opacity 1.2s ease;
}

.epic-art img.fade-out { opacity: 0; }
.epic-art img.fade-in  { opacity: 1; }
