/* Grid Layout */
.bunny-video-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr)); /* Aumentamos el tamaño mínimo */
    gap: 20px;
    padding: 20px;
    justify-content: center;
}

/* Video Item Styling */
.bunny-video-item {
    background: #fff;
    border-radius: 8px;
    padding: 15px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Hover Effect */
.bunny-video-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

/* Title and Description */
.bunny-video-item h3 {
    font-size: 18px;
    margin-bottom: 8px;
}

.bunny-video-item p {
    font-size: 14px;
    color: #667;
    margin-bottom: 10px;
}

/* Responsive Video */
.bunny-video-item iframe {
    width: 100%;
    aspect-ratio: 16 / 9;
    border-radius: 5px;
}

/* Pagination Styling */
.bunny-pagination {
    text-align: center;
    margin: 20px 0;
}

.bunny-pagination a {
    display: inline-block;
    padding: 8px 12px;
    margin: 0 5px;
    text-decoration: none;
    background: #0073aa;
    color: #fff;
    border-radius: 5px;
    transition: background 0.3s ease;
}

.bunny-pagination a:hover {
    background: #005b8e;
}

.bunny-prev {
    margin-right: 10px;
}

.bunny-next {
    margin-left: 10px;
}

/* Ajuste de tamaño en pantallas grandes */
@media (min-width: 1024px) {
    .bunny-video-list {
        grid-template-columns: repeat(auto-fit, minmax(500px, 1fr)); /* Aumentamos el tamaño en desktop */
    }
}
