.eyelit-cta-wrapper .ecta-inner {
    position: relative;  
    overflow: hidden;  
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    padding: 40px;
    border-radius: 8px;
 }
.eyelit-cta-wrapper .ecta-inner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    
     background-image: inherit;  
    background-color: inherit; 
    background-size: cover;
    background-position: center;
    z-index: 0;  
    
     transition: transform 0.4s ease;
}

 .eyelit-cta-wrapper .ecta-inner:hover::before {
    transform: scale(1.05);
}

 .eyelit-cta-wrapper .ecta-col {
    position: relative;  
    z-index: 1;  
    display: flex;
    flex-direction: column;
    justify-content: center;
}

 
.eyelit-cta-wrapper.ecta-cols-2 .ecta-col-1,
.eyelit-cta-wrapper.ecta-cols-2 .ecta-col-2 {
    flex: 1;
    min-width: 300px;
}
.eyelit-cta-wrapper.ecta-cols-1 .ecta-col {
    flex-basis: 100%;
    width: 100%;
}

 .eyelit-cta-wrapper .ecta-subtitle {
    margin: 0 0 10px;
    font-size: 1rem;
    font-weight: 600;
    color: var(--eyelit-color-primary);
}

.eyelit-cta-wrapper .ecta-title {
    margin: 0 0 20px;
}

.eyelit-cta-wrapper .ecta-description {
    margin-bottom: 30px;
}

 .eyelit-cta-wrapper .ecta-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.eyelit-cta-wrapper .ecta-button {
    text-decoration: none;
 }

 .eyelit-cta-wrapper .ecta-button.button-secondary {
    background-color: transparent;
    color: var(--eyelit-color-primary);
    border: 2px solid var(--eyelit-color-primary);
}
.eyelit-cta-wrapper .ecta-button.button-secondary:hover {
    background-color: var(--eyelit-color-primary);
    color: #fff;
}


 @media (max-width: 767px) {
    .eyelit-cta-wrapper.ecta-cols-2 .ecta-inner {
        flex-direction: column;
    }
}
.eyelit-cta-wrapper .ecta-col-2 {
    text-align: left;
}
.eyelit-cta-wrapper .ecta-buttons {
    justify-content: flex-start;
}

/* --- Center (Desktop) --- */
.ecta-content-align-center .ecta-col-2 {
    text-align: center;
}
.ecta-content-align-center .ecta-buttons {
    justify-content: center;
}

/* --- Right (Desktop) --- */
.ecta-content-align-right .ecta-col-2 {
    text-align: right;
}
.ecta-content-align-right .ecta-buttons {
    justify-content: flex-end;
}

/* ---  Responsive (Tablette) --- */
@media (max-width: 1024px) {
    .ecta-content-align-tablet-left .ecta-col-2 { text-align: left; }
    .ecta-content-align-tablet-left .ecta-buttons { justify-content: flex-start; }
    
    .ecta-content-align-tablet-center .ecta-col-2 { text-align: center; }
    .ecta-content-align-tablet-center .ecta-buttons { justify-content: center; }
    
    .ecta-content-align-tablet-right .ecta-col-2 { text-align: right; }
    .ecta-content-align-tablet-right .ecta-buttons { justify-content: flex-end; }
}

 @media (max-width: 767px) {
    .ecta-content-align-mobile-left .ecta-col-2 { text-align: left; }
    .ecta-content-align-mobile-left .ecta-buttons { justify-content: flex-start; }
    
    .ecta-content-align-mobile-center .ecta-col-2 { text-align: center; }
    .ecta-content-align-mobile-center .ecta-buttons { justify-content: center; }

    .ecta-content-align-mobile-right .ecta-col-2 { text-align: right; }
    .ecta-content-align-mobile-right .ecta-buttons { justify-content: flex-end; }
}