/* Galerie-Layout */
.aig-gallery-item {
    margin-bottom: 10px;
    float: left;
    border-radius: 5px;
    overflow: hidden;
    position: relative;
}

.aig-gallery-item img {
    width: 100%;
    height: auto;
    display: block;
}

#aig-gallery {
    --widgets-spacing: 10px 10px;
}

.aig-download-link {
    position: absolute;
    bottom: 10px;
    right: 10px;
    background-color: rgba(0, 0, 0, 0.6);
    color: white;
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 14px;
    text-decoration: none;
    display: none;
}

.aig-gallery-item:hover .aig-download-link {
    display: block;
}

@media (max-width: 768px) {
    .aig-download-link {
        display: block !important; /* Immer sichtbar auf Mobilgeräten */
        font-size: 16px; /* Etwas größer auf Mobilgeräten */
        bottom: 5px;
        right: 5px;
        padding: 8px 12px;
    }
}