/* ==========================================================================
   SINGLE ARTICLE / RATGEBER PAGE — Wirtschaftsmagazin (Figma "Frame 06")
   Section backgrounds full-bleed; inner content constrained to 1440px.
   ========================================================================== */

.article-page {
	font-family: 'DM Sans', system-ui, sans-serif;
	color: #0d0d0d;
	background: #fff;
}

.article-page .bar-inner {
	width: 100%;
	max-width: var(--viewport-max, 1440px);
	margin: 0 auto;
	box-sizing: border-box;
	padding: 0 24px;
}

/* ── Breadcrumb ───────────────────────────────────────────────────────── */
.art-breadcrumb {
	background: #fff;
	border-bottom: 1px solid #d4d0c8;
}
.art-breadcrumb .bar-inner {
	padding-top: 12px;
	padding-bottom: 12px;
	font-size: 11px;
	color: #888;
}
.art-breadcrumb a {
	color: #888;
	text-decoration: none;
}
.art-breadcrumb a:hover { color: #c41a1a; }
.art-breadcrumb__sep     { color: #d4d0c8; margin: 0 4px; }
.art-breadcrumb__current { color: #0d0d0d; }

/* ── Article header ──────────────────────────────────────────────────── */
.art-header {
	background: #fff;
}
.art-header .bar-inner {
	padding-top: 28px;
	padding-bottom: 0;
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.art-eyebrow {
	display: flex;
	align-items: center;
	gap: 7px;
}
.art-eyebrow__rule {
	display: block;
	width: 18px;
	height: 1px;
	background: #c41a1a;
}
.art-eyebrow__text {
	font-family: 'DM Sans', sans-serif;
	font-size: 9px;
	font-weight: 500;
	letter-spacing: 1.42px;
	text-transform: uppercase;
	color: #c41a1a;
}

.art-title {
	font-family: 'Playfair Display', Georgia, serif;
	font-weight: 700;
	font-size: 32px;
	line-height: 1.18;
	letter-spacing: -0.02em;
	color: #0d0d0d;
	margin: 0;
}

.art-deck {
	border-left: 3px solid #c41a1a;
	padding: 2px 0 2px 16px;
	font-family: 'Source Serif 4', Georgia, serif;
	font-weight: 300;
	font-size: 14.5px;
	line-height: 1.72;
	color: #444;
	margin: 0;
}

.art-byline {
	border-top: 1px solid #d4d0c8;
	border-bottom: 1px solid #d4d0c8;
	padding: 12px 0;
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 11px;
	font-size: 10px;
	color: #aaa;
	margin: 12px 0 0;
}
.art-byline__author { color: #555; font-weight: 500; }
.art-byline__sep    { color: #d4d0c8; }
.art-byline__meta   { color: #aaa; }

/* ── Hero image ──────────────────────────────────────────────────────── */
.art-hero {
	background: #fff;
	padding: 24px 0 0;
}
.art-hero__img {
	display: block;
	width: 100%;
	max-height: 704px;
	object-fit: cover;
	background: #d4d0c8;
}

/* ── Article body ────────────────────────────────────────────────────── */
.art-body {
	background: #fff;
}
.art-body__inner {
	padding-top: 28px;
	padding-bottom: 32px;
	max-width: 1180px;
	margin-left: auto;
	margin-right: auto;
}

.art-body__inner > p,
.art-body__inner p {
	font-family: 'Source Serif 4', Georgia, serif;
	font-weight: 300;
	font-size: 15px;
	line-height: 1.85;
	color: #333;
	margin: 0 0 18px;
}

.art-body__inner > p.art-lead,
.art-body__inner .art-lead {
	font-weight: 400;
	font-size: 16px;
	line-height: 1.85;
	color: #222;
	margin: 0 0 24px;
}

.art-body__inner h2 {
	font-family: 'Playfair Display', Georgia, serif;
	font-weight: 700;
	font-size: 22px;
	letter-spacing: -0.01em;
	color: #0d0d0d;
	margin: 14px 0 14px;
	padding-bottom: 8px;
	border-bottom: 2px solid #0d0d0d;
}

.art-body__inner h3 {
	font-family: 'DM Sans', sans-serif;
	font-weight: 500;
	font-size: 14px;
	letter-spacing: 0.84px;
	text-transform: uppercase;
	color: #c41a1a;
	margin: 22px 0 10px;
}

.art-body__inner ul,
.art-body__inner ol {
	font-family: 'Source Serif 4', Georgia, serif;
	font-weight: 300;
	font-size: 15px;
	line-height: 1.85;
	color: #333;
	margin: 0 0 18px;
	padding-left: 22px;
}

.art-body__inner a { color: #c41a1a; }
.art-body__inner a:hover { text-decoration: underline; }

/* Infobox */
.art-infobox {
	background: #f5f5f3;
	border-left: 4px solid #c41a1a;
	padding: 18px 22px;
	margin: 6px 0 24px;
	font-family: 'DM Sans', sans-serif;
	font-size: 14px;
	color: #222;
}
.art-infobox__title {
	font-size: 12px;
	letter-spacing: 0.96px;
	text-transform: uppercase;
	color: #c41a1a;
	font-weight: 700;
	padding-bottom: 12px;
}
.art-infobox__row {
	display: grid;
	grid-template-columns: 140px 1fr;
	gap: 12px;
	padding: 7px 0;
	border-bottom: 1px solid #d4d0c8;
	align-items: start;
}
.art-infobox__row:last-child { border-bottom: none; }
.art-infobox__label {
	font-weight: 700;
	color: #0d0d0d;
}
.art-infobox__text {
	color: #555;
	line-height: 1.55;
}

/* Pull quote */
.art-pullquote {
	background: #f5f5f3;
	border-left: 4px solid #c41a1a;
	padding: 18px 40px;
	margin: 8px 0 28px;
	font-family: 'Playfair Display', Georgia, serif;
	font-style: italic;
	font-weight: 400;
	font-size: 19px;
	line-height: 1.5;
	color: #0d0d0d;
}

.art-divider {
	border: 0;
	border-top: 1px solid #d4d0c8;
	margin: 8px 0 16px;
}

.art-image-credit {
	font-size: 10px;
	color: #888;
	padding: 0 0 8px;
}

/* Tags */
.art-tags {
	border-top: 1px solid #d4d0c8;
	padding: 16px 0 4px;
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 6px;
	color: #666;
}
.art-tags__label {
	font-size: 10px;
	letter-spacing: 1px;
	text-transform: uppercase;
	color: #aaa;
	padding-right: 4px;
}
.art-tags__pill {
	background: #fff;
	border: 1px solid #d4d0c8;
	padding: 3px 10px;
	font-size: 11px;
	color: #0d0d0d;
	text-decoration: none;
	transition: border-color 0.2s, color 0.2s;
}
.art-tags__pill:hover { border-color: #c41a1a; color: #c41a1a; text-decoration: none; }

/* ── Related profiles ────────────────────────────────────────────────── */
.art-related {
	background: #f7f5f0;
	border-top: 1px solid #d4d0c8;
}
.art-related .bar-inner {
	padding-top: 28px;
	padding-bottom: 28px;
	display: flex;
	flex-direction: column;
	gap: 18px;
}
.art-related__title {
	font-family: 'Playfair Display', Georgia, serif;
	font-weight: 700;
	font-size: 18px;
	color: #0d0d0d;
	margin: 0;
	padding-bottom: 9px;
	border-bottom: 2px solid #0d0d0d;
}

.art-related__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1px;
	background: #d4d0c8;
}

.art-related__card {
	background: #fff;
	padding: 16px;
	display: flex;
	flex-direction: column;
	gap: 5px;
}
.art-related__thumb-link { display: block; }
.art-related__thumb {
	width: 100%;
	height: 180px;
	object-fit: cover;
	display: block;
	background: #d4d0c8;
}
.art-related__tag {
	font-family: 'DM Sans', sans-serif;
	font-size: 9px;
	font-weight: 500;
	letter-spacing: 0.9px;
	text-transform: uppercase;
	color: #c41a1a;
	padding-top: 6px;
}
.art-related__name {
	font-family: 'Playfair Display', Georgia, serif;
	font-weight: 700;
	font-size: 14px;
	color: #0d0d0d;
	margin: 0;
}
.art-related__name a { color: inherit; text-decoration: none; }
.art-related__name a:hover { color: #c41a1a; }
.art-related__role {
	font-size: 10px;
	color: #aaa;
	padding: 1px 0 3px;
}
.art-related__more {
	font-family: 'DM Sans', sans-serif;
	font-size: 10px;
	font-weight: 500;
	color: #c41a1a;
	text-decoration: none;
	letter-spacing: 0.4px;
	margin-top: auto;
}
.art-related__more:hover { text-decoration: underline; color: #c41a1a; }

/* ── Responsive ──────────────────────────────────────────────────────── */
@media (max-width: 1024px) {
	.article-page .bar-inner { padding: 0 20px; }
	.art-title { font-size: 26px; }
	.art-related__grid { grid-template-columns: 1fr 1fr; }
	.art-related__card:nth-child(3) { grid-column: 1 / -1; }
}

@media (max-width: 640px) {
	.article-page .bar-inner { padding: 0 16px; }
	.art-title { font-size: 22px; line-height: 1.2; }
	.art-deck { font-size: 13px; padding-left: 12px; }
	.art-byline { gap: 8px; font-size: 10px; }
	.art-body__inner h2 { font-size: 18px; }
	.art-pullquote { font-size: 16px; padding: 16px 20px; margin: 4px 0 20px; }
	.art-infobox { padding: 14px 16px; }
	.art-infobox__row { grid-template-columns: 1fr; gap: 4px; }
	.art-related__grid { grid-template-columns: 1fr; }
	.art-related__card:nth-child(3) { grid-column: auto; }
}
