/* Market photographs from a Cowboys & Country Saturday. */
.hr-market__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 36px;
}
.hr-market__shot {
  display: block;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0,0,0,.12);
  transition: box-shadow .2s ease;
}
.hr-market__shot:hover { box-shadow: 0 6px 20px rgba(0,0,0,.22); }
.hr-market__shot img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  display: block;
  transition: transform .35s ease;
}
.hr-market__shot:hover img { transform: scale(1.04); }

@media (max-width: 900px) {
  .hr-market__grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
}
@media (max-width: 560px) {
  .hr-market__grid { grid-template-columns: 1fr; }
}

.hr-market__shot--wide { grid-column: span 2; }
.hr-market__shot--wide img { aspect-ratio: 16 / 10; }

.hr-market__more {
  text-align: center;
  margin: 26px 0 0;
  font-size: 17px;
}

@media (max-width: 560px) {
  .hr-market__shot--wide { grid-column: span 1; }
  .hr-market__shot--wide img { aspect-ratio: 4 / 5; }
}
