/* SEO Content Styling
 * Provides typography and spacing for SEO content sections
 * Used in app/views/seo/show.html.erb for markdown-generated content
 */

.seo-content {
  line-height: 1.7;
}

.seo-content p {
  margin-bottom: 1.25rem;
}

.seo-content p:last-child {
  margin-bottom: 0;
}

.seo-content strong {
  font-weight: 600;
  color: rgb(55 65 81); /* text-gray-700 darker */
}

.seo-content ul {
  list-style-type: disc;
  margin-left: 1.5rem;
  margin-bottom: 1.25rem;
}

.seo-content li {
  margin-bottom: 0.5rem;
  line-height: 1.6;
}

.seo-content li:last-child {
  margin-bottom: 0;
}