/* ══════════════════════════════════════════
   AHORA NOTICIAS — Main Stylesheet
   ══════════════════════════════════════════ */

:root {
  --red:       #c8102e;
  --red-dark:  #a00c24;
  --navy:      #1a1a2e;
  --navy-mid:  #252540;
  --bg:        #f5f5f7;
  --surface:   #ffffff;
  --border:    #e8e8ec;
  --text:      #1a1a2e;
  --text-mid:  #4a4a6a;
  --text-muted:#8888aa;
  --font-head: 'Red Hat Display', sans-serif;
  --font-body: 'Work Sans', sans-serif;
  --radius:    12px;
  --shadow:    0 1px 4px rgba(0,0,0,.08);
  --shadow-md: 0 4px 16px rgba(0,0,0,.12);
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  font-size: 16px;
  line-height: 1.6;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; height: auto; }
ul { list-style: none; }

/* ── Container ── */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ── TOP BAR ── */
.topbar {
  background: var(--navy);
  color: #aaa;
  font-size: 12px;
  padding: 6px 0;
}
.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.topbar-date { color: #888; font-size: 12px; }
.topbar-widgets { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }
.topbar-weather { display: flex; align-items: center; gap: 6px; color: #ccc; font-size: 12px; font-weight: 500; }
.tb-icon { font-size: 14px; }
.topbar-divider { width: 1px; height: 14px; background: #444; }
.topbar-currency { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
.tb-currency-item { display: flex; align-items: center; gap: 5px; font-size: 12px; }
.tb-cur-label { color: #666; font-weight: 700; font-size: 11px; }
.tb-cur-val { color: #4ade80; font-weight: 700; font-size: 12px; }

/* ── HEADER ── */
.site-header {
  background: var(--surface);
  border-bottom: 2px solid var(--border);
}
.header-logo-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  padding-top: 16px;
  padding-bottom: 12px;
  position: relative;
}
.site-logo { flex-shrink: 0; }
.header-search { position: absolute; right: 20px; top: 50%; transform: translateY(-50%); }
.nav-toggle { position: absolute; left: 20px; top: 50%; transform: translateY(-50%); }

/* Info bar dentro del header blanco */
.header-infobar { border-top: 1px solid var(--border); padding: 6px 0; font-size: 12px; }
.header-infobar-inner { display: flex; align-items: center; justify-content: space-between; gap: 12px; flex-wrap: wrap; }
.hib-left { display: flex; align-items: center; gap: 10px; }
.hib-date { color: var(--text-mid); font-weight: 500; }
.hib-divider { width: 1px; height: 14px; background: var(--border); }
.hib-weather { display: flex; align-items: center; gap: 5px; color: var(--text-mid); }
.hib-icon { font-size: 15px; }
.hib-currency { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
.hib-item { display: flex; align-items: center; gap: 4px; }
.hib-label { color: var(--text-muted); font-weight: 700; text-transform: uppercase; font-size: 10px; letter-spacing: .04em; }
.hib-val { color: #16a34a; font-weight: 700; font-size: 12px; }
.hib-dolar-label { color: var(--text-mid); font-weight: 700; font-size: 11px; white-space: nowrap; }

/* ── NAVBAR (sticky, full-width, below header) ── */
.navbar {
  background: var(--navy);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 8px rgba(0,0,0,.15);
}
.navbar .container { padding-top: 0; padding-bottom: 0; }
.navbar .nav-list { display: flex; gap: 0; flex-wrap: wrap; justify-content: center; }
.navbar .nav-list li a {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: .05em;
  padding: 13px 14px;
  color: #ddd;
  display: block;
  transition: background .15s, color .15s;
  border-bottom: 3px solid transparent;
}
.navbar .nav-list li a:hover,
.navbar .nav-list li.current-menu-item a,
.navbar .nav-list li.current-cat a {
  background: rgba(255,255,255,.08);
  color: #fff;
  border-bottom-color: var(--red);
}
.logo-text { display: flex; align-items: center; gap: 6px; justify-content: center; }
.logo-tagline { display: block; text-align: center; }
.logo-ahora {
  background: var(--red);
  color: #fff;
  font-family: var(--font-head);
  font-weight: 900;
  font-size: 22px;
  letter-spacing: -.5px;
  padding: 2px 8px;
  border-radius: 3px;
}
.logo-noticias {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: 20px;
  color: var(--navy);
  letter-spacing: -.5px;
}

/* Main nav */
.main-nav { flex: 1; }
.nav-list {
  display: flex;
  gap: 4px;
  flex-wrap: wrap;
}
.nav-list li a {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: .04em;
  padding: 6px 10px;
  border-radius: 6px;
  color: var(--navy);
  transition: background .15s, color .15s;
}
.nav-list li a:hover,
.nav-list li.current-menu-item a,
.nav-list li.current-cat a {
  background: var(--red);
  color: #fff;
}

/* Search */
.header-search .search-form {
  display: flex;
  align-items: center;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
}
.header-search .search-field {
  border: none;
  outline: none;
  padding: 6px 12px;
  font-size: 13px;
  width: 160px;
  font-family: var(--font-body);
}
.header-search .search-submit {
  background: var(--red);
  color: #fff;
  border: none;
  cursor: pointer;
  padding: 6px 12px;
  font-size: 13px;
}

/* Mobile toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  margin-left: auto;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: .2s;
}

/* ── SITE CONTENT ── */
.site-content { min-height: 60vh; }

/* ── SECTION HEAD ── */
.section-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-left: 4px solid var(--red);
  padding-left: 12px;
  margin-bottom: 20px;
}
.section-head h2, .section-head h3 {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: 18px;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: .04em;
}
.ver-mas {
  font-size: 12px;
  font-weight: 700;
  color: var(--red);
  text-transform: uppercase;
  letter-spacing: .04em;
}
.ver-mas:hover { text-decoration: underline; }

/* ── CAT PILL ── */
.cat-pill {
  display: inline-flex !important;
  align-items: center !important;
  width: auto !important;
  max-width: fit-content !important;
  gap: 5px;
  background: var(--red) !important;
  color: #fff !important;
  font-family: var(--font-head);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  padding: 3px 10px !important;
  border-radius: 20px !important;
  margin-bottom: 8px;
  text-decoration: none !important;
}
.cat-pill::before {
  content: '';
  display: block;
  width: 5px;
  height: 5px;
  background: #fff;
  border-radius: 50%;
}
/* Colores por categoría — doble clase para ganar especificidad */
.cat-pill.cat-pill--politica      { background: #1d4ed8 !important; }
.cat-pill.cat-pill--economia      { background: #15803d !important; }
.cat-pill.cat-pill--internacional { background: #b45309 !important; }
.cat-pill.cat-pill--sociedad      { background: #7c3aed !important; }
.cat-pill.cat-pill--opinion       { background: #be185d !important; }
.cat-pill.cat-pill--deportes      { background: #0f766e !important; }
.cat-pill.cat-pill--cultura       { background: #9333ea !important; }
.cat-pill.cat-pill--tecnologia    { background: #0369a1 !important; }
.cat-pill.cat-pill--salud         { background: #dc2626 !important; }

/* ── HERO SECTION ── */
.hero-section {
  padding: 28px 0 24px;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 20px;
}
.hero-main {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--navy);
  box-shadow: var(--shadow-md);
}
.hero-main > a { display: block; height: 100%; }
.hero-img { position: relative; height: 420px; overflow: hidden; }
.hero-img img { width: 100%; height: 100%; object-fit: cover; }
.hero-body {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, rgba(0,0,0,.85) 0%, rgba(0,0,0,.5) 60%, transparent 100%);
  padding: 24px;
  color: #fff;
}
.hero-title {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: clamp(20px, 2.2vw, 28px);
  line-height: 1.2;
  margin-bottom: 8px;
  text-wrap: balance;
}
.hero-excerpt {
  font-size: 14px;
  opacity: .85;
  margin-bottom: 12px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.hero-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  opacity: .8;
}
.dot { opacity: .5; }

/* Hero stack */
.hero-stack { display: flex; flex-direction: column; gap: 12px; }
.stack-card {
  background: var(--surface);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  flex: 1;
}
.stack-card { display: flex; align-items: stretch; position: relative; }
.stack-link { color: inherit; text-decoration: none; }
.stack-link::after { content: ''; position: absolute; inset: 0; z-index: 1; }
.stack-body .cat-pill { position: relative; z-index: 2; }
.stack-img { width: 110px; flex-shrink: 0; overflow: hidden; }
.stack-img img { width: 100%; height: 100%; object-fit: cover; }
.stack-body { padding: 12px; display: flex; flex-direction: column; justify-content: space-between; }
.stack-body h3 {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 14px;
  line-height: 1.3;
  color: var(--text);
  margin-bottom: 6px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.stack-body time { font-size: 11px; color: var(--text-muted); }

/* ── TICKER BAR ── */
.ticker-bar {
  background: var(--navy);
  padding: 10px 0;
  overflow: hidden;
}
.ticker-bar .container {
  display: flex;
  align-items: center;
  gap: 16px;
}
.ticker-label {
  background: var(--red);
  color: #fff;
  font-family: var(--font-head);
  font-weight: 900;
  font-size: 11px;
  letter-spacing: .08em;
  padding: 3px 8px;
  border-radius: 4px;
  white-space: nowrap;
  flex-shrink: 0;
}
.ticker-track {
  display: flex;
  gap: 16px;
  overflow: hidden;
  color: #ccc;
  font-size: 13px;
}
.ticker-track a { color: #ddd; white-space: nowrap; }
.ticker-track a:hover { color: #fff; }
.ticker-sep { opacity: .4; }

/* ── MAIN SECTION (grid + sidebar) ── */
.main-section { padding: 32px 0; }
.main-grid, .archive-layout {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 32px;
  align-items: start;
}
.news-col { display: flex; flex-direction: column; gap: 20px; }

/* ── NEWS CARD ── */
.news-card {
  background: var(--surface);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: box-shadow .2s, transform .2s;
}
.news-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.news-card { display: flex; align-items: stretch; position: relative; }
.news-card-link { color: inherit; text-decoration: none; }
.news-card-link::after { content: ''; position: absolute; inset: 0; z-index: 1; }
.news-card-body .cat-pill { position: relative; z-index: 2; }
.news-card-img { width: 200px; flex-shrink: 0; overflow: hidden; }
.news-card-img img { width: 100%; height: 100%; object-fit: cover; }
.news-card-body { padding: 16px; display: flex; flex-direction: column; justify-content: center; }
.news-card-title {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 17px;
  line-height: 1.3;
  margin-bottom: 6px;
  color: var(--text);
}
.news-card-excerpt {
  font-size: 13px;
  color: var(--text-mid);
  margin-bottom: 10px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.news-card-meta {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: var(--text-muted);
}

/* Archive grid (2 col) */
.archive-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.archive-grid .news-card a { flex-direction: column; }
.archive-grid .news-card-img { width: 100%; height: 180px; }
.archive-main { min-width: 0; }

/* ── SIDEBAR ── */
.sidebar { display: flex; flex-direction: column; gap: 24px; }
.widget-box {
  background: var(--surface);
  border-radius: var(--radius);
  padding: 20px;
  box-shadow: var(--shadow);
}
.widget-title {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--navy);
  margin-bottom: 16px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--border);
}

/* Ranked items */
.ranked-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
}
.ranked-item:last-child { border-bottom: none; }
.rank-num {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: 22px;
  color: var(--border);
  min-width: 28px;
  line-height: 1;
}
.rank-img { width: 64px; height: 48px; flex-shrink: 0; overflow: hidden; border-radius: 6px; }
.rank-img img { width: 100%; height: 100%; object-fit: cover; }
.rank-title {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 13px;
  line-height: 1.3;
  color: var(--text);
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.rank-title:hover { color: var(--red); }

/* ── CATEGORY SECTIONS (horizontal scroll) ── */
.cat-section { padding: 20px 0 28px; }
.hscroll-track {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  padding-bottom: 8px;
  scrollbar-width: thin;
  scrollbar-color: var(--border) transparent;
}
.hcard {
  flex-shrink: 0;
  width: 220px;
  background: var(--surface);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform .2s;
}
.hcard:hover { transform: translateY(-2px); }
.hcard { position: relative; }
.hcard-link { display: block; color: inherit; text-decoration: none; }
.hcard-link::after { content: ''; position: absolute; inset: 0; z-index: 1; }
.hcard-img { height: 130px; overflow: hidden; }
.hcard-img img { width: 100%; height: 100%; object-fit: cover; }
.hcard-body { padding: 12px; }
.hcard-body h3 {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 13px;
  line-height: 1.3;
  color: var(--text);
  margin-bottom: 6px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.hcard-body time { font-size: 11px; color: var(--text-muted); }

/* ── ARTICLE (single.php) ── */
.article-layout {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 40px;
  align-items: start;
  padding-top: 32px;
  padding-bottom: 48px;
}
.article-main { min-width: 0; }
.article-top { margin-bottom: 12px; }
.article-title {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: clamp(24px, 3vw, 36px);
  line-height: 1.15;
  margin-bottom: 12px;
  text-wrap: balance;
  color: var(--navy);
}
.article-subtitle {
  font-size: 18px;
  color: var(--text-mid);
  line-height: 1.5;
  margin-bottom: 20px;
  font-weight: 300;
}
.article-author-bar {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  margin-bottom: 24px;
}
.author-info { flex: 1; }
.author-name { font-weight: 700; font-size: 14px; color: var(--navy); display: block; }
.author-name:hover { color: var(--red); }
.author-role { font-size: 12px; color: var(--text-muted); }
.article-date { font-size: 12px; color: var(--text-muted); margin-left: auto; }
.article-hero-img {
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 28px;
}
.article-hero-img img { width: 100%; }
.article-hero-img figcaption {
  padding: 8px 12px;
  font-size: 12px;
  color: var(--text-muted);
  background: var(--bg);
}
.article-body {
  font-size: 17px;
  line-height: 1.75;
  color: var(--text);
}
.article-body h2 {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: 22px;
  margin: 28px 0 12px;
  color: var(--navy);
}
.article-body h3 {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 18px;
  margin: 20px 0 8px;
}
.article-body p { margin-bottom: 18px; }
.article-body a { color: var(--red); text-decoration: underline; }
.article-body blockquote {
  border-left: 4px solid var(--red);
  padding-left: 20px;
  margin: 24px 0;
  font-size: 18px;
  font-style: italic;
  color: var(--text-mid);
}
.article-body img { border-radius: 8px; margin: 20px 0; }
.article-body ul, .article-body ol { padding-left: 24px; margin-bottom: 18px; }
.article-body li { margin-bottom: 6px; }

/* Tags */
.article-tags { margin-top: 32px; display: flex; flex-wrap: wrap; gap: 8px; }
.article-tags a {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 4px 12px;
  font-size: 12px;
  color: var(--text-mid);
}
.article-tags a:hover { background: var(--red); color: #fff; border-color: var(--red); }

/* Author bio box */
.author-bio-box {
  display: flex;
  gap: 16px;
  background: var(--bg);
  border-radius: var(--radius);
  padding: 20px;
  margin-top: 32px;
  border: 1px solid var(--border);
}
.author-bio-box .author-name { font-size: 16px; margin-bottom: 4px; }
.author-desc { font-size: 13px; color: var(--text-mid); margin-top: 6px; line-height: 1.5; }
.author-socials { display: flex; gap: 12px; margin-top: 8px; }
.author-socials a { font-size: 12px; color: var(--red); }

/* Related posts */
.related-posts { margin-top: 40px; }
.related-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.related-grid .news-card a { flex-direction: column; }
.related-grid .news-card-img { width: 100%; height: 140px; }

/* ── AUTHOR PROFILE ── */
.author-profile-box {
  display: flex;
  gap: 24px;
  align-items: center;
  background: var(--surface);
  border-radius: var(--radius);
  padding: 28px;
  margin: 28px 0;
  box-shadow: var(--shadow);
}
.author-profile-name {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: 28px;
  margin-bottom: 4px;
}
.author-profile-bio { font-size: 14px; color: var(--text-mid); margin-top: 6px; max-width: 500px; }

/* ── ARCHIVE HEADER ── */
.archive-header { margin-bottom: 24px; }
.archive-desc { font-size: 14px; color: var(--text-mid); margin-top: 8px; }

/* ── AVATARS ── */
.author-avatar-sm { border-radius: 50%; }
.author-avatar    { width: 44px; height: 44px; border-radius: 50%; }
.author-avatar-lg { width: 64px; height: 64px; border-radius: 50%; flex-shrink: 0; }
.author-avatar-xl { width: 96px; height: 96px; border-radius: 50%; flex-shrink: 0; }

/* ── PAGINATION ── */
.nav-links { display: flex; gap: 8px; margin: 32px 0; flex-wrap: wrap; }
.page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px; height: 36px;
  border-radius: 8px;
  border: 1px solid var(--border);
  font-size: 14px;
  color: var(--text);
  transition: .15s;
}
.page-numbers.current, .page-numbers:hover {
  background: var(--red);
  border-color: var(--red);
  color: #fff;
}
.page-numbers.dots { width: auto; border: none; }

/* ── FOOTER ── */
.site-footer {
  background: var(--navy);
  color: #ccc;
  margin-top: 48px;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 40px;
  padding: 40px 0 32px;
}
.footer-brand .logo-ahora { font-size: 20px; }
.footer-brand .logo-noticias { color: #fff; font-size: 18px; }
.footer-brand p { font-size: 13px; color: #888; margin-top: 8px; }
.footer-cats h4, .footer-links h4 {
  color: #fff;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: .06em;
  margin-bottom: 12px;
}
.footer-cats li, .footer-links li { margin-bottom: 6px; }
.footer-cats a, .footer-links a { font-size: 13px; color: #999; }
.footer-cats a:hover, .footer-links a:hover { color: #fff; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 16px 0;
  font-size: 12px;
  color: #666;
  text-align: center;
}

/* ── NO RESULTS ── */
.no-results { color: var(--text-muted); padding: 40px 0; text-align: center; }

/* ══════════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════════ */
@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-stack { flex-direction: row; overflow-x: auto; }
  .stack-card { min-width: 220px; }
  .main-grid, .archive-layout, .article-layout { grid-template-columns: 1fr; }
  .sidebar { display: none; }
  .archive-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  .nav-toggle { display: flex; }
  .navbar { display: none; }
  .navbar.open { display: block; }
  .navbar.open .nav-list { flex-direction: column; }
  .navbar.open .nav-list li a { padding: 12px 20px; }
  .header-search { display: none; }
  .hero-img { height: 280px; }
  .hero-title { font-size: 20px; }
  .related-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; gap: 24px; }
  .author-profile-box { flex-direction: column; text-align: center; }
  .site-logo img, .site-logo .custom-logo { max-height: 48px !important; width: auto !important; }
  .logo-ahora { font-size: 16px; }
  .logo-noticias { font-size: 14px; }
  .header-infobar-inner { flex-direction: column; align-items: center; gap: 6px; }
  .hib-left { justify-content: center; flex-wrap: wrap; }
  .hib-currency { justify-content: center; flex-wrap: wrap; gap: 8px; }
}
