.promo-sidebar {
    position: sticky;
    top: 2rem;
    height: fit-content;
}

.promo-sidebar .widget {
    background-color: #fff;
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 2rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.promo-sidebar .widget h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--border-color);
}

.promo-sidebar .widget img {
    width: 100%;
    border-radius: 8px;
    margin-bottom: 1rem;
}

.promo-sidebar .widget p {
    font-size: 1rem;
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.sidebar-slider-container {
    position: relative;
}

.sidebar-slides {
    overflow: hidden;
    position: relative;
    height: 100px;
}

.sidebar-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.sidebar-slide.active {
    opacity: 1;
}

.sidebar-slide a {
    text-decoration: none;
    color: inherit;
}

.sidebar-slide-caption h5 {
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.4;
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.4);
    color: white;
    border: none;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.2s ease;
    z-index: 10;
}

.prev-btn {
    left: 10px;
}

.next-btn {
    right: 10px;
}
