.catalog article {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  min-height: 390px;
  background: var(--green-950);
}

.catalog article::after {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  background: linear-gradient(0deg, rgba(3, 44, 29, .94) 0%, rgba(3, 44, 29, .48) 46%, rgba(3, 44, 29, .06) 100%);
}

.catalog article > img {
  position: absolute;
  z-index: -2;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .65s ease;
}

.catalog article:hover > img {
  transform: scale(1.045);
}

.catalog article > b,
.catalog article > h3,
.catalog article > a {
  position: relative;
  z-index: 1;
}

.catalog article > a {
  margin-top: .75rem;
  color: var(--gold-300);
}

@media (max-width: 700px) {
  .catalog article {
    min-height: 330px;
  }
}
