/* ==========================================================================
   lfb-photos.css — фотоблок на главной
   Без анимаций: ни появления, ни движения, ни эффектов при наведении.
   Откат: убрать extra_css и секцию в home.html.
   ========================================================================== */

.lfb-photos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
@media (max-width: 900px) {
  .lfb-photos-grid { grid-template-columns: repeat(2, 1fr); }
  .lfb-photos-grid > :first-child { grid-column: 1 / -1; }
}
@media (max-width: 560px) {
  .lfb-photos-grid { grid-template-columns: 1fr; }
  .lfb-photos-grid > :first-child { grid-column: auto; }
}

.lfb-photo figure {
  margin: 0;
}
.lfb-photo img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: var(--surface);
}
.lfb-photo figcaption {
  margin-top: 12px;
}
.lfb-photo-title {
  font-weight: 650;
  color: var(--text);
  font-size: 15px;
  line-height: 1.3;
}
.lfb-photo-text {
  color: var(--muted);
  font-size: 13.5px;
  line-height: 1.5;
  margin-top: 4px;
}
