/* Grid do álbum (estático, sem animação) */

.nossas-fotos-grid {
  display: flex;
  flex-direction: row;
  gap: 0.5rem;
  justify-content: center;
  padding: 0.5rem 0;
  overflow: hidden;
}

.nossas-fotos-col {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  flex: 0 0 auto;
}

.nossas-fotos-grid .photo-wrap {
  width: 100px;
  height: 100px;
  flex-shrink: 0;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}

.nossas-fotos-grid .photo-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

@media (min-width: 375px) {
  .nossas-fotos-grid .photo-wrap {
    width: 110px;
    height: 110px;
  }
}

@media (min-width: 600px) {
  .nossas-fotos-grid {
    gap: 0.75rem;
  }
  .nossas-fotos-col {
    gap: 0.75rem;
  }
  .nossas-fotos-grid .photo-wrap {
    width: 140px;
    height: 140px;
  }
}

.nossas-fotos-footer {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.08);
  text-align: center;
}

.nossas-fotos-footer .ver-todas {
  display: inline-block;
  min-height: var(--tap-min);
  padding: 0.75rem 1.5rem;
  margin-bottom: 1rem;
  font-size: 1rem;
  font-weight: 500;
  color: var(--accent);
  background: var(--bg-card);
  border: 1px solid rgba(201, 162, 39, 0.4);
  border-radius: var(--radius-sm);
  cursor: pointer;
  text-decoration: none;
  -webkit-tap-highlight-color: transparent;
}

.nossas-fotos-footer .hint {
  font-size: 0.9rem;
  color: var(--text-muted);
}
