/* =============================================================================
   Scoop network top bar — the same file in every Scoop theme.

   Copied byte-for-byte into scoop-calendar-theme, waraelmazzika and waraelceema.
   Edit one, copy to all three; scoopempire.com and ar.scoopempire.com get the
   same look from SmartMag's own settings.

   Every value is measured off scoopempire.com's .smart-head-top with
   getComputedStyle at a 1200px viewport (2026-09-12), not eyeballed:
     bar      50px = 3px top padding + 44px row + 3px rule; white; 30px sides;
              row 1140px wide; rule is linear-gradient(90deg, #e40666, #3c3fde)
     links    Public Sans 12.1px / 400, #161616, 7.8px each side, first link
              pulled 13px outside the row; labels are typed in capitals, the
              CSS does not uppercase them; hover in the theme amber #e39e1c
     socials  26px circles, 1px rgba(0,0,0,.09) ring, transparent, #333, 13px
              glyphs, 5px apart
     hidden   at 940px and below, where scoopempire.com drops its desktop header

   Scoped under .se-header-top throughout: .se-social is reused in footers.
   ============================================================================= */

.se-header-top {
  background: #fff;
  padding-inline: 30px;
  padding-block-start: 3px;
  border-block-end: 3px solid transparent;
  border-image: linear-gradient(90deg, #e40666 0%, #3c3fde 100%) 1;
  font-family: "Public Sans", system-ui, -apple-system, "Segoe UI", Arial, sans-serif;
}
[dir="rtl"] .se-header-top {
  font-family: "Noto Sans Arabic", system-ui, -apple-system, "Segoe UI", Arial, sans-serif;
}

.se-header-top > * {
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  inline-size: 100%;
  max-inline-size: 1140px;
  block-size: 44px;
  margin-inline: auto;
  padding-inline: 0;
}

.se-header-top .se-topbar-menu ul {
  display: flex;
  margin: 0;
  padding: 0;
  list-style: none;
}
.se-header-top .se-topbar-menu li:first-child > a {
  margin-inline-start: -13px;
}
.se-header-top .se-topbar-menu a {
  display: block;
  padding: 0 7.8px;
  font-size: 12.1px;
  font-weight: 400;
  line-height: 44px;
  letter-spacing: normal;
  text-transform: none;
  text-decoration: none;
  color: #161616;
}
.se-header-top .se-topbar-menu a:hover,
.se-header-top .se-topbar-menu a:focus-visible,
/* The site you are on, as SmartMag marks it on scoopempire.com's own bar. */
.se-header-top .se-topbar-menu .current-menu-item > a {
  color: #e39e1c;
}

.se-header-top .se-social {
  display: flex;
  gap: 5px;
}
.se-header-top .se-social a {
  box-sizing: border-box;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  inline-size: 26px;
  block-size: 26px;
  padding: 0;
  margin: 0;
  border: 1px solid rgba(0, 0, 0, 0.09);
  border-radius: 50%;
  background: transparent;
  color: #333;
}
.se-header-top .se-social a:hover,
.se-header-top .se-social a:focus-visible {
  color: #e39e1c;
}
.se-header-top .se-social svg {
  inline-size: 13px;
  block-size: 13px;
}

.se-header-top :focus-visible {
  outline: 2px solid #3c3fde;
  outline-offset: 2px;
}

@media (max-width: 940px) {
  .se-header-top { display: none; }
}
