.elementor-3170 .elementor-element.elementor-element-9e4aeb7{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;--gap:40px 40px;--row-gap:40px;--column-gap:40px;--padding-top:3rem;--padding-bottom:5rem;--padding-left:0rem;--padding-right:0rem;}.elementor-widget-theme-archive-title .elementor-heading-title{font-family:var( --e-global-typography-primary-font-family ), Sans-serif;font-size:var( --e-global-typography-primary-font-size );font-weight:var( --e-global-typography-primary-font-weight );line-height:var( --e-global-typography-primary-line-height );color:var( --e-global-color-primary );}.elementor-3170 .elementor-element.elementor-element-6af06bd{text-align:center;}.elementor-widget-loop-grid .elementor-button{background-color:var( --e-global-color-accent );font-family:var( --e-global-typography-accent-font-family ), Sans-serif;font-size:var( --e-global-typography-accent-font-size );font-weight:var( --e-global-typography-accent-font-weight );line-height:var( --e-global-typography-accent-line-height );}.elementor-widget-loop-grid .elementor-pagination{font-family:var( --e-global-typography-secondary-font-family ), Sans-serif;font-size:var( --e-global-typography-secondary-font-size );font-weight:var( --e-global-typography-secondary-font-weight );line-height:var( --e-global-typography-secondary-line-height );}.elementor-widget-loop-grid .e-load-more-message{font-family:var( --e-global-typography-secondary-font-family ), Sans-serif;font-size:var( --e-global-typography-secondary-font-size );font-weight:var( --e-global-typography-secondary-font-weight );line-height:var( --e-global-typography-secondary-line-height );}.elementor-3170 .elementor-element.elementor-element-576900c{--grid-columns:3;--load-more-button-align:center;}@media(min-width:2400px){.elementor-widget-theme-archive-title .elementor-heading-title{font-size:var( --e-global-typography-primary-font-size );line-height:var( --e-global-typography-primary-line-height );}.elementor-widget-loop-grid .elementor-pagination{font-size:var( --e-global-typography-secondary-font-size );line-height:var( --e-global-typography-secondary-line-height );}.elementor-widget-loop-grid .elementor-button{font-size:var( --e-global-typography-accent-font-size );line-height:var( --e-global-typography-accent-line-height );}.elementor-widget-loop-grid .e-load-more-message{font-size:var( --e-global-typography-secondary-font-size );line-height:var( --e-global-typography-secondary-line-height );}}@media(max-width:1024px){.elementor-widget-theme-archive-title .elementor-heading-title{font-size:var( --e-global-typography-primary-font-size );line-height:var( --e-global-typography-primary-line-height );}.elementor-widget-loop-grid .elementor-pagination{font-size:var( --e-global-typography-secondary-font-size );line-height:var( --e-global-typography-secondary-line-height );}.elementor-widget-loop-grid .elementor-button{font-size:var( --e-global-typography-accent-font-size );line-height:var( --e-global-typography-accent-line-height );}.elementor-widget-loop-grid .e-load-more-message{font-size:var( --e-global-typography-secondary-font-size );line-height:var( --e-global-typography-secondary-line-height );}.elementor-3170 .elementor-element.elementor-element-576900c{--grid-columns:2;}}@media(max-width:767px){.elementor-widget-theme-archive-title .elementor-heading-title{font-size:var( --e-global-typography-primary-font-size );line-height:var( --e-global-typography-primary-line-height );}.elementor-widget-loop-grid .elementor-pagination{font-size:var( --e-global-typography-secondary-font-size );line-height:var( --e-global-typography-secondary-line-height );}.elementor-widget-loop-grid .elementor-button{font-size:var( --e-global-typography-accent-font-size );line-height:var( --e-global-typography-accent-line-height );}.elementor-widget-loop-grid .e-load-more-message{font-size:var( --e-global-typography-secondary-font-size );line-height:var( --e-global-typography-secondary-line-height );}.elementor-3170 .elementor-element.elementor-element-576900c{--grid-columns:1;}}/* Start custom CSS for loop-grid, class: .elementor-element-576900c */.e-loop-item {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background: linear-gradient(145deg, #F9F3FF, #F3FAF9, #F5E8B1, #F9F3FF);
    background-size: 400% 400%;
    box-shadow: 0 8px 25px rgba(108, 74, 140, 0.1);
    animation: magicalBlogFloat 8s ease-in-out infinite, magicalBlogBackgroundShift 12s ease-in-out infinite;
}

.e-loop-item::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, #6C4A8C, #F5E8B1, #6C4A8C, #F5E8B1);
    background-size: 300% 300%;
    border-radius: 22px;
    z-index: -1;
    opacity: 0;
    animation: magicalBlogBorder 6s ease infinite;
    transition: opacity 0.3s ease;
}

.e-loop-item:hover::before {
    opacity: 1;
}

.e-loop-item:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 15px 40px rgba(108, 74, 140, 0.2);
}

/* Blog image styling */
.blog_image {
    position: relative;
    overflow: hidden;
    border-radius: 15px 15px 0 0;
}

.blog_image img {
    transition: transform 0.5s ease, filter 0.3s ease;
    border-radius: 15px 15px 0 0;
}

.blog_image:hover img {
    transform: scale(1.1);
    filter: brightness(1.1) saturate(1.2);
}

.blog_image::after {
    content: '✨';
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 1.5em;
    opacity: 0;
    transform: scale(0) rotate(180deg);
    transition: all 0.4s ease;
    color: #F5E8B1;
    text-shadow: 0 0 10px rgba(245, 232, 177, 0.8);
}

.blog_image:hover::after {
    opacity: 1;
    transform: scale(1) rotate(0deg);
    animation: magicalSparkle 2s ease-in-out infinite;
}

.blog_title {
    position: relative;
    padding: 20px 25px 10px;
}

.blog_title .elementor-heading-title {
    color: #2c2c2c;
    margin: 0;
    position: relative;
    background: linear-gradient(45deg, #8A6AAC, #2BB7B3);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: titleShimmer 3s ease-in-out infinite alternate;
}

/* Elegant underline for title */
.blog_title::after {
    content: '';
    position: absolute;
    bottom: 8px;
    left: 25px;
    right: 60%;
    height: 2px;
    background: linear-gradient(90deg, rgba(138, 106, 172, 0.4), rgba(43, 183, 179, 0.3), transparent);
    border-radius: 2px;
    animation: underlineGlow 2s ease-in-out infinite alternate;
}

@keyframes titleShimmer {
    0% { 
        background-position: 0% 50%; 
    }
    100% { 
        background-position: 100% 50%; 
    }
}

@keyframes underlineGlow {
    0% { 
        opacity: 0.6;
        right: 60%;
    }
    100% { 
        opacity: 1;
        right: 40%;
    }
}



@keyframes magicalTitleColorShift {
    0% { 
        color: #2F1A4A !important;
    }
    33% { 
        color: #6C4A8C !important;
    }
    66% { 
        color: #2BB7B3 !important;
    }
    100% { 
        color: #2F1A4A !important;
    }
}

.e-loop-item:hover .blog_title .elementor-heading-title::before {
    width: calc(100% - 40px);
}

.e-loop-item:hover .blog_title .elementor-heading-title {
    color: #6C4A8C !important;
}

/* Blog excerpt styling */
.blog_excerpt {
    position: relative;
    padding: 0 20px 20px 20px;
}

.blog_excerpt .elementor-widget-container {
    color: #2F1A4A;
    line-height: 1.6;
    position: relative;
}

.blog_excerpt .elementor-widget-container::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 2px;
    background: linear-gradient(90deg, transparent, #6C4A8C, transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.e-loop-item:hover .blog_excerpt .elementor-widget-container::after {
    opacity: 1;
}

/* Magical animations */
@keyframes magicalBlogFloat {
    0%, 100% { 
        transform: translateY(0) rotate(0deg); 
    }
    25% { 
        transform: translateY(-3px) rotate(0.5deg); 
    }
    50% { 
        transform: translateY(-6px) rotate(0deg); 
    }
    75% { 
        transform: translateY(-3px) rotate(-0.5deg); 
    }
}

@keyframes magicalBlogBorder {
    0% { 
        background-position: 0% 50%; 
    }
    50% { 
        background-position: 100% 50%; 
    }
    100% { 
        background-position: 0% 50%; 
    }
}

@keyframes magicalSparkle {
    0%, 100% { 
        opacity: 0.7;
        transform: scale(1) rotate(0deg);
    }
    50% { 
        opacity: 1;
        transform: scale(1.2) rotate(180deg);
    }
}

/* Special effects for the entire container */
.e-loop-item .e-con-inner {
    position: relative;
    z-index: 2;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    border-radius: 18px;
    overflow: hidden;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .e-loop-item:hover {
        transform: translateY(-4px) scale(1.01);
    }
    
    .blog_image::after {
        font-size: 1.2em;
        top: 10px;
        right: 10px;
    }
}

@keyframes magicalBlogBackgroundShift {
    0% { 
        background-position: 0% 50%; 
    }
    25% { 
        background-position: 50% 0%; 
    }
    50% { 
        background-position: 100% 50%; 
    }
    75% { 
        background-position: 50% 100%; 
    }
    100% { 
        background-position: 0% 50%; 
    }
}/* End custom CSS */