.banner-api-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.layout-full {
  flex: 0 0 100%;
}
.layout-half {
  flex: 0 0 calc(50% - 4px);
}
.banner-item {
  border-radius: 5px;
  overflow: hidden;
  transition: transform 0.3s;
}
.banner-item img {
  width: 100%;
  height: auto;
  display: block;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}
.banner-item:hover {
  transform: scale(1.02);
}
@media (max-width: 600px) {
  .layout-half {
    flex: 0 0 100%;
  }
}