.hero-container {
    margin: 15px auto;
    aspect-ratio: 16 / 9;
    width: 95%;
    max-height: 350px;
    border: 1px solid var(--border);
    border-radius: 12px;
    overflow: hidden;
    background-color: var(--lighter-secondary);
    position: relative;
}

.hero-thumbnailer{
    width: 100%;
    height: 100%;
    overflow: hidden;
    border-radius: 12px;
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-slide{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transition: opacity 0.5s ease-in-out;
}

.hero-slide.fade-out{
    opacity: 0;
}

.hero-slide.fade-in{
    opacity: 1;
}

.hero-image{
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.full-width{
    width: 100%;
}

/* CTA Button */
.cta-button{
    position: absolute;
    padding: 8px 32px;
    background-color: var(--secondary);
    color: white;
    text-decoration: none;
    border: 1px solid var(--border);
    border-radius: 8px;
    font-weight: 350;
    font-size: 16px;
    transition: all 0.3s ease;
    z-index: 2;
}

.cta-button:hover{
    background-color: var(--secondary);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.bottom-left{
    bottom: 20px;
    left: 20px;
}

/* Hero Action Controls */
.hero-action{
    position: absolute;
    display: flex;
    gap: 8px;
    background-color: transparent;
    backdrop-filter: blur(8px);
    padding: 8px 12px;
    border-radius: 8px;
    z-index: 2;
}

.bottom-right{
    bottom: 10px;
    right: 10px;
}

.hero-action a{
    text-decoration: none;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border);
    border-radius: 50%;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.2s ease;
    background-color: white;
}

.hero-action a svg{
    display: block;
    width: 20px;
    height: 20px;
}

.hero-action a .pause-icon,
.hero-action a .play-icon{
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 0;
}

.hero-action a:hover{
    background-color: rgba(255, 255, 255, 0.2);
    transform: scale(1.05);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-container{
        max-height: 250px;
    }
    
    .cta-button{
        padding: 10px 24px;
        font-size: 14px;
    }
    
    .bottom-left{
        bottom: 15px;
        left: 15px;
    }
    
    .hero-action{
        padding: 6px 8px;
        gap: 6px;
    }
    
    .bottom-right{
        bottom: 5px;
        right: 5px;
    }
    
    .hero-action a{
        padding: 5px 10px;
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    .hero-container{
        max-height: 200px;
    }
    
    .cta-button{
        padding: 8px 20px;
        font-size: 13px;
    }
    
    .hero-action a{
        padding: 4px 8px;
        font-size: 11px;
    }

    /* Hero Action Controls */
    .hero-action{
        position: absolute;
        display: flex;
        gap: 4px;
        background-color: transparent;
        backdrop-filter: blur(8px);
        padding: 4px 6px;
        border-radius: 8px;
        z-index: 2;
    }

    .bottom-right{
        bottom: 6px;
        right: 6px;
    }

    .hero-action a{
        text-decoration: none;
        width: 30px;
        height: 30px;
        display: flex;
        align-items: center;
        justify-content: center;
        border: 1px solid var(--border);
        border-radius: 50%;
        font-size: 14px;
        font-weight: 500;
        transition: all 0.2s ease;
        background-color: white;
    }

    .hero-action a svg{
        display: block;
        width: 16px;
        height: 16px;
    }

    .hero-action a .pause-icon,
    .hero-action a .play-icon{
        display: flex;
        align-items: center;
        justify-content: center;
        line-height: 0;
    }
}