/* 双列卡片 + 站点图标 */
body {
  background: #eef1f5;
}

#app .container {
  max-width: 920px;
}

#header {
  padding: 16px 0 28px;
}

#header .logo {
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.04em;
}

#header .navi:empty {
  display: none;
}

#uptime {
  background: transparent;
  box-shadow: none;
  margin-top: -16px;
  padding: 4px 0 12px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

#uptime .site {
  margin: 0;
  padding: 14px 14px 12px;
  border: 1px solid #e4e8ed;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 1px 2px rgba(18, 26, 38, 0.05);
  transition: box-shadow 0.15s ease, border-color 0.15s ease;
}

#uptime .site:hover {
  border-color: #d5dbe3;
  box-shadow: 0 4px 12px rgba(18, 26, 38, 0.08);
}

#uptime .site .meta {
  align-items: center;
  gap: 8px;
}

#uptime .site .meta .site-icon {
  width: 24px;
  height: 24px;
  border-radius: 6px;
  flex-shrink: 0;
  object-fit: contain;
  background: #fff;
  border: 1px solid #dde2e8;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.6);
}

#uptime .site .meta .site-icon--default {
  opacity: 0.55;
  filter: grayscale(0.2);
}

#uptime .site .meta .name {
  flex: 1;
  min-width: 0;
  font-size: 13px;
  font-weight: 600;
  color: #1a2332;
  margin-right: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

#uptime .site .meta .link {
  flex-shrink: 0;
  opacity: 0.45;
}

#uptime .site .meta .link:hover {
  opacity: 0.85;
}

#uptime .site .meta .status {
  font-size: 11px;
  flex-shrink: 0;
  white-space: nowrap;
}

#uptime .site .timeline {
  margin: 10px 0 8px;
}

#uptime .site .timeline i {
  height: 8px;
  border-radius: 2px;
  margin: 0 0.5px;
}

#uptime .site .summary {
  font-size: 11px;
  line-height: 1.35;
  color: #8a939f;
}

#uptime .site .loading {
  min-height: 56px;
  background-size: 26px 26px;
}

#footer {
  padding: 6px 0 28px;
}

#footer p {
  color: #8a939f;
  font-size: 12px;
  line-height: 1.65;
  text-align: center;
  margin: 0;
}

@media (max-width: 720px) {
  #uptime {
    grid-template-columns: 1fr;
  }
}
