.dp-todays-slider-section {
    width: 100%;
    padding: 40px 20px;
    overflow: hidden;
}

.dp-todays-slider-wrapper {
    position: relative;
    width: 100%;
    max-width: 1300px;
    margin: auto;
    overflow: hidden;
    aspect-ratio: 765 / 383;
}

.dp-todays-slide {
    position: absolute;
    inset: 0;
    width: 100%;
    transform: translateX(100%);
    transition: transform .8s ease;
    opacity: 0;
    visibility: hidden;
}

.dp-todays-slide.active {
    position: relative;
    transform: translateX(0);
    z-index: 5;
    opacity: 1;
    visibility: visible;
}

.dp-todays-slide.prev {
    transform: translateX(-100%);
    opacity: 1;
    visibility: visible;
}

.dp-todays-slider-box {
    width: 100%;
    overflow: hidden;
}

.dp-todays-slider-box img {
    width: 100%;
    display: block;
    object-fit: cover;
}

.dp-todays-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 55px;
    height: 55px;
    border: 1px solid rgba(255,255,255,.2);
    background: rgba(0,0,0,.5);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    cursor: pointer;
    z-index: 20;
    transition: .3s;
    opacity: 0;
    visibility: hidden;
}

.dp-todays-slider-wrapper:hover .dp-todays-arrow {
    opacity: 1;
    visibility: visible;
}

.dp-todays-arrow:hover {
    background: #ffb000;
    color: #000;
}

.dp-todays-prev-btn {
    left: 20px;
}

.dp-todays-next-btn {
    right: 20px;
}

.dp-todays-slider-dots {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-top: 30px;
}

.dp-todays-dot {
    width: 7px;
    height: 6px;
    background: #D9D9D9;
    opacity: 13%;
    position: relative;
    cursor: pointer;
}

.dp-todays-dot.active {
    background: #FFB000;
    opacity: 99%;
}

@media(max-width:991px) {
    .dp-todays-slider-section {
        padding: 20px 15px;
    }
    .dp-todays-arrow {
        width: 45px;
        height: 45px;
        font-size: 18px;
    }
}

@media(max-width:767px) {
    .dp-todays-arrow {
        width: 38px;
        height: 38px;
        font-size: 14px;
    }
    .dp-todays-prev-btn {
        left: 10px;
    }
    .dp-todays-next-btn {
        right: 10px;
    }
}
