.featured-ad-sidebar-widget {
    padding: 12px;
    background-color: #fff;
    border-radius: 14px;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    font-family: 'Segoe UI', Tahoma, sans-serif;
}

.featured-ad-sidebar-widget .widget-title {
    font-size: 19px;
    font-weight: 700;
    margin-bottom: 14px;
    text-align: center;
    color: #222;
    border-bottom: 1px solid #eee;
    padding-bottom: 8px;
    letter-spacing: 0.3px;
}

.featured-ad-fader {
    position: relative;
    height: 265px;
    overflow: hidden;
}

.ad-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
    pointer-events: none;
    border-radius: 10px;
    background: #fefefe;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.ad-slide.active {
    opacity: 1;
    pointer-events: auto;
}

.ad-slide a {
    display: block;
    text-decoration: none;
    color: inherit;
    transition: transform 0.3s ease;
}

.ad-slide:hover a {
    transform: scale(1.03);
}

.ad-slide img {
    width: 100%;
    height: 160px;
    object-fit: cover;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    transition: transform 0.3s ease;
}

.ad-slide p {
    margin: 0;
    font-size: 15px;
    font-weight: 600;
    padding: 10px 8px 6px;
    text-align: center;
    color: #333;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.view-ad-btn {
    display: block;
    text-align: center;
    background-color: #e63946;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    padding: 8px 12px;
    margin: 8px auto 10px;
    border-radius: 6px;
    width: 85%;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.view-ad-btn:hover {
    background-color: #d62839 !important;
    color: #fff !important;
    text-decoration: none !important;
}