.custom-banner-ml {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #ffde00;
  padding: 5px 8px;
  gap: 24px;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 20px;
  font-weight: 600;
  color: #333333;
  text-align: center;
  box-sizing: border-box;
}

.banner-logo {
  display: flex;
  align-items: center;
  justify-content: center;
}

.banner-logo img {
  display: block;
  height: 40px;
  width: auto;
  margin: 0;
  padding: 0;
}

.banner-text {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  line-height: 1.2;
}

@media (max-width: 600px) {
  .custom-banner-ml {
    flex-direction: column;
    text-align: center;
    gap: 8px;
  }

  .banner-logo img {
    height: 36px;
  }

  .banner-text {
    text-align: center;
    font-size: 15px;
  }
}
