:root {
        --color-pastel-yellow: #ffea00;
      --color-pastel-yellow-border: #feae00;
      --color-pastel-yellow-text: #000000;
}
.index-top-banner{
  position: fixed;
  top: var(--index-top-banner-offset, 56px);
  left: 0;
  right: 0;
  width: 100%;
  z-index: 1100;
  background: var(--color-pastel-yellow);
  border-bottom: 1px solid var(--color-pastel-yellow-border);
  color: var(--color-pastel-yellow-text);
}

[data-index-top-banner-mount]{
  height: var(--index-top-banner-height, 0px);
}

.index-top-banner[hidden]{
  display: none !important;
}

.index-top-banner__inner{
  max-width: 1200px;
  margin-inline: auto;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 20px 24px;
}

.index-top-banner__content{
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 1;
  min-width: 0;
}

.index-top-banner__content img{
  width: auto;
  height: 36px;
  max-width: 180px;
  object-fit: contain;
  border-radius: 6px;
  flex: 0 0 auto;
}

.index-top-banner__content p{
  margin: 0;
  font-size: .95rem;
  font-weight: 700;
  line-height: 1.3;
}

.index-top-banner__close{
  appearance: none;
  border: 0;
  background: transparent;
  color: inherit;
  cursor: pointer;
  font-size: 1.4rem;
  line-height: 1;
  width: 34px;
  height: 34px;
  border-radius: 8px;
  display: grid;
  place-items: center;
}

.index-top-banner__close:hover{
  background: rgba(0,0,0,.08);
}

.index-top-banner__close:focus-visible{
  outline: 2px solid var(--color-pastel-yellow-text);
  outline-offset: 2px;
}
