/* Styles pour l'interface front-end */

.am-videos-saut-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.am-videos-saut-container h2 {
    margin-bottom: 30px;
    font-size: 24px;
    font-weight: 600;
}

.am-videos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 20px;
}

.am-video-item {
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: box-shadow 0.3s ease;
}

.am-video-item:hover {
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

.am-video-thumbnail {
    width: 100%;
    background: #000;
    position: relative;
    overflow: hidden;
}

.am-video-thumbnail video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.am-video-info {
    padding: 20px;
}

.am-video-info h3 {
    margin: 0 0 10px 0;
    font-size: 18px;
    font-weight: 600;
    color: #333;
}

.am-video-name {
    font-size: 14px;
    font-weight: 600;
    color: #333;
}

.am-video-date,
.am-video-size {
    font-size: 12px;
    margin: 5px 0;
}

.am-download-btn {
    margin-top: 15px;
    display: inline-block;
    padding: 10px 20px;
    background-color: #0073aa;
    color: #fff;
    text-decoration: none;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

.am-download-btn:hover {
    background-color: #005a87;
    color: #fff;
}

@media (max-width: 768px) {
    .am-videos-grid {
        grid-template-columns: 1fr;
    }
}

