/* ===== Gallery Section ===== */
.section-gallery{
  padding: 0;
  background: #071e28;
}

.gallery-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  width: 100%;
}

.gallery-item{
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  margin: 0;
}

.gallery-item img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.gallery-placeholder{
  display: flex;
  align-items: center;
  justify-content: center;
  background: #0b2633;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

@media (max-width: 900px){
  .gallery-grid{
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 560px){
  .gallery-grid{
    grid-template-columns: 1fr;
  }
}
