.starterkit-element-topbar-1 {
  padding: 8px 0;
  border-bottom: 1px solid var(--starterkit-element-border, rgba(18, 18, 18, 0.08));
  font-family: var(--site-font-body, 'Inter', sans-serif);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.02em;
  line-height: 1.4;
  transition: all 0.2s ease;
}

.starterkit-element-topbar-1__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  gap: 16px;
  align-items: center;
}

.starterkit-element-topbar-1__inner > * {
  min-width: 0;
}

.starterkit-element-topbar-1__inner span:first-child {
  text-align: left;
  opacity: 0.9;
}

.starterkit-element-topbar-1__inner strong {
  font-family: var(--site-font-heading, 'Outfit', sans-serif);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  text-align: center;
}

.starterkit-element-topbar-1__inner span:last-child {
  text-align: right;
  opacity: 0.9;
}

/* Elegant anchor hover states mapped to current text colors */
.starterkit-element-topbar-1 a {
  color: inherit;
  text-decoration: none;
  font-weight: 600;
  border-bottom: 1px solid transparent;
  transition: all 0.15s ease;
}

.starterkit-element-topbar-1 a:hover {
  border-bottom-color: currentColor;
  opacity: 0.9;
}

@media (max-width: 768px) {
  .starterkit-element-topbar-1__inner {
    grid-template-columns: 1fr;
    gap: 6px;
    justify-items: center;
    text-align: center;
  }

  .starterkit-element-topbar-1__inner span:first-child,
  .starterkit-element-topbar-1__inner span:last-child {
    text-align: center;
  }
  
  /* High-conversion CRO hierarchy: push bold announcement to the top on mobile */
  .starterkit-element-topbar-1__inner strong {
    order: -1;
  }
}
