/* Scoped SEO landing + examples search */
.seo-examples-search {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.25rem;
  max-width: 560px;
}

.seo-examples-search .form-control {
  flex: 1 1 220px;
  min-width: 0;
}

@media (max-width: 640px) {
  .seo-examples-search {
    flex-direction: column;
  }

  .seo-examples-search .landing-btn {
    width: 100%;
  }
}

/* Scoped SEO landing page styles */
.seo-landing__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.seo-landing__features {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.75rem;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.seo-landing__features li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 1rem;
  border: 1px solid var(--lm-border, rgba(15, 23, 42, 0.08));
  border-radius: var(--radius-xs);
  background: var(--lm-surface, #fff);
}

.seo-landing__table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin-top: 1rem;
}

.seo-landing__table {
  width: 100%;
  min-width: 480px;
  border-collapse: collapse;
  font-size: 0.95rem;
}

.seo-landing__table th,
.seo-landing__table td {
  padding: 0.75rem 1rem;
  text-align: start;
  border-bottom: 1px solid var(--lm-border, rgba(15, 23, 42, 0.08));
}

.seo-landing__table thead th {
  font-weight: 600;
  background: var(--lm-muted-bg, #f8fafc);
}

.seo-landing__related-list {
  list-style: none;
  margin: 1rem 0 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1rem;
}

.seo-landing__related-list a {
  color: var(--lm-primary, #0d9488);
  text-decoration: none;
  font-weight: 500;
}

.seo-landing__related-list a:hover {
  text-decoration: underline;
}

.seo-landing__body-text {
  margin: 0 0 1rem;
  font-size: 1.02rem;
  line-height: 1.65;
  color: var(--lm-ink-muted, #475569);
}

.seo-landing__body-text:last-child {
  margin-bottom: 0;
}

@media (max-width: 640px) {
  .seo-landing__cta {
    flex-direction: column;
    align-items: stretch;
  }

  .seo-landing__cta .landing-btn {
    width: 100%;
    justify-content: center;
  }
}
