:root {
  --hh-blue: #0a3d9c;
  --hh-blue-deep: #061f54;
  --hh-blue-mid: #1456c8;
  --hh-blue-soft: #eaf1ff;
  --hh-gold: #f0b429;
  --hh-gold-deep: #c98a08;
  --hh-gold-soft: rgba(240, 180, 41, 0.16);
  --hh-ink: #0b1220;
  --hh-muted: #5b6b84;
  --hh-line: rgba(15, 35, 80, 0.1);
  --hh-bg: #f3f6fc;
  --hh-white: #ffffff;
  --hh-radius: 22px;
  --hh-shadow: 0 22px 60px rgba(6, 31, 84, 0.16);
  --hh-shadow-soft: 0 10px 30px rgba(6, 31, 84, 0.08);
  --hh-font: "IBM Plex Sans Arabic", "Cairo", system-ui, sans-serif;
  --hh-display: "Cairo", "IBM Plex Sans Arabic", sans-serif;
}

*,
*::before,
*::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--hh-font);
  color: var(--hh-ink);
  background:
    radial-gradient(900px 420px at 100% -5%, rgba(240, 180, 41, 0.22), transparent 55%),
    radial-gradient(800px 380px at 0% 0%, rgba(10, 61, 156, 0.18), transparent 50%),
    linear-gradient(180deg, #f8faff 0%, var(--hh-bg) 35%, #e8eef9 100%);
  line-height: 1.75;
  min-height: 100vh;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }

.hh-container {
  width: min(1200px, calc(100% - 2rem));
  margin-inline: auto;
}

/* Top bar */
.hh-topbar {
  background:
    linear-gradient(90deg, #041633 0%, var(--hh-blue-deep) 45%, #0a3d9c 100%);
  color: #fff;
  font-size: 0.86rem;
  border-bottom: 1px solid rgba(240, 180, 41, 0.25);
}

.hh-topbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.6rem 0;
}

.hh-topbar__brand {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  font-weight: 700;
}

.hh-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--hh-gold);
  box-shadow: 0 0 0 4px rgba(240, 180, 41, 0.28);
  animation: hh-pulse 2s ease-in-out infinite;
}

@keyframes hh-pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.2); opacity: 0.65; }
}

.hh-topbar__meta { opacity: 0.9; }

.hh-topbar__actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.hh-lang {
  display: flex;
  gap: 0.4rem;
}

.hh-lang a,
.hh-lang .lang-item a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 34px;
  height: 28px;
  padding: 0 0.55rem;
  border-radius: 999px;
  background: rgba(255,255,255,0.12);
  color: #fff !important;
  font-weight: 800;
  font-size: 0.75rem;
  text-transform: uppercase;
}

.hh-lang .current-lang a,
.hh-lang a.current-lang,
.hh-lang a:hover {
  background: var(--hh-gold);
  color: #1a1300 !important;
}

/* Header */
.hh-header {
  position: sticky;
  top: 0;
  z-index: 60;
  isolation: isolate;
}

.hh-header__glow {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(500px 120px at 10% 0%, rgba(240, 180, 41, 0.18), transparent 60%),
    radial-gradient(420px 100px at 90% 0%, rgba(20, 86, 200, 0.25), transparent 55%);
  z-index: 0;
}

.hh-header__main {
  position: relative;
  z-index: 1;
  backdrop-filter: blur(18px) saturate(1.25);
  background: linear-gradient(180deg, rgba(255,255,255,0.96), rgba(246,249,255,0.92));
  border-bottom: 1px solid rgba(10, 61, 156, 0.1);
  box-shadow: 0 12px 36px rgba(6, 31, 84, 0.08);
}

.hh-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.85rem 0;
}

.hh-logo {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  flex-shrink: 0;
  position: relative;
}

.hh-logo__img {
  height: 64px;
  width: auto;
  max-width: 240px;
  object-fit: contain;
  filter: drop-shadow(0 10px 20px rgba(6, 31, 84, 0.22));
}

.hh-logo__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.2rem 0.55rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--hh-gold), #ffe08a);
  color: #1a1300;
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  box-shadow: 0 6px 14px rgba(240, 180, 41, 0.35);
}

.hh-nav-wrap {
  flex: 1;
  min-width: 0;
  display: flex;
  justify-content: center;
}

.hh-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.2rem 0.15rem;
  list-style: none;
  margin: 0;
  padding: 0;
  background: transparent;
  border: 0;
  max-width: 100%;
}

.hh-nav > li {
  position: relative;
}

.hh-nav > li:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 50%;
  inset-inline-end: -1px;
  width: 1px;
  height: 14px;
  transform: translateY(-50%);
  background: rgba(10, 61, 156, 0.14);
  pointer-events: none;
}

.hh-nav a {
  display: inline-flex;
  align-items: center;
  padding: 0.42rem 0.72rem;
  border-radius: 10px;
  font-weight: 800;
  font-size: 0.8rem;
  letter-spacing: 0.01em;
  color: var(--hh-muted);
  transition: color 0.2s ease, background 0.2s ease;
  border: 0;
  white-space: nowrap;
  position: relative;
}

.hh-nav a:hover {
  color: var(--hh-blue);
  background: var(--hh-blue-soft);
}

.hh-nav .current-menu-item > a,
.hh-nav .current-menu-item > a:hover {
  color: var(--hh-blue-deep);
  background: transparent;
  box-shadow: none;
  font-weight: 900;
}

.hh-nav .current-menu-item > a::after {
  content: "";
  position: absolute;
  left: 18%;
  right: 18%;
  bottom: 0.15rem;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--hh-gold), #ffe08a);
}

.hh-header__cta {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 1.15rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--hh-gold), #ffd76a);
  color: #1a1300;
  font-weight: 900;
  font-size: 0.88rem;
  box-shadow: 0 10px 22px rgba(240, 180, 41, 0.35);
  transition: 0.2s ease;
}

.hh-header__cta:hover {
  transform: translateY(-1px);
  filter: brightness(1.05);
}

.hh-menu-toggle {
  display: none;
  border: 0;
  background: linear-gradient(135deg, var(--hh-blue), var(--hh-blue-deep));
  color: #fff;
  border-radius: 14px;
  padding: 0.7rem 1rem;
  font-weight: 800;
  cursor: pointer;
}

/* Ticker */
.hh-ticker {
  background: linear-gradient(90deg, #061a45, #0a3d9c 55%, #0d4bb8);
  color: #fff;
  border-bottom: 2px solid var(--hh-gold);
  overflow: hidden;
}

.hh-ticker__inner {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  min-height: 46px;
}

.hh-ticker__label {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: linear-gradient(135deg, var(--hh-gold), #ffd56a);
  color: #1a1300;
  font-weight: 900;
  font-size: 0.82rem;
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
  box-shadow: 0 6px 16px rgba(240, 180, 41, 0.35);
  z-index: 2;
}

.hh-ticker__pulse {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #b00000;
  animation: hh-pulse 1.2s ease-in-out infinite;
}

.hh-ticker__track-wrap {
  overflow: hidden;
  flex: 1;
  mask-image: linear-gradient(90deg, transparent, #000 4%, #000 96%, transparent);
}

.hh-ticker__track {
  display: flex;
  gap: 2rem;
  width: max-content;
  animation: hh-ticker 38s linear infinite;
}

.hh-ticker:hover .hh-ticker__track {
  animation-play-state: paused;
}

.hh-ticker__item {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  white-space: nowrap;
  font-weight: 600;
  font-size: 0.92rem;
  opacity: 0.95;
}

.hh-ticker__item:hover { color: var(--hh-gold); }

.hh-ticker__bullet {
  color: var(--hh-gold);
  font-size: 0.7rem;
}

@keyframes hh-ticker {
  from { transform: translateX(0); }
  to { transform: translateX(50%); }
}

html[dir="rtl"] .hh-ticker__track,
body.rtl .hh-ticker__track,
body.hh-rtl .hh-ticker__track {
  animation-name: hh-ticker-rtl;
}

@keyframes hh-ticker-rtl {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* Hero */
.hh-hero {
  padding: 1.6rem 0 0.4rem;
}

.hh-hero__grid {
  display: grid;
  grid-template-columns: 1.65fr 1fr;
  gap: 1.1rem;
}

.hh-hero-main {
  position: relative;
  min-height: 460px;
  border-radius: 30px;
  overflow: hidden;
  box-shadow: var(--hh-shadow);
  isolation: isolate;
  border: 1px solid rgba(255, 255, 255, 0.4);
}

.hh-hero-main__media { position: absolute; inset: 0; }

.hh-hero-main__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.03);
  transition: transform 0.9s ease;
}

.hh-hero-main:hover .hh-hero-main__media img { transform: scale(1.1); }

.hh-hero-main__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(4, 22, 51, 0.1) 5%, rgba(4, 22, 51, 0.55) 45%, rgba(4, 22, 51, 0.94) 100%),
    linear-gradient(90deg, rgba(10, 61, 156, 0.35), transparent 55%);
}

.hh-hero-main__content {
  position: absolute;
  inset-inline: 0;
  bottom: 0;
  padding: 1.9rem;
  color: #fff;
  z-index: 1;
}

.hh-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  background: linear-gradient(135deg, var(--hh-gold), #ffd76a);
  color: #1a1300;
  font-weight: 900;
  font-size: 0.78rem;
  padding: 0.35rem 0.8rem;
  border-radius: 999px;
  margin-bottom: 0.9rem;
  box-shadow: 0 8px 18px rgba(240, 180, 41, 0.35);
}

.hh-hero-main__content h1,
.hh-hero-main__content h2 {
  margin: 0 0 0.7rem;
  font-family: var(--hh-display);
  font-size: clamp(1.5rem, 2.6vw, 2.35rem);
  font-weight: 900;
  line-height: 1.35;
  max-width: 18ch;
  text-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
}

.hh-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  font-size: 0.86rem;
  opacity: 0.92;
}

.hh-hero-side {
  display: grid;
  gap: 1.1rem;
}

.hh-side-card {
  position: relative;
  min-height: 215px;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--hh-shadow-soft);
  border: 1px solid rgba(255, 255, 255, 0.35);
}

.hh-side-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
  transition: transform 0.5s ease;
}

.hh-side-card:hover img { transform: scale(1.07); }

.hh-side-card__body {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.1rem;
  color: #fff;
  background: linear-gradient(180deg, transparent 15%, rgba(4, 22, 51, 0.92) 100%);
}

.hh-side-card__body h3 {
  margin: 0.4rem 0 0;
  font-size: 1.08rem;
  line-height: 1.4;
  font-family: var(--hh-display);
  font-weight: 800;
}

/* Sections */
.hh-section { padding: 2.1rem 0 0.4rem; }

.hh-section__head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.2rem;
}

.hh-section__head h2 {
  margin: 0;
  font-family: var(--hh-display);
  font-size: 1.65rem;
  color: var(--hh-blue-deep);
  font-weight: 900;
}

.hh-section__head h2::after {
  content: "";
  display: block;
  width: 56px;
  height: 5px;
  margin-top: 0.5rem;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--hh-gold), var(--hh-blue));
}

.hh-section__head a {
  color: var(--hh-blue);
  font-weight: 800;
  font-size: 0.92rem;
}

.hh-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.1rem;
}

.hh-card {
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(10, 61, 156, 0.08);
  border-radius: var(--hh-radius);
  overflow: hidden;
  box-shadow: var(--hh-shadow-soft);
  transition: transform 0.28s ease, box-shadow 0.28s ease;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  backdrop-filter: blur(8px);
}

.hh-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--hh-shadow);
}

.hh-card__media {
  aspect-ratio: 16 / 10;
  background: linear-gradient(135deg, var(--hh-blue-deep), var(--hh-blue-mid));
  overflow: hidden;
  position: relative;
}

.hh-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.hh-card:hover .hh-card__media img { transform: scale(1.07); }

.hh-card__body {
  padding: 1.05rem 1.1rem 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  flex: 1;
}

.hh-card__cat {
  color: var(--hh-gold-deep);
  font-weight: 900;
  font-size: 0.78rem;
  letter-spacing: 0.02em;
}

.hh-card__title {
  margin: 0;
  font-family: var(--hh-display);
  font-size: 1.1rem;
  line-height: 1.45;
  font-weight: 900;
}

.hh-card__excerpt {
  margin: 0;
  color: var(--hh-muted);
  font-size: 0.92rem;
  flex: 1;
}

.hh-card__meta {
  display: flex;
  justify-content: space-between;
  gap: 0.5rem;
  color: var(--hh-muted);
  font-size: 0.8rem;
  border-top: 1px solid var(--hh-line);
  padding-top: 0.75rem;
  margin-top: 0.2rem;
}

/* Categories */
.hh-cats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.9rem;
}

.hh-cat {
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.95), #eef3ff);
  border: 1px solid rgba(10, 61, 156, 0.1);
  border-radius: 18px;
  padding: 1.15rem 1rem;
  transition: 0.22s ease;
  min-height: 118px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: var(--hh-shadow-soft);
  position: relative;
  overflow: hidden;
}

.hh-cat::before {
  content: "";
  position: absolute;
  inset-inline-end: -20px;
  top: -20px;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--hh-gold-soft);
}

.hh-cat:hover {
  border-color: rgba(10, 61, 156, 0.28);
  transform: translateY(-4px);
  box-shadow: var(--hh-shadow);
}

.hh-cat strong {
  font-family: var(--hh-display);
  font-size: 1.05rem;
  color: var(--hh-blue-deep);
  font-weight: 900;
  position: relative;
}

.hh-cat span {
  color: var(--hh-muted);
  font-size: 0.84rem;
  position: relative;
}

/* CTA */
.hh-cta {
  margin: 2.3rem 0 1rem;
  border-radius: 30px;
  overflow: hidden;
  background:
    radial-gradient(500px 180px at 12% 20%, rgba(240, 180, 41, 0.38), transparent 60%),
    linear-gradient(120deg, #041633, #0a3d9c 50%, #114fbf);
  color: #fff;
  padding: 2.2rem;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 1.5rem;
  align-items: center;
  box-shadow: var(--hh-shadow);
  border: 1px solid rgba(240, 180, 41, 0.28);
}

.hh-cta h2 {
  margin: 0 0 0.55rem;
  font-family: var(--hh-display);
  font-size: clamp(1.45rem, 2.3vw, 2.05rem);
  font-weight: 900;
}

.hh-cta p {
  margin: 0;
  opacity: 0.92;
  max-width: 42ch;
}

.hh-cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  justify-content: flex-end;
}

.hh-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0.8rem 1.3rem;
  font-weight: 900;
  border: 0;
  cursor: pointer;
  transition: 0.2s ease;
}

.hh-btn--gold {
  background: linear-gradient(135deg, var(--hh-gold), #ffd76a);
  color: #1a1300;
  box-shadow: 0 10px 24px rgba(240, 180, 41, 0.35);
}

.hh-btn--gold:hover { filter: brightness(1.05); transform: translateY(-1px); }

.hh-btn--ghost {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.28);
}

.hh-btn--ghost:hover { background: rgba(255, 255, 255, 0.18); }

/* Single / archive */
.hh-layout {
  display: grid;
  grid-template-columns: 1fr 330px;
  gap: 1.5rem;
  padding: 1.75rem 0 2.5rem;
}

.hh-article {
  background: #fff;
  border: 1px solid rgba(10, 61, 156, 0.08);
  border-radius: 26px;
  overflow: hidden;
  box-shadow: var(--hh-shadow-soft);
}

.hh-article__hero img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.hh-article__body { padding: 1.6rem 1.5rem 2rem; }

.hh-article__body h1 {
  font-family: var(--hh-display);
  font-size: clamp(1.65rem, 3vw, 2.4rem);
  line-height: 1.35;
  margin: 0.45rem 0 0.95rem;
  color: var(--hh-blue-deep);
  font-weight: 900;
}

.hh-content { font-size: 1.06rem; }
.hh-content p { margin: 0 0 1.15rem; }
.hh-content h2,
.hh-content h3 {
  font-family: var(--hh-display);
  color: var(--hh-blue-deep);
}

.hh-sidebar .hh-widget {
  background: #fff;
  border: 1px solid rgba(10, 61, 156, 0.08);
  border-radius: 20px;
  padding: 1.1rem;
  margin-bottom: 1rem;
  box-shadow: var(--hh-shadow-soft);
}

.hh-widget__title {
  margin: 0 0 0.85rem;
  font-family: var(--hh-display);
  color: var(--hh-blue-deep);
  font-size: 1.08rem;
  font-weight: 900;
}

/* Footer */
.hh-footer {
  margin-top: 2.2rem;
  background:
    radial-gradient(600px 220px at 80% 0%, rgba(240, 180, 41, 0.18), transparent 55%),
    linear-gradient(180deg, #061f4d, #03112c);
  color: rgba(255, 255, 255, 0.88);
  padding: 2.7rem 0 1.3rem;
  border-top: 2px solid rgba(240, 180, 41, 0.35);
}

.hh-footer__grid {
  display: grid;
  grid-template-columns: 1.45fr 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 1.6rem;
}

.hh-footer__brand {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  align-items: flex-start;
}

.hh-footer__logo {
  height: 64px;
  width: auto;
  max-width: 220px;
  object-fit: contain;
  filter: drop-shadow(0 10px 24px rgba(0, 0, 0, 0.35));
}

.hh-footer h3,
.hh-footer h4 {
  color: #fff;
  font-family: var(--hh-display);
  margin: 0 0 0.85rem;
  font-weight: 900;
}

.hh-footer__brand h3 {
  margin: 0;
}

.hh-footer a { color: rgba(255, 255, 255, 0.84); }
.hh-footer a:hover { color: var(--hh-gold); }

.hh-footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 1rem;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  font-size: 0.88rem;
  opacity: 0.85;
}

.hh-placeholder {
  width: 100%;
  height: 100%;
  min-height: 160px;
  background:
    radial-gradient(circle at 30% 30%, rgba(240, 180, 41, 0.4), transparent 45%),
    linear-gradient(135deg, #061f54, #1456c8 55%, #0a2f70);
  display: grid;
  place-items: center;
  color: #fff;
  font-family: var(--hh-display);
  font-weight: 900;
  font-size: 1.35rem;
  position: relative;
  overflow: hidden;
}

.hh-placeholder img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.85;
}

.hh-placeholder span {
  position: relative;
  z-index: 1;
  text-shadow: 0 8px 24px rgba(0, 0, 0, 0.45);
}

/* AdSense */
.hh-ad {
  margin: 1.25rem 0;
  padding: 0.75rem;
  text-align: center;
  background: rgba(10, 61, 156, 0.03);
  border: 1px dashed rgba(10, 61, 156, 0.14);
  border-radius: 14px;
  overflow: hidden;
}

.hh-ad__label {
  display: block;
  margin-bottom: 0.45rem;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--hh-muted);
}

.hh-ad__inner {
  min-height: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hh-ad__inner ins.adsbygoogle {
  width: 100%;
}

.hh-ad--header {
  margin-top: 0.85rem;
  margin-bottom: 0.5rem;
}

.hh-ad--footer {
  margin-top: 1.5rem;
  margin-bottom: 1rem;
}

.hh-ad--sidebar {
  margin-top: 0;
  margin-bottom: 1rem;
}

.hh-ad--in-content {
  margin: 1.75rem 0;
}

.hh-ad--home {
  margin: 0.5rem 0 1.5rem;
}

/* Mobile */
@media (max-width: 960px) {
  .hh-hero__grid,
  .hh-layout,
  .hh-cta,
  .hh-footer__grid { grid-template-columns: 1fr; }

  .hh-grid { grid-template-columns: 1fr 1fr; }
  .hh-cats { grid-template-columns: 1fr 1fr; }

  .hh-menu-toggle { display: inline-flex; }
  .hh-nav-wrap { display: none; width: 100%; justify-content: flex-start; }
  .hh-nav-wrap.is-open { display: flex; }
  .hh-header__cta { display: none; }

  .hh-header__inner { flex-wrap: wrap; }
  .hh-nav {
    width: 100%;
    justify-content: flex-start;
    gap: 0.35rem;
    padding: 0.55rem;
    background: rgba(10, 61, 156, 0.04);
    border: 1px solid rgba(10, 61, 156, 0.08);
    border-radius: 16px;
  }
  .hh-nav > li:not(:last-child)::after { display: none; }
  .hh-nav a { background: #fff; color: var(--hh-ink); }
  .hh-hero-main { min-height: 380px; }
  .hh-logo__img { height: 52px; }
  .hh-footer__logo { height: 52px; }
}

@media (max-width: 640px) {
  .hh-grid,
  .hh-cats { grid-template-columns: 1fr; }
  .hh-topbar__meta { display: none; }
  .hh-ticker__label { font-size: 0.75rem; padding: 0.3rem 0.65rem; }
}
