.featured-carousel {
    position: relative;
    width: 100%;
    padding-bottom: 24px;
}

.featured-slide {
    display: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.featured-slide.active {
    display: block;
    opacity: 1;
}

/* Ensure images in featured slides maintain aspect ratio */
.featured-slide .menu-link-image {
    object-fit: cover;
    object-position: center;
    width: 100%;
    height: 184px;
    border-radius: 12px;
}

/* Solutions navigation specific styling - dark blue theme */
.featured-doc.solutions-theme {
    background-color: rgba(42, 99, 244, 0.3); /* Dark blue theme instead of orange */
    border: 1px solid rgba(42, 99, 244, 0.2);
}

.featured-doc.solutions-theme:hover {
    background-color: rgba(42, 99, 244, 0.4);
    border-color: rgba(42, 99, 244, 0.3);
}

.carousel-dots {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 16px;
}

.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.dot.active {
    background-color: rgba(255, 255, 255, 0.9);
} 