/* Custom Arrows */
.custom-arrows {
    position: relative;
    width: 70px;
    margin: 0 auto;
    z-index: 2;
}

.custom-arrow {
    cursor: pointer;
    z-index: 10;
}

.custom-arrow:hover {
    opacity: 1;
}

.slick-dots {
    display: inline-flex;
    align-items: center;
    margin-top: 100px;
    padding: 0;
    list-style: none;
}

.slick-dots button {
    line-height: 1;
    height: auto;
    border: 0;
    font-size: 0;
    color: transparent;
    background: transparent !important;
}

.slick-dots button:before {
    content: '';
    width: 10px;
    height: 10px;
    display: block;
    background: #E2DBD5;
    cursor: pointer;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.slick-dots .slick-active button:before {
    width: 20px;
    height: 20px;
    background: black;
    border: 5px solid white;
    outline: black solid 1px;
}

.quote-image img {
    width: 60px;
}

/* Responsive adjustments for custom arrows */
@media (max-width: 1024px) {
    .custom-arrow.arrow-prev {
        left: -30px;
    }
    
    .custom-arrow.arrow-next {
        right: -30px;
    }
}

@media (max-width: 767px) {
    .custom-arrows {
        display: none;
    }
}

/* Hide default arrows when using custom arrows */
[data-custom-arrows="yes"] .slick-arrow {
    display: none !important;
}