/**
 * Artikul SEO — Frontend Content Styles
 *
 * Ensures AI-generated content renders properly across all themes.
 * Scoped to .artikulseo-content to avoid interfering with theme styles elsewhere.
 * Applied automatically to post/page content that has been scored by Artikul SEO.
 */

/* Paragraph spacing */
.artikulseo-content p {
	margin-bottom: 1.2em;
	margin-top: 0;
}

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

/* Heading spacing */
.artikulseo-content h2 {
	margin-top: 1.8em;
	margin-bottom: 0.6em;
}

.artikulseo-content h3 {
	margin-top: 1.4em;
	margin-bottom: 0.5em;
}

.artikulseo-content h4 {
	margin-top: 1.2em;
	margin-bottom: 0.4em;
}

/* First heading after nothing shouldn't have excessive top margin */
.artikulseo-content > h2:first-child,
.artikulseo-content > h3:first-child,
.artikulseo-content > h4:first-child {
	margin-top: 0;
}

/* Links — visible, accessible, underlined */
.artikulseo-content a {
	color: #1a73e8;
	text-decoration: underline;
	text-underline-offset: 2px;
}

.artikulseo-content a:hover {
	color: #1558b0;
}

.artikulseo-content a:visited {
	color: #6b21a8;
}

/* Lists */
.artikulseo-content ul,
.artikulseo-content ol {
	margin-bottom: 1.2em;
	margin-top: 0.4em;
	padding-left: 1.8em;
}

.artikulseo-content li {
	margin-bottom: 0.4em;
	line-height: 1.7;
}

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

/* Tables */
.artikulseo-content table {
	width: 100%;
	border-collapse: collapse;
	margin-bottom: 1.5em;
	font-size: 0.95em;
}

.artikulseo-content th,
.artikulseo-content td {
	padding: 10px 14px;
	border: 1px solid #ddd;
	text-align: left;
	vertical-align: top;
}

.artikulseo-content th {
	background: #f5f5f5;
	font-weight: 600;
}

.artikulseo-content tr:nth-child(even) td {
	background: #fafafa;
}

/* Blockquotes */
.artikulseo-content blockquote {
	border-left: 4px solid #1a73e8;
	margin: 1.2em 0;
	padding: 0.8em 1.2em;
	background: #f8f9fa;
	font-style: italic;
}

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

/* Strong / Bold */
.artikulseo-content strong {
	font-weight: 700;
}

/* Images */
.artikulseo-content img {
	max-width: 100%;
	height: auto;
	border-radius: 4px;
}

/* Horizontal rules */
.artikulseo-content hr {
	border: none;
	border-top: 1px solid #e0e0e0;
	margin: 2em 0;
}

/* Line height for readability */
.artikulseo-content {
	line-height: 1.75;
}
