.seo-page {
  min-height: 100vh;
  background: #f3f8ff;
  color: #17212b;
}

.seo-shell {
  width: min(1060px, calc(100% - 24px));
  margin: 0 auto;
  padding: 18px 0 36px;
}

.seo-hero,
.seo-card {
  border: 1px solid #d5e5f6;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 8px 24px rgba(21, 101, 192, 0.09);
}

.seo-hero {
  display: grid;
  gap: 14px;
  padding: 24px;
}

.seo-icon {
  display: inline-grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border: 1px solid #b9d7f5;
  border-radius: 8px;
  background: #e8f3ff;
  color: #1565c0;
}

.seo-icon::before {
  content: var(--mi, "\f0df");
  font-family: "MaterialIcons";
  font-size: 32px;
}

.seo-kicker {
  margin: 0;
  color: #637387;
  font-weight: 700;
}

.seo-hero h1,
.seo-card h2 {
  margin: 0;
  color: #17212b;
}

.seo-hero h1 {
  font-size: clamp(30px, 5vw, 46px);
  line-height: 1.05;
}

.seo-hero p,
.seo-card p {
  margin: 0;
  color: #4d5f73;
  font-weight: 600;
  line-height: 1.55;
}

.seo-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 6px;
}

.seo-primary,
.seo-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 46px;
  padding: 0 18px;
  border-radius: 8px;
  font-weight: 800;
  text-decoration: none;
}

.seo-primary {
  background: #1565c0;
  color: #fff;
}

.seo-secondary {
  border: 1px solid #9cc6ee;
  background: #e7f3ff;
  color: #0f5fb7;
}

.seo-card {
  display: grid;
  gap: 14px;
  margin-top: 14px;
  padding: 20px;
}

.seo-chip-grid,
.seo-link-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 10px;
}

.seo-chip,
.seo-link-grid a {
  border: 1px solid #cfe1f5;
  border-radius: 8px;
  background: #f8fbff;
  color: #0f5fb7;
  font-weight: 800;
  text-decoration: none;
}

.seo-chip {
  padding: 11px 12px;
}

.seo-link-grid a {
  padding: 12px;
}

@media (max-width: 560px) {
  .seo-shell {
    width: min(100% - 16px, 1060px);
    padding-top: 8px;
  }

  .seo-hero,
  .seo-card {
    padding: 16px;
  }

  .seo-primary,
  .seo-secondary {
    width: 100%;
  }
}
