/* Contenedor de flyers */
.martilleros-flyers-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 100%;
}

/* Item individual */
.flyer-item {
    width: 100%;
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.flyer-item:hover {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
    transform: translateY(-3px);
}

/* Links */
.flyer-item a {
    display: block;
    width: 100%;
    cursor: pointer;
}

/* Imágenes */
.flyer-item img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

.flyer-item a:hover img {
    transform: scale(1.05);
}

/* Personalizar GLightbox para flechas siempre visibles */
.gslide-description {
    display: none !important;
}

.gnext, .gprev {
    opacity: 1 !important;
}