.top-notice {
  background: linear-gradient(90deg, rgba(245,158,11,.18), rgba(6,182,212,.12));
  border-bottom: 1px solid rgba(255,255,255,.06);
  color: #dbeafe;
  font-size: .82rem;
}

.top-notice__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 42px;
}

.top-notice__lead,
.top-notice__meta,
.top-notice__social {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.top-notice__lead strong,
.top-notice__social a {
  color: #f8fafc;
}

.top-notice__lead i,
.top-notice__meta i,
.top-notice__social i {
  color: #f59e0b;
}

.top-notice__meta {
  color: #93c5fd;
  flex-wrap: wrap;
}

.top-notice__social {
  gap: 12px;
  flex-shrink: 0;
}

.top-notice__social a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 700;
}

.top-notice__social a:hover {
  color: #f59e0b;
}

.header-quicklinks {
  border-bottom: 1px solid rgba(255,255,255,.06);
  background: rgba(8,8,15,.92);
}

.header-quicklinks__inner {
  display: flex;
  align-items: center;
  gap: 10px;
  overflow-x: auto;
  padding: 10px 0;
  scrollbar-width: none;
}

.header-quicklinks__inner::-webkit-scrollbar {
  display: none;
}

.header-quicklink {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 9px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.05);
  color: #cbd5e1;
  white-space: nowrap;
  font-size: .88rem;
  font-weight: 700;
  transition: .22s cubic-bezier(0.4,0,0.2,1);
}

.header-quicklink i {
  color: #06b6d4;
}

.header-quicklink:hover,
.header-quicklink.is-active {
  color: #f8fafc;
  border-color: rgba(245,158,11,.22);
  background: rgba(245,158,11,.1);
}

.header-quicklink:hover i,
.header-quicklink.is-active i {
  color: #f59e0b;
}

@media (max-width: 860px) {
  .top-notice__inner {
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding: 10px 0;
  }

  .top-notice__social {
    width: 100%;
    justify-content: flex-start;
    flex-wrap: wrap;
  }
}

@media (max-width: 620px) {
  .top-notice {
    font-size: .76rem;
  }

  .top-notice__meta {
    display: none;
  }

  .header-quicklinks__inner {
    padding: 8px 0;
  }
}
