/* ================= Home Photo Gallery (Block) ================= */
.home-photo-gallery { background-size: auto; background-position: center top; background-repeat: repeat; padding: 36px 0 60px; }
.home-photo-gallery .gallery-header { text-align: center; max-width: 1100px; margin: 0 auto 20px; color: #fff; }
.gallery-kicker { 
    font-family: "Averia Serif Libre", sans-serif;
    font-weight: 400;
    font-size: 2rem;
    line-height: 1.2;
    margin: 0 0 6px;
}
.gallery-title { color: #cb3638; font-size: 40px; margin: 0 0 12px; font-weight: 900; letter-spacing: 1px; }
.gallery-desc { opacity: .9; font-size: 1.2rem; }
.gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 26px; }
.gallery-item { 
    border-radius: 6px; 
    overflow: hidden; 
    box-shadow: 0 10px 24px rgba(0,0,0,.3); 
    position: relative;
}

.gallery-item img { 
    width: 100%; 
    height: 100%; 
    object-fit: cover; 
    display: block; 
}

.gallery-item:hover .image-alt-tooltip {
    opacity: 1;
    visibility: visible;
}

.image-alt-tooltip {
    position: absolute;
    bottom: 10px;
    left: 10px;
    right: 10px;
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 8px 12px;
    border-radius: 4px;
    font-size: 12px;
    line-height: 1.3;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    z-index: 10;
    word-wrap: break-word;
}

@media (max-width: 1024px) {
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 768px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
}


