/* Photo section enhancements for dynamic photo cards */
.photo-img-wrapper {
  width: 100%;
  aspect-ratio: 4/3;
  background: #f3f3f3;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: 10px 10px 0 0;
}
.photo-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.photo-card {
  background: var(--card-bg, #fff);
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
  margin-bottom: 1.5rem;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.photo-info {
  padding: 1rem;
}
@media (min-width: 600px) {
  .photos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
  }
}
