.elementor-105281 .elementor-element.elementor-element-bde5978{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--background-transition:0.3s;--padding-top:0px;--padding-right:0px;--padding-bottom:0px;--padding-left:0px;}/* Start custom CSS for shortcode, class: .elementor-element-fea966b *//* 1. Container */
.spinning-border-img .elementor-widget-container {
    position: relative;
    padding: 4px; /* viền dày hơn */
    border-radius: 12px;
    overflow: hidden;
    z-index: 1;
    display: flex;
}

/* 2. Ảnh */
.spinning-border-img img {
    border-radius: 10px !important;
    z-index: 2;
    position: relative;
    width: 100%;
    height: auto;
    background: #fff;
}

/* 3. Gradient xoay */
.spinning-border-img .elementor-widget-container:before {
    content: "";
    position: absolute;
    width: 220%;
    height: 520%;
    top: -210%;
    left: -60%;

    background: conic-gradient(
        #f9f9f9 0deg,
        #fdb022 40deg,
        #005c76 120deg,
        #006885 260deg,
        #f9f9f9 360deg
    );

    animation: rotate-background 3s linear infinite;

    /* làm màu nổi bật hơn */
    filter: brightness(1.0) saturate(1.9);

    z-index: -1;
}

/* 4. mask */
.spinning-border-img .elementor-widget-container:after {
    content: "";
    position: absolute;
    inset: 6px;
    background: white;
    border-radius: 9px;
    z-index: 1;
}

/* 5. glow nhẹ quanh viền */
.spinning-border-img {
    filter: drop-shadow(0 0 8px rgba(253,176,34,0.5))
            drop-shadow(0 0 6px rgba(0,92,118,0.4));
}

/* 6. animation */
@keyframes rotate-background {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}/* End custom CSS */