/* ── Gallery Grid ── */
.photo-grid {
  columns: 3 200px;
  column-gap: 0.6rem;
  margin-top: 1rem;
}

.photo-item {
  display: block;
  break-inside: avoid;
  margin-bottom: 0.6rem;
  overflow: hidden;
  border-radius: 4px;
  cursor: zoom-in;
}

.photo-item img {
  display: block;
  width: 100%;
  height: auto;
  transition: transform 0.4s ease;
}

.photo-item:hover img {
  transform: scale(1.04);
}






/* Galleria collassata */
.photo-grid-collapsed {
    max-height: 560px;
    overflow: hidden;
    transition: max-height 0.5s ease;
}

.photo-grid-expanded {
    max-height: 9999px;
    transition: none; /* rimuove la transizione sull'apertura */
}

.gallery-toggle-wrap {
    text-align: center;
    margin-top: 0.75rem;
}

.gallery-toggle-btn {
    background: none;
    border: 1px solid #aaa;
    padding: 6px 20px;
    cursor: pointer;
    border-radius: 4px;
    font-size: 0.9rem;
    transition: background 0.2s;
}

.gallery-toggle-btn:hover {
    background: #eee;
}





@media screen and (max-width: 767px) {
    /* .photo-grid-expanded {
        max-height: 9999px;
        overflow:   visible;
        transition: none;
    }

    .photo-grid {
        column-count: 1 !important;
        column-width:  100% !important;
    } */


}