/*
 * Artikel-Abschnitte widget — new, reusable widget (no source prototype) for the
 * ARGE CANNA site's many position-paper-style pages (Wege der Versorgung, Rechtslage,
 * Einsatzgebiete, ...): a heading, an intro paragraph, any number of heading+text
 * sections, and an optional closing statement. Uses only the plugin's established
 * brand tokens — accent green, Montserrat/Amiko, generous vertical rhythm.
 */

.ac-article {
	font-family: 'Amiko', sans-serif;
	max-width: 800px;
}

.ac-article > * + * {
	margin-top: 40px;
}

/* Font/size/weight/color come from the shared .ac-heading class (see ac-fonts.css). */
.ac-article-heading {
	margin: 0 0 15px;
}

.ac-article-intro {
	font-size: 1.1rem;
	line-height: 1.7;
	color: #333;
	margin: 0;
}

.ac-article-sections > * + * {
	margin-top: 32px;
}

.ac-article-section-title {
	font-family: 'Montserrat', sans-serif;
	font-size: 1.3rem;
	font-weight: 800;
	color: #111;
	margin: 0 0 12px;
	padding-left: 16px;
	border-left: 4px solid var( --ac-accent, #2e6741 );
}

.ac-article-section-text {
	font-size: 1rem;
	line-height: 1.75;
	color: #444;
}

.ac-article-section-text p {
	margin: 0 0 15px;
}

.ac-article-section-text p:last-child {
	margin-bottom: 0;
}

.ac-article-closing {
	background-color: #f7f9fc;
	border-left: 4px solid var( --ac-accent, #2e6741 );
	border-radius: 0 10px 10px 0;
	padding: 25px 30px;
	font-size: 1.05rem;
	font-style: italic;
	line-height: 1.7;
	color: #333;
}

@media ( max-width: 600px ) {
	.ac-article > * + * {
		margin-top: 30px;
	}
}
