.fleet-photo {
  display: block;
  width: 100%;
  height: 190px;
  margin-bottom: 23px;
  object-fit: cover;
  object-position: center 58%;
}

.brand-mark {
  width: 44px;
  height: 44px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  object-fit: cover;
}

.golf-thumbs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin: -15px 0 18px;
}

.golf-thumbs img {
  width: 100%;
  height: 90px;
  object-fit: cover;
  object-position: center 58%;
}

.footer-brand img {
  display: block;
  width: 132px;
  height: 132px;
  object-fit: cover;
}

.vito-gallery {
  background: #fff;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 250px;
  gap: 12px;
}

.gallery-grid figure {
  position: relative;
  margin: 0;
  overflow: hidden;
  background: var(--navy);
}

.gallery-grid figure.wide {
  grid-column: span 2;
}

.gallery-grid figure.tall {
  grid-row: span 2;
}

.gallery-grid img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .45s ease;
}

.gallery-grid figure:hover img {
  transform: scale(1.025);
}

.gallery-grid figcaption {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 36px 17px 14px;
  color: #fff;
  font-size: 13px;
  font-weight: 800;
  background: linear-gradient(transparent, #061a29d9);
}

@media (max-width: 980px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 620px) {
  .brand-mark {
    width: 36px;
    height: 36px;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 230px;
  }

  .gallery-grid figure.wide,
  .gallery-grid figure.tall {
    grid-column: auto;
    grid-row: auto;
  }
}
