.top-informer {
  background: #222222;
  padding: 8px 0;
  font-size: 14px;
  color: #333;
  border-bottom: 1px solid #222222;
}

.informer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.informer-left,
.informer-right {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  align-items: center;
}

.informer-left a {
  text-decoration: none;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 4px;
  font-weight: 500;
}
.informer-left a:hover {
  color: #0071e3;
}

.informer-left i,
.informer-right i {
  font-size: 15px;
  opacity: 0.7;
  width: 16px;
  text-align: center;
}

.informer-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: 12px;
  font-weight: 500;
  font-size: 14px;
  text-decoration: none;
  transition: 0.2s ease;
  white-space: nowrap;
}
.informer-btn.primary {
  background: #0071e3;
  color: #fff;
}
.informer-btn.secondary {
  background: #ff9800;
  color: #fff;
  border: 1px solid #ff9800;
}
.informer-btn:hover {
  opacity: 0.9;
}

/* Адаптивность */
@media (max-width: 768px) {
  .informer-container {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
  .informer-left,
  .informer-right {
    flex-wrap: wrap;
    gap: 14px;
  }
}
