/*
  Bushvalley ARC responsive image display fix
  Keeps content photographs centred and fully visible at every screen size.
  This file is loaded after the site's main stylesheet so it safely overrides
  earlier object-fit: cover rules without changing the surrounding layout.
*/

main img {
  display: block;
  max-width: 100%;
  object-fit: contain !important;
  object-position: 50% 50% !important;
}

main .feature-image img,
main .photo-card > img,
main .person > img,
main .gallery img {
  width: 100%;
  margin-inline: auto;
  background-color: #f3f5f7;
}

/* The club logo used inside page content should retain its natural ratio. */
main .history-club-logo img {
  height: auto !important;
}
