.top-banner {
  display: flex;
  flex-direction: row;
  align-items: center;
  background-color: rgb(249, 250, 229);
  padding: 8px 16px;
  margin-top: 60px;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.1);
  gap: 12px;
  overflow: hidden;
  border-bottom-left-radius: 12px;
  border-bottom-right-radius: 12px;
}

.top-banner-left {
  flex-shrink: 0;
}

.top-banner-logo {
  height: 28px;
  width: auto;
  display: block;
}

.top-banner-text {
  flex: 1;
  font-size: 15px;
  font-weight: bold;
  color: #000;
  line-height: 1.3;
  word-break: break-word;
  text-align: center;
}

/* Мобильная адаптация */
@media (max-width: 600px) {
  .top-banner {
    flex-direction: row;
    align-items: center;
    padding: 8px 12px;
  }

  .top-banner-logo {
    margin-bottom: 0;
    margin-right: 8px;
    height: 40px;
    /* чуть меньше */
  }

  .top-banner-text {
    font-size: 14px;
    text-align: center;
  }
}
