.easy-custom-slider-container {
    position: relative;
    width: 100%;
    height: 80vh;
    overflow: hidden;
}
.easy-custom-slider-wrapper {
    display: flex;
    height: 100%;
    transition: transform 0.6s ease-in-out;
}
.easy-slide-item {
    flex: 0 0 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center; 
}
.easy-slide-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.4);
    z-index: 1;
}
.easy-slide-content {
    position: relative;
    z-index: 2;
    width: 100%;
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
}
.easy-slide-title, .easy-slide-subtitle {
    margin: 0 0 20px 0;
    line-height: 1.2;
}
/* --- Fixed Button Width --- */
.easy-slide-button {
    display: inline-block;
    width: fit-content;    /* Size by text content */
    align-self: inherit;   /* Uses Alignment from Elementor settings */
    padding: 15px 35px;
    text-decoration: none;
    font-weight: bold;
    transition: 0.3s;
    border-radius: 0;
}
/* --- Arrows --- */
.easy-slider-arrow {
    position: absolute;
    top: 50%; 
    transform: translateY(-50%);
    z-index: 10; 
    cursor: pointer;
    background: rgba(0, 0, 0, 0.4); 
    color: #fff;
    padding: 15px 20px;
    font-family: monospace;
    font-size: 24px;
    line-height: 1;
    transition: background 0.3s ease;
}
.easy-slider-arrow:hover {
    background: rgba(0, 0, 0, 0.7);
}
.easy-slider-arrow.prev { left: 20px; }
.easy-slider-arrow.next { right: 20px; }