  .banner-rotator {
    display: flex;
    flex-wrap: nowrap;
    justify-content: center;
    gap: 20px;
    overflow-x: auto;
    position: relative;
  }

  .banner {
    flex: 1 1 0;
    min-width: 0;
    text-align: center;
    opacity: 0;
    transition: opacity 1s ease-in-out;
  }

  .banner.show {
    opacity: 1;
  }

  .banner a {
    text-decoration: none;
    color: inherit;
    display: block;
  }

  .banner img {
    width: 100%;
    aspect-ratio: 300 / 200;
    object-fit: cover;
    border-radius: 8px;
  }

  .banner-text {
    margin-top: 8px;
    font-size: clamp(11px, 1.5vw, 13px);
	font-weight: bold;
    opacity: 0;
    transition: opacity 1s ease-in-out;
  }

  .banner.show .banner-text {
    opacity: 1;
  }