.today-filters {
  display: flex;
  justify-content: flex-end;
}

.insight-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin: 16px 0;
}

.tag-grid,
.sync-list {
  display: grid;
  gap: 12px;
}

.tag-card {
  padding: 16px;
  border-radius: 16px;
  background: var(--surface-soft);
  border: 1px solid var(--border);
}

.tag-card__title {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  font-weight: 700;
  margin-bottom: 10px;
  line-height: 1.4;
  text-wrap: pretty;
}

.tag-card__meta {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

.stat-box__meta {
  display: block;
  margin-top: 10px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.45;
}

.sync-card {
  padding: 16px;
  border-radius: 16px;
  background: var(--surface-soft);
  border: 1px solid var(--border);
  display: grid;
  gap: 8px;
}

.sync-card__header {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 0;
  font-weight: 700;
  line-height: 1.4;
  text-wrap: pretty;
}

.sync-card__status {
  color: var(--success);
}

.sync-card__status--failed {
  color: var(--danger);
}

@media (max-width: 1180px) {
  .insight-split {
    grid-template-columns: 1fr;
  }

  .today-filters {
    justify-content: stretch;
  }
}
