.detail-banners {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
  max-width: 960px;
  margin: 0 auto;
}

.detail-banner {
  display: block;
  width: 100%;
  overflow: hidden;
  border-radius: 12px;
  background: #464646;
  text-decoration: none;
}

.detail-banner img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.detail-banner--home-lg {
  max-width: 960px;
  margin: 0 auto;
  aspect-ratio: 960 / 121;
  height: auto;
}

@media (max-width: 768px) {
  .detail-banner {
    height: 47px;
    border-radius: 6px;
  }

  .detail-banner--home-lg {
    aspect-ratio: unset;
    max-width: none;
    height: 47px;
  }
}

@media (min-width: 769px) {
  .detail-banner:not(.detail-banner--home-lg) {
    height: 118px;
  }
}
