/* ==========================================================================
   HOME PAGE — Wirtschaftsmagazin (Figma Frame 02)
   Full-width section backgrounds, constrained 1440px inner content.
   ========================================================================== */

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

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

/* ── Shared eyebrow (label with red rule) ───────────────────────────────── */
.home-eyebrow {
	display: flex;
	align-items: center;
	gap: 8px;
}
.home-eyebrow__rule {
	display: block;
	width: 20px;
	height: 1px;
	background: #c41a1a;
}
.home-eyebrow__text {
	font-family: 'DM Sans', sans-serif;
	font-size: 10px;
	font-weight: 500;
	letter-spacing: 1.4px;
	text-transform: uppercase;
	color: #c41a1a;
}
.home-eyebrow--inverse .home-eyebrow__text { color: #e88888; }
.home-eyebrow--inverse .home-eyebrow__rule { background: #e88888; }

/* ── Ticker ─────────────────────────────────────────────────────────────── */
.home-ticker {
	background: #c41a1a;
	color: #fff;
}
.home-ticker .bar-inner {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 9px 24px;
}
.home-ticker__live {
	background: #fff;
	color: #c41a1a;
	font-size: 9px;
	font-weight: 600;
	letter-spacing: 1.08px;
	text-transform: uppercase;
	padding: 3px 8px;
}
.home-ticker__text {
	font-size: 11.5px;
	color: #fff;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

/* ── Hero ───────────────────────────────────────────────────────────────── */
.home-hero { background: #fff; }
.home-hero__inner {
	display: grid;
	grid-template-columns: 1.55fr 1fr;
	gap: 1px;
	padding: 0;
}
.home-hero__lead {
	background: #fff;
	padding: 28px;
	display: flex;
	flex-direction: column;
	gap: 14px;
}
.home-hero__headline {
	font-family: 'Playfair Display', Georgia, serif;
	font-weight: 700;
	font-size: 34px;
	line-height: 1.16;
	letter-spacing: -0.02em;
	color: #0d0d0d;
	margin: 0;
}
.home-hero__headline a { color: inherit; text-decoration: none; }
.home-hero__deck {
	border-left: 2px solid #c41a1a;
	padding: 4px 0 4px 16px;
	font-family: 'Source Serif 4', Georgia, serif;
	font-weight: 300;
	font-size: 15px;
	line-height: 1.65;
	color: #444;
	margin: 0;
}
.home-hero__byline {
	list-style: none;
	margin: 4px 0 0;
	padding: 0;
	display: flex;
	flex-wrap: wrap;
	gap: 14px;
	font-size: 11px;
	color: #9a9690;
}
.home-hero__byline li { display: flex; gap: 4px; }
.home-hero__byline strong { color: #0d0d0d; font-weight: 500; }
.home-hero__byline-role { color: #9a9690; }

.home-hero__media { margin: 4px 0 0; }
.home-hero__image {
	width: 100%;
	height: 360px;
	object-fit: cover;
	display: block;
	background: #d4d0c8;
}
.home-hero__caption {
	display: flex;
	justify-content: space-between;
	gap: 16px;
	padding: 6px 0 0;
	font-size: 10.5px;
	letter-spacing: 0.42px;
	color: #7a7568;
}
.home-hero__more { color: #c41a1a; text-decoration: none; }
.home-hero__more:hover { text-decoration: underline; }

/* Hero sidebar — three stacked panels, separated by 1px gap revealing #d4d0c8 bg */
.home-hero__sidebar {
	display: flex;
	flex-direction: column;
	gap: 1px;
	background: #d4d0c8;
}
.home-side {
	padding: 20px;
	display: flex;
	flex-direction: column;
	gap: 8px;
	flex: 1;
}
.home-side--light { background: #fff; }
.home-side--dark  { background: #0d0d0d; color: #aaa; }
.home-side__title {
	font-family: 'Playfair Display', Georgia, serif;
	font-weight: 700;
	font-size: 18px;
	line-height: 1.3;
	margin: 0;
}
.home-side__title a { color: inherit; text-decoration: none; }
.home-side--light .home-side__title { color: #0d0d0d; }
.home-side--dark  .home-side__title { color: #fff; }
.home-side__deck {
	font-family: 'Source Serif 4', Georgia, serif;
	font-weight: 300;
	font-size: 13px;
	line-height: 1.6;
	margin: 0;
}
.home-side--light .home-side__deck { color: #555; }
.home-side--dark  .home-side__deck { color: #aaa; }
.home-side__meta {
	font-size: 10px;
	color: #9a9690;
}
.home-side__meta--inverse { color: #888; }
.home-side__cta {
	align-self: flex-start;
	margin-top: 4px;
	background: #c41a1a;
	color: #fff;
	font-size: 9.5px;
	font-weight: 500;
	letter-spacing: 0.57px;
	text-transform: uppercase;
	padding: 10px 12px;
	text-decoration: none;
	transition: background-color 0.2s;
}
.home-side__cta:hover { background: #a81515; color: #fff; text-decoration: none; }

/* ── News strip + Comment ───────────────────────────────────────────────── */
.home-news { background: #fff; }
.home-news__inner {
	display: grid;
	grid-template-columns: 2fr 1fr;
	gap: 1px;
	padding: 0;
}
.home-news__main { background: #fff; padding: 22px 24px; }
.home-news__main .home-eyebrow { margin-bottom: 10px; }
.home-news__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 22px;
}
.home-news__item { padding-right: 22px; border-right: 1px solid #ece8de; display: flex; flex-direction: column; gap: 5px; }
.home-news__item:last-child { border-right: none; padding-right: 0; }
.home-news__time { font-size: 10px; color: #7a7568; }
.home-news__title {
	font-family: 'Playfair Display', Georgia, serif;
	font-weight: 700;
	font-size: 15px;
	line-height: 1.25;
	margin: 0;
	color: #0d0d0d;
}
.home-news__title a { color: inherit; text-decoration: none; }
.home-news__title a:hover { color: #c41a1a; }
.home-news__deck {
	font-family: 'Source Serif 4', Georgia, serif;
	font-weight: 300;
	font-size: 12.5px;
	line-height: 1.55;
	color: #555;
	margin: 0;
}

.home-comment { background: #f7f5f0; padding: 22px 24px; display: flex; flex-direction: column; gap: 12px; }
.home-comment__body { display: flex; align-items: flex-start; gap: 12px; }
.home-comment__avatar {
	width: 48px; height: 48px; border-radius: 50%;
	background: #0d0d0d; color: #fff;
	font-family: 'Playfair Display', Georgia, serif;
	font-size: 15px;
	display: flex; align-items: center; justify-content: center;
	flex-shrink: 0;
}
.home-comment__title {
	font-family: 'Source Serif 4', Georgia, serif;
	font-size: 16px;
	font-weight: 400;
	line-height: 1.3;
	margin: 0 0 4px;
	color: #0d0d0d;
}
.home-comment__byline { font-size: 10.5px; color: #7a7568; }

/* ── 3-column article grid ─────────────────────────────────────────────── */
.home-articles { background: #fff; }
.home-articles__inner {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1px;
	padding: 0;
}
.home-articles__card {
	background: #fff;
	padding: 22px;
	display: flex;
	flex-direction: column;
	gap: 8px;
}
.home-articles__thumb-link { display: block; }
.home-articles__thumb {
	width: 100%; height: 160px; object-fit: cover; display: block;
	background: #d4d0c8;
}
.home-articles__title {
	font-family: 'Playfair Display', Georgia, serif;
	font-weight: 700;
	font-size: 18px;
	line-height: 1.25;
	margin: 0;
}
.home-articles__title a { color: #0d0d0d; text-decoration: none; }
.home-articles__title a:hover { color: #c41a1a; }
.home-articles__deck {
	font-family: 'Source Serif 4', Georgia, serif;
	font-weight: 300;
	font-size: 13px;
	line-height: 1.55;
	color: #555;
	margin: 0;
}
.home-articles__meta { font-size: 10px; color: #9a9690; }

/* ── Ranking (dark) ────────────────────────────────────────────────────── */
.home-ranking {
	background: #0d0d0d;
	color: #fff;
}
.home-ranking__inner { padding: 27px 24px 26px; display: flex; flex-direction: column; gap: 18px; }
.home-ranking__header {
	display: flex; align-items: flex-end; justify-content: space-between; gap: 20px;
	flex-wrap: wrap;
}
.home-ranking__title {
	font-family: 'Playfair Display', Georgia, serif;
	font-weight: 700;
	font-size: 24px;
	color: #fff;
	margin: 6px 0 0;
}
.home-ranking__cta {
	background: #c41a1a;
	color: #f7f5f0;
	font-size: 11px;
	letter-spacing: 0.44px;
	text-transform: uppercase;
	padding: 10px 12px;
	text-decoration: none;
	white-space: nowrap;
	align-self: flex-start;
	transition: background 0.2s;
}
.home-ranking__cta:hover { background: #a81515; color: #fff; text-decoration: none; }

.home-ranking__list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	gap: 1px;
	background: #222;
}
.home-ranking__row {
	background: #0d0d0d;
	padding: 14px;
	display: flex;
	flex-direction: column;
	gap: 3px;
}
.home-ranking__rank {
	font-family: 'Playfair Display', Georgia, serif;
	font-weight: 900;
	font-size: 42px;
	line-height: 1;
	color: #c41a1a;
}
.home-ranking__company { font-size: 14px; color: #fff; padding-top: 5px; }
.home-ranking__sector  { font-size: 10.5px; color: #aaa; }
.home-ranking__growth  { font-size: 11px; color: #e88888; padding-top: 2px; }

/* ── Profile section header ────────────────────────────────────────────── */
.home-profiles-header {
	background: #f7f5f0;
	border-top: 2px solid #0d0d0d;
	border-bottom: 1px solid #d4d0c8;
}
.home-profiles-header__inner {
	display: flex;
	align-items: baseline;
	justify-content: space-between;
	gap: 20px;
	padding: 16px 24px 12px;
}
.home-profiles-header__title {
	font-family: 'Playfair Display', Georgia, serif;
	font-weight: 700;
	font-size: 20px;
	letter-spacing: -0.2px;
	margin: 0;
	color: #0d0d0d;
}
.home-profiles-header__link {
	font-size: 11px;
	letter-spacing: 0.44px;
	text-transform: uppercase;
	color: #c41a1a;
	text-decoration: none;
}
.home-profiles-header__link:hover { text-decoration: underline; color: #c41a1a; }

/* ── Profile cards ─────────────────────────────────────────────────────── */
.home-profiles { background: #fff; }
.home-profiles__inner {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 1px;
	padding: 0;
}
.home-profile {
	background: #fff;
	padding: 18px;
	display: flex;
	flex-direction: column;
	gap: 4px;
}
.home-profile__tag { font-size: 10px; color: #c41a1a; letter-spacing: 1.4px; text-transform: uppercase; font-weight: 500; padding-bottom: 7px; }
.home-profile__avatar { width: 56px; height: 56px; border-radius: 50%; object-fit: cover; background: #d4d0c8; }
.home-profile__name {
	font-family: 'Playfair Display', Georgia, serif;
	font-weight: 700;
	font-size: 16px;
	margin: 9px 0 0;
}
.home-profile__name a { color: #0d0d0d; text-decoration: none; }
.home-profile__name a:hover { color: #c41a1a; }
.home-profile__role { font-size: 11px; color: #9a9690; line-height: 1.4; }
.home-profile__deck {
	font-family: 'Source Serif 4', Georgia, serif;
	font-weight: 300;
	font-size: 12.5px;
	line-height: 1.55;
	color: #555;
	margin: 7px 0 9px;
	flex: 1;
}
.home-profile__cta {
	align-self: flex-start;
	background: #fff;
	border: 1px solid #d4d0c8;
	color: #777;
	font-size: 9px;
	font-weight: 500;
	letter-spacing: 0.72px;
	text-transform: uppercase;
	padding: 4px 9px;
	text-decoration: none;
}
.home-profile__cta:hover { border-color: #c41a1a; color: #c41a1a; text-decoration: none; }
.home-profile__cta--accent { border-color: #c41a1a; color: #c41a1a; }

/* ── Long interview + portrait ─────────────────────────────────────────── */
.home-feature { background: #fff; }
.home-feature__inner {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 1px;
	padding: 0;
}
.home-feature__interview { background: #fff; padding: 24px; display: flex; flex-direction: column; gap: 10px; }
.home-feature__title {
	font-family: 'Playfair Display', Georgia, serif;
	font-weight: 700;
	font-size: 22px;
	line-height: 1.25;
	color: #0d0d0d;
	margin: 0;
}
.home-feature__deck {
	font-family: 'Source Serif 4', Georgia, serif;
	font-weight: 300;
	font-size: 13.5px;
	line-height: 1.65;
	color: #555;
	margin: 0;
}
.home-feature__author { display: flex; align-items: center; gap: 12px; padding-top: 4px; font-size: 12px; }
.home-feature__avatar { width: 44px; height: 44px; border-radius: 50%; object-fit: cover; background: #d4d0c8; }
.home-feature__author > div { display: flex; flex-direction: column; }
.home-feature__author strong { font-weight: 500; }
.home-feature__author-role { font-size: 10.5px; color: #9a9690; }

.home-feature__portrait { background: #fff; padding: 24px; display: flex; gap: 22px; }
.home-feature__portrait-img {
	width: 168px; height: 180px; flex-shrink: 0;
	object-fit: cover; background: #d4d0c8;
}
.home-feature__portrait-body { display: flex; flex-direction: column; gap: 7px; flex: 1; min-width: 0; }
.home-feature__portrait .home-feature__title { font-size: 19px; }
.home-feature__portrait .home-feature__deck { font-size: 13px; }
.home-feature__meta { font-size: 10.5px; color: #9a9690; padding-top: 4px; }

/* ── Regional ──────────────────────────────────────────────────────────── */
.home-regional { background: #fff; border-bottom: 1px solid #d4d0c8; }
.home-regional__inner { padding: 25px 24px 24px; display: flex; flex-direction: column; gap: 16px; }
.home-regional__header { display: flex; align-items: baseline; justify-content: space-between; gap: 20px; flex-wrap: wrap; }
.home-regional__header h2 {
	font-family: 'Playfair Display', Georgia, serif;
	font-weight: 700;
	font-size: 20px;
	margin: 0;
	color: #0d0d0d;
}
.home-regional__sub { font-size: 10.5px; color: #7a7568; }
.home-regional__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.home-regional__card { padding-left: 14px; border-left: 3px solid #c41a1a; display: flex; flex-direction: column; gap: 4px; }
.home-regional__card--black { border-left-color: #0d0d0d; }
.home-regional__card--green { border-left-color: #1a6b2a; }
.home-regional__tag { font-size: 10px; color: #7a7568; letter-spacing: 1.4px; text-transform: uppercase; }
.home-regional__title {
	font-family: 'Playfair Display', Georgia, serif;
	font-weight: 700;
	font-size: 16px;
	line-height: 1.35;
	margin: 0;
	color: #0d0d0d;
}
.home-regional__deck {
	font-family: 'Source Serif 4', Georgia, serif;
	font-weight: 300;
	font-size: 12.5px;
	color: #555;
	margin: 0;
}

/* ── Branchen tiles ────────────────────────────────────────────────────── */
.home-branchen { background: #fff; border-bottom: 1px solid #d4d0c8; }
.home-branchen__inner { padding: 28px 24px; display: flex; flex-direction: column; gap: 10px; }
.home-branchen__header {
	display: flex;
	align-items: baseline;
	justify-content: space-between;
	gap: 20px;
}
.home-branchen__header h2 {
	font-family: 'Playfair Display', Georgia, serif;
	font-weight: 700;
	font-size: 22px;
	margin: 0;
	color: #0d0d0d;
}
.home-branchen__link { font-size: 11px; letter-spacing: 0.44px; text-transform: uppercase; color: #c41a1a; text-decoration: none; }
.home-branchen__link:hover { text-decoration: underline; color: #c41a1a; }
.home-branchen__grid {
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	gap: 10px;
	padding-top: 8px;
}
.home-branchen__tile {
	background: #f7f5f0;
	border: 1px solid #d4d0c8;
	padding: 14px;
	display: flex;
	flex-direction: column;
	gap: 4px;
	text-decoration: none;
	transition: border-color 0.2s, background 0.2s;
}
.home-branchen__tile:hover { border-color: #c41a1a; background: #fff; text-decoration: none; }
.home-branchen__count { font-size: 11px; color: #7a7568; }
.home-branchen__name { font-family: 'Playfair Display', Georgia, serif; font-weight: 700; font-size: 15px; color: #0d0d0d; }

/* ── Most read + Podcast ───────────────────────────────────────────────── */
.home-most { background: #fff; }
.home-most__inner {
	display: grid;
	grid-template-columns: 1.4fr 1fr;
	gap: 1px;
	padding: 0;
}
.home-most__list { background: #fff; padding: 24px; }
.home-most__title {
	font-family: 'Playfair Display', Georgia, serif;
	font-weight: 700;
	font-size: 18px;
	margin: 0 0 10px;
	padding-bottom: 10px;
	border-bottom: 2px solid #0d0d0d;
	color: #0d0d0d;
}
.home-most__ol { list-style: none; margin: 0; padding: 0; }
.home-most__item {
	display: flex;
	align-items: flex-start;
	gap: 14px;
	padding: 10px 0;
	border-bottom: 1px solid #ece8de;
}
.home-most__item:last-child { border-bottom: none; }
.home-most__rank {
	font-family: 'Playfair Display', Georgia, serif;
	font-weight: 900;
	font-size: 28px;
	line-height: 1;
	color: #c41a1a;
	min-width: 36px;
}
.home-most__link {
	font-family: 'Source Serif 4', Georgia, serif;
	font-size: 14.5px;
	font-weight: 400;
	line-height: 1.3;
	color: #0d0d0d;
	text-decoration: none;
	display: block;
	margin-bottom: 3px;
}
.home-most__link:hover { color: #c41a1a; }
.home-most__meta { font-size: 10.5px; color: #9a9690; }

.home-podcast { background: #f7f5f0; padding: 24px; display: flex; flex-direction: column; gap: 9px; }
.home-podcast__title {
	font-family: 'Playfair Display', Georgia, serif;
	font-weight: 700;
	font-size: 20px;
	line-height: 1.25;
	color: #0d0d0d;
	margin: 4px 0 0;
}
.home-podcast__deck {
	font-family: 'Source Serif 4', Georgia, serif;
	font-weight: 300;
	font-size: 13px;
	line-height: 1.6;
	color: #555;
	margin: 0;
}
.home-podcast__player {
	background: #fff;
	border: 1px solid #d4d0c8;
	padding: 12px;
	display: flex;
	align-items: center;
	gap: 12px;
}
.home-podcast__play {
	width: 44px; height: 44px; border-radius: 50%;
	background: #c41a1a;
	color: #fff;
	border: none;
	font-size: 14px;
	display: flex; align-items: center; justify-content: center;
	cursor: pointer;
	flex-shrink: 0;
}
.home-podcast__play:hover { background: #a81515; }
.home-podcast__player-body { flex: 1; display: flex; flex-direction: column; gap: 3px; }
.home-podcast__label { font-size: 11.5px; font-weight: 500; color: #0d0d0d; }
.home-podcast__progress { height: 4px; background: #ece8de; position: relative; }
.home-podcast__progress-fill { position: absolute; top: 0; left: 0; height: 100%; width: 32%; background: #c41a1a; }
.home-podcast__time { font-size: 10px; color: #9a9690; }
.home-podcast__platforms { display: flex; gap: 8px; padding-top: 5px; font-size: 10.5px; color: #7a7568; }

/* ── Newsletter CTA ────────────────────────────────────────────────────── */
.home-newsletter { background: #0d0d0d; color: #fff; }
.home-newsletter__inner {
	display: flex;
	align-items: center;
	gap: 24px;
	padding: 33px 24px 32px;
}
.home-newsletter__copy { flex: 1; display: flex; flex-direction: column; gap: 10px; }
.home-newsletter__title {
	font-family: 'Playfair Display', Georgia, serif;
	font-weight: 700;
	font-size: 26px;
	line-height: 1.2;
	color: #fff;
	margin: 0;
}
.home-newsletter__deck {
	font-family: 'Source Serif 4', Georgia, serif;
	font-weight: 300;
	font-size: 14px;
	line-height: 1.6;
	color: #bbb;
	margin: 0;
}
.home-newsletter__cta {
	background: #c41a1a;
	color: #f7f5f0;
	font-size: 11px;
	letter-spacing: 0.44px;
	text-transform: uppercase;
	padding: 10px 14px;
	text-decoration: none;
	white-space: nowrap;
	transition: background 0.2s;
}
.home-newsletter__cta:hover { background: #a81515; color: #fff; text-decoration: none; }

/* ── Responsive ────────────────────────────────────────────────────────── */
@media (max-width: 1024px) {
	.home-hero__inner,
	.home-news__inner,
	.home-most__inner { grid-template-columns: 1fr; }
	.home-articles__inner,
	.home-regional__grid { grid-template-columns: 1fr 1fr; }
	.home-ranking__list { grid-template-columns: repeat(2, 1fr); }
	.home-profiles__inner { grid-template-columns: 1fr 1fr; }
	.home-branchen__grid { grid-template-columns: repeat(3, 1fr); }
	.home-feature__inner { grid-template-columns: 1fr; }
	.home-newsletter__inner { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 640px) {
	.home-news__grid,
	.home-articles__inner,
	.home-regional__grid,
	.home-profiles__inner { grid-template-columns: 1fr; }
	.home-ranking__list { grid-template-columns: 1fr; }
	.home-branchen__grid { grid-template-columns: 1fr 1fr; }
	.home-feature__portrait { flex-direction: column; }
	.home-feature__portrait-img { width: 100%; height: 220px; }
	.home-hero__lead, .home-side, .home-news__main, .home-comment,
	.home-articles__card, .home-profile, .home-feature__interview,
	.home-feature__portrait, .home-most__list, .home-podcast { padding: 18px; }
	.home-news__item { border-right: none; padding-right: 0; padding-bottom: 14px; border-bottom: 1px solid #ece8de; }
	.home-news__item:last-child { border-bottom: none; }
	.home-ranking__title { font-size: 20px; }
	.home-newsletter__title { font-size: 22px; }
}
