/* 이미지 Lazy Loading 스타일 */

/* 로딩 중 애니메이션 */
img[data-src],
img.loading {
  background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
  background-size: 200% 100%;
  animation: loading 1.5s infinite;
  min-height: 100px;
  min-width: 100px;
}

@keyframes loading {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

/* 로드 완료 */
img.loaded {
  animation: fadeIn 0.3s ease-in;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* 에러 상태 */
img.error {
  background: #fee;
  border: 1px dashed #f00;
}

/* 교인 사진 최적화 */
.member-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

/* 교회 사진 최적화 */
.church-photo {
  width: 100%;
  height: auto;
  object-fit: cover;
}

/* 아이콘 최적화 */
.icon-svg {
  width: 24px;
  height: 24px;
  display: inline-block;
}
