/* Igreja Luz da Verdade — galeria da comunidade */
.community-gallery-section {
  background: linear-gradient(180deg, #F8FAFC 0%, #FFFFFF 100%);
  color: #1E293B;
}

.community-gallery-header {
  max-width: 680px;
  margin: 0 auto clamp(2rem, 4vw, 3.25rem);
  text-align: center;
}

.community-gallery-header .section-title {
  margin-bottom: 0.7rem;
}

.community-gallery-header p {
  color: #64748B;
  font-size: 1.02rem;
}

.community-gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  grid-auto-rows: minmax(160px, 1fr);
  gap: clamp(0.8rem, 1.5vw, 1.25rem);
}

.community-photo {
  position: relative;
  min-height: 255px;
  overflow: hidden;
  border-radius: 18px;
  background: #0F172A;
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.12);
  isolation: isolate;
}

.community-photo::after {
  position: absolute;
  inset: 0;
  z-index: 1;
  content: '';
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.02) 35%, rgba(15, 23, 42, 0.84) 100%);
  pointer-events: none;
}

.community-photo img {
  width: 100%;
  height: 100%;
  min-height: 100%;
  object-fit: cover;
  transition: transform 500ms ease;
}

.community-photo:hover img {
  transform: scale(1.045);
}

.community-photo figcaption {
  position: absolute;
  right: 1.35rem;
  bottom: 1.25rem;
  left: 1.35rem;
  z-index: 2;
  color: #FFFFFF;
}

.community-photo figcaption span {
  display: block;
  margin-bottom: 0.15rem;
  color: #F5D77B;
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.community-photo h3 {
  font-family: var(--font-display);
  font-size: clamp(1.12rem, 2vw, 1.5rem);
  font-weight: 800;
  line-height: 1.2;
}

.community-photo--featured {
  grid-column: span 7;
  grid-row: span 2;
  min-height: 550px;
}

.community-photo--featured h3 {
  font-size: clamp(1.5rem, 3vw, 2.15rem);
}

.community-photo--intercessao,
.community-photo--comunhao {
  grid-column: span 5;
}

.community-photo--pastoras,
.community-photo--coral,
.community-photo--bandeiras {
  grid-column: span 4;
}

.community-photo--panorama {
  grid-column: span 12;
  min-height: 390px;
}

.community-photo--intercessao img { object-position: center 42%; }
.community-photo--comunhao img { object-position: center 46%; }
.community-photo--pastoras img { object-position: center 48%; }
.community-photo--coral img { object-position: center 50%; }
.community-photo--bandeiras img { object-position: center 45%; }
.community-photo--panorama img { object-position: center 48%; }

.community-gallery-cta {
  margin-top: clamp(2rem, 4vw, 3rem);
  text-align: center;
}

@media (max-width: 780px) {
  .community-gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: auto;
  }

  .community-photo,
  .community-photo--featured,
  .community-photo--intercessao,
  .community-photo--comunhao,
  .community-photo--pastoras,
  .community-photo--coral,
  .community-photo--bandeiras,
  .community-photo--panorama {
    grid-column: span 1;
    grid-row: auto;
    min-height: 260px;
  }

  .community-photo--featured {
    grid-column: span 2;
    min-height: 380px;
  }
}

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

  .community-photo,
  .community-photo--featured {
    grid-column: span 1;
    min-height: 290px;
  }

  .community-photo--featured { min-height: 390px; }
}

@media (prefers-reduced-motion: reduce) {
  .community-photo img { transition: none; }
}
