/* Sticky, responsive site-wide top banner (auto-injected by js/site-banner.js) */
:root {
  --site-banner-z: 9999;
  --site-banner-bg: linear-gradient(90deg, #f3ead7 0%, #d7f1ee 45%, #efe8ff 100%);
  --site-banner-text: #1f2937;
  --site-banner-muted: rgba(31, 41, 55, 0.72);
  --site-banner-btn-bg: linear-gradient(45deg, #ffb347, #ffcc33);
  --site-banner-btn-text: #111827;
  --site-banner-ring: rgba(17, 24, 39, 0.08);
}

.site-top-banner {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: var(--site-banner-z);
  background: var(--site-banner-bg);
  color: var(--site-banner-text);
  box-shadow: 0 1px 8px rgba(0, 0, 0, 0.08);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.site-top-banner__inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 10px 14px;
  display: flex;
  align-items: center;
  gap: 12px;
}

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

.site-top-banner__logo {
  width: 60px;
  height: 60px;

  object-fit: cover;
  flex: 0 0 auto;
  /* box-shadow: 0 1px 4px rgba(0, 0, 0, 0.12); */
}

.site-top-banner__text {
  min-width: 0;
  line-height: 1.2;
}

.site-top-banner__title {
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.2px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.site-top-banner__subtitle {
  font-size: 0.82rem;
  color: var(--site-banner-muted);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.site-top-banner__actions {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex: 0 0 auto;
}

.site-top-banner__cta {
  appearance: none;
  border: 1px solid rgba(17, 24, 39, 0.08);
  background: var(--site-banner-btn-bg);
  color: var(--site-banner-btn-text);
  text-decoration: none;
  padding: 8px 14px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.9rem;
  white-space: nowrap;
  box-shadow: 0 2px 10px rgba(255, 179, 71, 0.25);
  transition: transform 160ms ease, box-shadow 160ms ease, filter 160ms ease;
}

.site-top-banner__cta:hover {
  transform: translateY(-1px);
  filter: brightness(1.02);
  box-shadow: 0 6px 16px rgba(255, 179, 71, 0.32);
}

.site-top-banner__close {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  border: 1px solid var(--site-banner-ring);
  background: rgba(255, 255, 255, 0.55);
  color: rgba(17, 24, 39, 0.85);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 160ms ease, transform 160ms ease;
  line-height: 1;
}

.site-top-banner__close:hover {
  background: rgba(255, 255, 255, 0.8);
  transform: translateY(-1px);
}

/* Mobile */
@media (max-width: 768px) {
  .site-top-banner__inner {
    padding: 10px 12px;
    gap: 10px;
  }

  .site-top-banner__logo {
    width: 26px;
    height: 26px;
  }

  .site-top-banner__title {
    font-size: 0.9rem;
  }

  .site-top-banner__subtitle {
    font-size: 0.78rem;
  }

  .site-top-banner__cta {
    padding: 7px 12px;
    font-size: 0.85rem;
  }
}

@media (max-width: 480px) {
  .site-top-banner__subtitle {
    display: none;
  }

  .site-top-banner__cta {
    padding: 7px 10px;
    font-size: 0.82rem;
  }
}

