.elementor-editor-active.hf_templates-template-elementor_canvas {
    margin-top: 20px;
    background-color: #fff;
}

/* ── Brodart Image Hover Widget ──────────────────────────────────────── */
.brodart-image-hover {
    position: relative;
    overflow: hidden;
    display: block;
    line-height: 0;
}

.brodart-image-hover img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.brodart-image-hover--zoom:hover img {
    transform: scale(1.06);
}

.brodart-image-hover__overlay {
    position: absolute;
    inset: 0;
    display: flex;
    justify-content: center;
    background-color: rgba(0, 0, 0, 0.55);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.brodart-image-hover:hover .brodart-image-hover__overlay {
    opacity: 1;
}

.brodart-image-hover__content {
    color: #ffffff;
    text-align: center;
    padding: 20px;
    line-height: 1.5;
}

.brodart-image-hover__title {
    font-weight: 700;
    margin-bottom: 10px;
}

.brodart-image-hover__text {
    margin: 0;
}