/* Wedding-page photography. All images referenced here are from the supplied wedding-ceremony batch. */
.weddings-page .wedding-hero-meta {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: .9rem;
}
.weddings-page .wedding-photo {
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  background: #070707;
  box-shadow: 0 18px 48px rgba(0,0,0,.32);
}
.weddings-page .wedding-photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.weddings-page .wedding-photo figcaption {
  padding: 10px 14px 12px;
  border-top: 1px solid rgba(210,162,58,.22);
  color: var(--muted);
  background: #080706;
  font-size: .8rem;
}
.weddings-page .wedding-hero-photo {
  height: 460px;
  align-self: stretch;
}
.weddings-page .wedding-hero-photo img {
  object-position: center 30%;
}
.weddings-page .wedding-photo-section {
  padding-top: 44px;
  padding-bottom: 48px;
  border-top: 1px solid rgba(210,162,58,.16);
  border-bottom: 1px solid rgba(210,162,58,.16);
  background: rgba(0,0,0,.18);
}
.weddings-page .wedding-photo-section .section-head {
  margin-bottom: 26px;
}
.weddings-page .wedding-photo-grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr 1fr;
  gap: 16px;
}
.weddings-page .wedding-photo-grid .wedding-photo {
  height: 360px;
}
.weddings-page .wedding-photo-grid .wedding-photo:nth-child(1) img { object-position: center 38%; }
.weddings-page .wedding-photo-grid .wedding-photo:nth-child(2) img { object-position: center 26%; }
.weddings-page .wedding-photo-grid .wedding-photo:nth-child(3) img { object-position: center 36%; }

@media (max-width: 900px) {
  .weddings-page .wedding-hero-photo { height: 390px; }
  .weddings-page .wedding-photo-grid { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .weddings-page .wedding-photo-grid .wedding-photo:last-child { grid-column: 1 / -1; }
}
@media (max-width: 640px) {
  .weddings-page .wedding-hero-photo { height: 340px; }
  .weddings-page .wedding-photo-grid { grid-template-columns: 1fr; }
  .weddings-page .wedding-photo-grid .wedding-photo,
  .weddings-page .wedding-photo-grid .wedding-photo:last-child { height: 320px; grid-column: auto; }
  .weddings-page .wedding-photo-section { padding-top: 34px; padding-bottom: 38px; }
}
