.featured-wrapper {
    position: relative;
}

.featured-wrapper.has-rotation .content-card--featured {
    opacity: 0;
    visibility: hidden;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    transition: opacity 0.5s ease;
}

.featured-wrapper.has-rotation .content-card--featured:first-child {
    position: relative;
}

.featured-wrapper.has-rotation .content-card--featured.active {
    opacity: 1;
    visibility: visible;
    z-index: 1;
}

.featured-controls {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 15px;
    align-items: center;
    z-index: 10;
    background: rgba(0,0,0,0.6);
    padding: 10px 15px;
    border-radius: 20px;
}

.featured-nav {
    background: white;
    border: none;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 20px;
    line-height: 1;
    transition: transform 0.2s;
}

.featured-nav:hover {
    transform: scale(1.1);
}

.featured-dots {
    display: flex;
    gap: 8px;
}

.featured-dot {
    width: 8px;
    height: 8px;
    border-radius: 4px;
    background: rgba(255,255,255,0.5);
    cursor: pointer;
    transition: all 0.3s;
}

.featured-dot.active {
    background: white;
    width: 20px;
}
