.home-sub-banners {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 12px;
  width: 100%;
  box-sizing: border-box;
}

.home-sub-banners__item {
  display: block;
  width: 100%;
  min-width: 0;
  height: 0;
  padding-top: 38%;
  aspect-ratio: 2.63 / 1;
  border-radius: 14px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  overflow: hidden;
  text-decoration: none;
  box-sizing: border-box;
}

@supports (aspect-ratio: 1) {
  .home-sub-banners__item {
    height: auto;
    padding-top: 0;
  }
}

.home-sub-banners__item::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,0.25) 100%);
  pointer-events: none;
}

@media (max-width: 640px) {
  .home-sub-banners {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .home-sub-banners__item {
    padding-top: 44%;
    aspect-ratio: 2.27 / 1;
  }
  
  @supports (aspect-ratio: 1) {
    .home-sub-banners__item {
      padding-top: 0;
    }
  }
}

