.cig-gallery {
    width: 100%;
}

.cig-gallery-item {
    width: calc(33.333% - 10px);
    margin-bottom: 10px;
}

.cig-gallery-item img {
    display: block;
    width: 100%;
    height: auto;
}

/* Styles pour mobile */
@media (max-width: 767px) {
    .cig-gallery-item {
        width: calc(50% - 10px);
    }
}

/* Autres styles inchangés */
.lightbox-download-button {
    position: absolute;
    bottom: 10px;
    right: 10px;
    display: inline-block;
    padding: 5px 10px;
    background-color: #007bff;
    color: #fff !important;
    text-decoration: none;
    border-radius: 3px;
    z-index: 9999;
}

.lightbox-download-button:hover {
    background-color: #0056b3;
    text-decoration: none;
}

.lb-details a {
    color: #fff;
    text-decoration: underline;
}

.lb-details a:hover {
    color: #ddd;
}

#cig-loader {
    text-align: center;
    padding: 20px;
    font-size: 18px;
}

#cig-load-more {
    display: block;
    margin: 20px auto;
    padding: 10px 20px;
    background-color: #007bff;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

#cig-load-more:hover {
    background-color: #0056b3;
}

.loading-placeholder {
    background: #f0f0f0;
    height: 200px;
    margin-bottom: 10px;
  }
  .placeholder-content {
    background: linear-gradient(to right, #f0f0f0 8%, #e0e0e0 18%, #f0f0f0 33%);
    background-size: 800px 104px;
    height: 100%;
    position: relative;
    animation: placeholderShimmer 1s linear infinite forwards;
  }
  @keyframes placeholderShimmer {
    0% { background-position: -468px 0 }
    100% { background-position: 468px 0 }
  }