.ga-hdr-info{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:22px;
  flex-wrap:wrap;
  width:100%;
  height:100%;
  padding:10px 16px;
  box-sizing:border-box;
  font-family:sans-serif;
}

/* ===== Курсы валют ===== */
.ga-hdr-rates{
  display:flex;
  align-items:center;
  gap:16px;
}
.ga-hdr-rate{
  display:flex;
  align-items:baseline;
  gap:5px;
  white-space:nowrap;
}
.ga-hdr-rate-iso{
  font-size:13px;
  font-weight:700;
  color:#333;
  letter-spacing:.3px;
}
.ga-hdr-rate-val{
  font-size:16px;
  font-weight:700;
  color:#111;
}
.ga-hdr-rate-trend{
  font-size:11px;
  font-weight:700;
}
.ga-hdr-trend-up{ color:#1a9a4a; }
.ga-hdr-trend-down{ color:#d1362f; }
.ga-hdr-trend-flat{ color:#999; }

/* ===== Разделитель между блоками ===== */
.ga-hdr-rates + .ga-hdr-weather{
  border-left:1px solid #ddd;
  padding-left:20px;
}

/* ===== Погода ===== */
.ga-hdr-weather{
  display:flex;
  align-items:center;
  gap:6px;
  white-space:nowrap;
}
.ga-hdr-weather-icon{
  font-size:22px;
  line-height:1;
}
.ga-hdr-weather-temp{
  font-size:16px;
  font-weight:700;
  color:#111;
}
.ga-hdr-weather-city{
  font-size:12px;
  color:#666;
}

/* ===== Адаптив (статичный блок) ===== */
@media (max-width:600px){
  .ga-hdr-info{
    gap:12px;
  }
  .ga-hdr-rates{
    gap:10px;
  }
  .ga-hdr-rate-val,
  .ga-hdr-weather-temp{
    font-size:14px;
  }
  .ga-hdr-weather-icon{
    font-size:18px;
  }
}

/* ===== Бегущая строка (вверху сайта) ===== */
.ga-ticker{
  width:100%;
  overflow:hidden;
  background:#16232d;
  white-space:nowrap;
  box-sizing:border-box;
}
.ga-ticker-track{
  display:inline-block;
  padding:7px 0;
  animation:ga-ticker-scroll 90s linear infinite;
  will-change:transform;
}
.ga-ticker:hover .ga-ticker-track{
  animation-play-state:paused;
}
@keyframes ga-ticker-scroll{
  from{ transform:translateX(0); }
  to{ transform:translateX(-50%); }
}
.ga-ticker-item{
  display:inline-flex;
  align-items:center;
  gap:5px;
  font-family:sans-serif;
  font-size:13px;
  color:#f2f2f2;
  padding:0 14px;
}
.ga-ticker-iso{
  font-weight:700;
  color:#9fd3ff;
}
.ga-ticker-val{
  font-weight:700;
  color:#fff;
}
.ga-ticker-trend{
  font-size:11px;
  font-weight:700;
}
.ga-ticker-icon{
  font-size:15px;
}
.ga-ticker-sep{
  color:#4a5a66;
  padding:0 4px;
  display:inline-block;
}
@media (max-width:600px){
  .ga-ticker-item{
    font-size:12px;
    padding:0 10px;
  }
}

