/* Promotions CSS */
.promo-sliders {
    width: 100%;
    margin-bottom: 30px;
}

.promo-slider {
    display: flex;
    flex-wrap: wrap;
}

.promo-slider-left {
    width: 40%;
    padding-right: 30px;
}

.promo-slider-right {
    width: 100%;
}

.promo-left-slider {
    height: 200px;
    overflow: hidden;
}

.promo-left-slider-controls {
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
    align-items: center;
}

.promo-right-slider {
    position: relative;
}

.promo-right-slider img {
    max-width: 100%;
    height: auto;
}

.promo-slider-right.promo-border {
    border-bottom-left-radius: 50px;
    border-top-right-radius: 50px;
    border: 15px solid #F88D4C;
}

.promo-slider-right .slick-dots li button {
    border: 3px solid #0E6AB5;
    border-radius: 50%;
}

.promo-slider-right .slick-dots .slick-active button:before {
    color: #0E6AB5 !important;
    border: none !important;
    opacity: 1 !important;
    border-radius: 50%;
}

.promo-slider-right .slick-dots li button:before{
    font-size: 20px !important;
    line-height: 24px !important;
    border-radius: 50%;
    color: none !important;
    opacity: 0 !important;
}
.promo-title {
    padding: 15px;
    text-align: center;
}

.promo-title a {
    text-decoration: none;
    font-weight: bold;
    font-size: 18px;
    color: #0E6AB5;
}

.promo-title a:hover,
.promo-title a:focus {
    text-decoration: underline;
    color: #084d8a;
}

.slider-arrow-control {
    display: flex;
    gap: 10px;
}

.promo-border {
    border: 1px solid #eee;
    border-radius: 4px;
}

.see-all-promos {
    text-decoration: none;
    padding: 10px 20px;
    display: inline-block;
    background-color: #0E6AB5;
    color: #fff;
    border-radius: 5px;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.see-all-promos:hover,
.see-all-promos:focus {
    background-color: #084d8a;
    color: #fff;
    text-decoration: none;
}

.navigator {
    list-style: none;
    padding: 0;
    margin: 0;
}

/* Responsive styles */
@media (max-width: 768px) {
    .promo-slider {
        flex-direction: column;
    }
    
    .promo-slider-left,
    .promo-slider-right {
        width: 100%;
        padding-right: 0;
    }
    
    .promo-slider-right {
        margin-top: 20px;
    }
} 
