/* ============================================================
   RH Kylmätekniikka — single-post (brand-mukainen)
   Brand: punainen #dc051e + syvänsininen #0b1e3f + Outfit
   ============================================================ */

:root {
	/* RH brändi (AutomaticCSS-tokeneista):
	 * --action #FF7A00 = oranssi (primary CTA)
	 * --base   #0C1D51 = syvänsininen (heading, dark bg)
	 */
	--rh-fg: #0C1D51;             /* syvänsininen — RH:n --base */
	--rh-fg-soft: #11286f;        /* RH:n --base-dark */
	--rh-text: #1f2937;           /* leipäteksti */
	--rh-muted: #5b6473;
	--rh-line: #e5e8ee;
	--rh-bg: #ffffff;
	--rh-bg-alt: #e9eefc;         /* RH:n --base-ultra-light */
	--rh-bg-deep: #0C1D51;
	--rh-accent: #FF7A00;         /* RH:n brändi-oranssi (--action) */
	--rh-accent-dark: #ff8e24;    /* RH:n --action-hover */
	--rh-accent-soft: #fff2e6;    /* RH:n --action-ultra-light */
	--rh-warm: #f59e0b;
	--rh-success: #10b981;
	--rh-info: #2563eb;
	--rh-radius: 14px;
	--rh-radius-sm: 8px;
	--rh-shadow: 0 10px 32px rgba(11, 30, 63, .10);
	--rh-shadow-sm: 0 2px 10px rgba(11, 30, 63, .06);
	--rh-shadow-card: 0 6px 24px rgba(11, 30, 63, .08);
	--rh-content-max: 740px;
	--rh-grid-gap: 56px;
	--rh-sidebar: 340px;
	--rh-font: "Outfit", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
	--rh-font-head: "Outfit", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

.rh-article-main {
	color: var(--rh-text);
	font-size: 17px;
	line-height: 1.7;
	background: var(--rh-bg);
	font-family: var(--rh-font);
}
.rh-article-main h1,
.rh-article-main h2,
.rh-article-main h3 { font-family: var(--rh-font-head); letter-spacing: -.01em; }

/* ===== Reading progress ===== */
.rh-progress { position: fixed; top: 0; left: 0; right: 0; height: 3px; z-index: 100; background: transparent; pointer-events: none; }
.rh-progress__bar { height: 100%; width: 0; background: linear-gradient(90deg, var(--rh-accent), var(--rh-accent-dark)); transition: width 80ms linear; }

/* ============================================================
   Hero — full-bleed + em-dash split title + area chips
   ============================================================ */
.rh-article-hero {
	position: relative;
	background: var(--rh-bg-deep);
	color: #fff;
	overflow: hidden;
}
.rh-article-hero::before {
	content: "";
	position: absolute;
	inset: 0;
	background:
		radial-gradient(80% 60% at 90% 10%, rgba(255,122,0,.22), transparent 60%),
		radial-gradient(60% 60% at 10% 90%, rgba(37,99,235,.18), transparent 60%);
	pointer-events: none;
}
.rh-article-hero__inner {
	position: relative;
	max-width: 1180px;
	margin: 0 auto;
	padding: 56px 24px 28px;
}
.rh-breadcrumbs {
	font-size: 13px;
	color: rgba(255,255,255,.65);
	margin-bottom: 24px;
	display: flex;
	flex-wrap: wrap;
	gap: 6px;
	align-items: center;
}
.rh-breadcrumbs a { color: rgba(255,255,255,.7); text-decoration: none; }
.rh-breadcrumbs a:hover { color: #fff; text-decoration: underline; }
.rh-breadcrumbs [aria-current="page"] { color: #fff; }
.rh-article-hero__cat {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	background: var(--rh-accent);
	color: #fff;
	font-weight: 600;
	font-size: 12px;
	text-transform: uppercase;
	letter-spacing: .08em;
	padding: 6px 14px;
	border-radius: 999px;
	text-decoration: none;
	margin-bottom: 18px;
}
.rh-article-hero__cat::before {
	content: "";
	width: 6px;
	height: 6px;
	background: #fff;
	border-radius: 50%;
}
.rh-article-hero__title {
	font-size: clamp(30px, 4.5vw, 52px);
	line-height: 1.1;
	font-weight: 700;
	color: #fff;
	margin: 0 0 18px;
	letter-spacing: -.02em;
	max-width: 900px;
}
.rh-article-hero__lead {
	font-size: clamp(17px, 1.6vw, 21px);
	line-height: 1.5;
	color: rgba(255,255,255,.85);
	margin: 0 0 22px;
	max-width: 720px;
	font-weight: 400;
}
.rh-article-hero__chips {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-bottom: 22px;
}
.rh-article-hero__chip {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	background: rgba(255,255,255,.08);
	border: 1px solid rgba(255,255,255,.16);
	color: #fff;
	font-size: 13px;
	font-weight: 500;
	padding: 6px 12px;
	border-radius: 999px;
	backdrop-filter: blur(8px);
}
.rh-article-hero__chip svg { color: rgba(255,255,255,.6); }
.rh-article-hero__meta {
	display: flex;
	flex-wrap: wrap;
	gap: 22px;
	font-size: 14px;
	color: rgba(255,255,255,.7);
	padding-top: 18px;
	border-top: 1px solid rgba(255,255,255,.12);
}
.rh-meta__item { display: inline-flex; align-items: center; gap: 6px; }
.rh-meta__item svg { color: var(--rh-accent); }

.rh-article-hero__image {
	margin: 0;
	width: 100%;
	max-height: 560px;
	overflow: hidden;
}
.rh-article-hero__image img {
	width: 100%;
	height: 100%;
	min-height: 320px;
	max-height: 560px;
	object-fit: cover;
	display: block;
}

/* ============================================================
   Säästöbanneri — sales hook, hero alla
   ============================================================ */
.rh-savings-banner {
	max-width: 1180px;
	margin: -28px auto 0;
	padding: 22px 28px;
	background: #fff;
	border-radius: var(--rh-radius);
	box-shadow: var(--rh-shadow);
	display: grid;
	grid-template-columns: 1fr;
	gap: 16px;
	align-items: center;
	position: relative;
	z-index: 3;
}
@media (min-width: 768px) {
	.rh-savings-banner { grid-template-columns: auto 1fr auto; gap: 28px; padding: 24px 32px; }
}
.rh-savings-banner__num {
	font-size: clamp(36px, 5vw, 52px);
	font-weight: 800;
	color: var(--rh-accent);
	line-height: 1;
	letter-spacing: -.02em;
}
.rh-savings-banner__body {
	display: flex;
	flex-direction: column;
}
.rh-savings-banner__eyebrow {
	font-size: 12px;
	letter-spacing: .12em;
	text-transform: uppercase;
	color: var(--rh-muted);
	font-weight: 700;
	margin: 0 0 4px;
}
.rh-savings-banner__title {
	font-size: 18px;
	font-weight: 700;
	color: var(--rh-fg);
	margin: 0 0 4px;
}
.rh-savings-banner__sub {
	font-size: 14px;
	color: var(--rh-muted);
	margin: 0;
	line-height: 1.5;
}
.rh-savings-banner__btn {
	background: var(--rh-fg);
	background-color: var(--rh-fg);
	color: #ffffff;
	text-decoration: none;
	font-weight: 700;
	font-size: 15px;
	padding: 14px 24px;
	border-radius: var(--rh-radius-sm);
	white-space: nowrap;
	display: inline-flex;
	align-items: center;
	gap: 8px;
	transition: transform .15s ease, background .15s ease;
}
.rh-savings-banner__btn:hover,
.rh-savings-banner__btn:focus,
.rh-savings-banner__btn:visited { color: #ffffff; background-color: var(--rh-fg-soft); text-decoration: none; transform: translateY(-1px); }

/* ============================================================
   Grid + article
   ============================================================ */
.rh-article-grid {
	display: grid;
	grid-template-columns: minmax(0, 1fr);
	gap: var(--rh-grid-gap);
	max-width: 1180px;
	margin: 0 auto;
	padding: 48px 24px 80px;
}
@media (min-width: 1024px) {
	.rh-article-grid { grid-template-columns: minmax(0, 1fr) var(--rh-sidebar); }
}
.rh-article { min-width: 0; }

/* ============================================================
   TL;DR — säästöfokus, vaalea kortti
   ============================================================ */
.rh-tldr {
	background: linear-gradient(180deg, #fff 0%, var(--rh-bg-alt) 100%);
	border: 1px solid var(--rh-line);
	border-left: 4px solid var(--rh-accent);
	border-radius: var(--rh-radius);
	padding: 24px 28px;
	margin: 0 0 36px;
	box-shadow: var(--rh-shadow-sm);
}
.rh-tldr__head { display: flex; align-items: center; gap: 10px; margin-bottom: 14px; }
.rh-tldr__icon {
	color: #fff;
	background: var(--rh-accent);
	width: 28px;
	height: 28px;
	border-radius: 8px;
	padding: 5px;
}
.rh-tldr__title {
	font-size: 13px;
	letter-spacing: .12em;
	text-transform: uppercase;
	color: var(--rh-fg);
	font-weight: 700;
	margin: 0;
}
.rh-tldr__list { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.rh-tldr__list li {
	position: relative;
	padding-left: 28px;
	font-size: 16px;
	line-height: 1.55;
	color: var(--rh-text);
}
.rh-tldr__list li::before {
	content: "";
	position: absolute;
	left: 2px;
	top: 9px;
	width: 16px;
	height: 16px;
	background: var(--rh-accent);
	-webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3.5'><polyline points='20 6 9 17 4 12'/></svg>") no-repeat center / 14px 14px;
	        mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3.5'><polyline points='20 6 9 17 4 12'/></svg>") no-repeat center / 14px 14px;
}

/* ============================================================
   TOC — minimalinen, ilman boxia, accent-pohjainen
   ============================================================ */
.rh-toc {
	border-left: 3px solid var(--rh-accent);
	background: transparent;
	padding: 4px 0 4px 22px;
	margin: 0 0 36px;
}
.rh-toc__toggle {
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: 100%;
	background: none;
	border: 0;
	padding: 0 0 12px 0;
	font-size: 11px;
	font-weight: 800;
	color: var(--rh-fg);
	cursor: pointer;
	letter-spacing: .14em;
	text-transform: uppercase;
}
.rh-toc__toggle-inner { display: inline-flex; align-items: center; gap: 8px; }
.rh-toc__toggle-inner svg { color: var(--rh-accent); }
.rh-toc__chev { transition: transform .2s ease; color: var(--rh-muted); }
.rh-toc__toggle[aria-expanded="true"] .rh-toc__chev { transform: rotate(180deg); }
.rh-toc__list { list-style: none; padding: 0; margin: 0; display: none; counter-reset: rh-toc; }
.rh-toc__list[data-open="true"] { display: block; }
@media (min-width: 768px) { .rh-toc__list { display: block; } .rh-toc__toggle { cursor: default; pointer-events: none; } .rh-toc__chev { display: none; } }
.rh-toc__list > li {
	counter-increment: rh-toc;
	padding: 5px 0;
	position: relative;
	padding-left: 24px;
}
.rh-toc__list > li::before {
	content: counter(rh-toc, decimal-leading-zero);
	position: absolute;
	left: 0;
	top: 6px;
	font-size: 11px;
	font-weight: 700;
	color: var(--rh-accent);
	letter-spacing: .04em;
}
.rh-toc__list a { color: var(--rh-fg); text-decoration: none; font-size: 15px; font-weight: 500; }
.rh-toc__list a:hover { color: var(--rh-accent); }
.rh-toc__list a.is-active { color: var(--rh-accent); font-weight: 700; }
.rh-toc__sublist { list-style: none; padding-left: 0; margin: 6px 0 0; display: grid; gap: 4px; }
.rh-toc__sublist li { padding: 2px 0 2px 14px; font-size: 14px; border-left: 1px dashed var(--rh-line); margin-left: 4px; }
.rh-toc__sublist a { color: var(--rh-muted); }
.rh-toc__sublist a.is-active { color: var(--rh-accent); }

/* ============================================================
   Article body
   ============================================================ */
.rh-article__body { font-size: 17px; line-height: 1.78; max-width: var(--rh-content-max); }
.rh-article__body > * { margin-left: auto; margin-right: auto; }
.rh-article__body h2 {
	font-size: clamp(24px, 2.6vw, 32px);
	font-weight: 700;
	line-height: 1.25;
	margin: 56px 0 16px;
	color: var(--rh-fg);
	scroll-margin-top: 100px;
	letter-spacing: -.01em;
}
.rh-article__body h2::before {
	content: "";
	display: block;
	width: 48px;
	height: 3px;
	background: var(--rh-accent);
	border-radius: 2px;
	margin-bottom: 14px;
}
.rh-article__body h3 {
	font-size: clamp(19px, 2vw, 23px);
	font-weight: 700;
	line-height: 1.3;
	margin: 36px 0 12px;
	color: var(--rh-fg);
	scroll-margin-top: 100px;
}
.rh-article__body p { margin: 0 0 20px; }
/* Drop-cap poistettu — toistui jokaisessa Gutenberg-sectionissa virheellisesti. */
.rh-article__body a { color: var(--rh-accent); text-decoration: underline; text-underline-offset: 3px; text-decoration-thickness: 1px; }
.rh-article__body a:hover { text-decoration-thickness: 2px; color: var(--rh-accent-dark); }
.rh-article__body a.rh-inline-cta__btn, .rh-article__body a.rh-btn { text-decoration: none; }
/* Uusi inline-CTA: valkoinen nappi punaisella bg → tekstin pitää olla punainen (var(--rh-accent)), ei valkoinen. */
.rh-article__body a.rh-inline-cta__btn,
.rh-article__body a.rh-inline-cta__btn:hover,
.rh-article__body a.rh-inline-cta__btn:focus,
.rh-article__body a.rh-inline-cta__btn:visited { color: var(--rh-accent); }
.rh-article__body ul, .rh-article__body ol { margin: 0 0 20px; padding-left: 22px; }
.rh-article__body li { margin: 6px 0; }
.rh-article__body blockquote {
	border-left: 4px solid var(--rh-accent);
	padding: 16px 22px;
	font-style: normal;
	color: var(--rh-fg);
	font-weight: 500;
	font-size: 19px;
	margin: 28px 0;
	background: var(--rh-bg-alt);
	border-radius: 0 var(--rh-radius-sm) var(--rh-radius-sm) 0;
}
.rh-article__body img, .rh-article__body figure { max-width: 100%; height: auto; border-radius: var(--rh-radius-sm); }
.rh-article__body figure { margin: 28px 0; }
.rh-article__body figcaption { font-size: 14px; color: var(--rh-muted); margin-top: 8px; text-align: center; }
.rh-article__body table { width: 100%; border-collapse: collapse; margin: 28px 0; font-size: 15px; border-radius: var(--rh-radius-sm); overflow: hidden; box-shadow: var(--rh-shadow-sm); }
.rh-article__body th, .rh-article__body td { border-bottom: 1px solid var(--rh-line); padding: 12px 14px; text-align: left; }
.rh-article__body th { background: var(--rh-bg-deep); color: #fff; font-weight: 700; border-bottom: 0; }

/* ============================================================
   Inline CTA — punainen gradient banner
   ============================================================ */
.rh-inline-cta {
	background: linear-gradient(135deg, var(--rh-accent) 0%, var(--rh-accent-dark) 100%);
	border-radius: var(--rh-radius);
	padding: 26px 28px;
	margin: 36px 0;
	display: flex;
	flex-direction: column;
	gap: 14px;
	color: #fff;
	box-shadow: 0 10px 28px rgba(255,122,0,.22);
	position: relative;
	overflow: hidden;
}
.rh-inline-cta::before {
	content: "";
	position: absolute;
	right: -40px;
	bottom: -40px;
	width: 180px;
	height: 180px;
	background: radial-gradient(circle, rgba(255,255,255,.15) 0%, transparent 70%);
	pointer-events: none;
}
@media (min-width: 640px) { .rh-inline-cta { flex-direction: row; align-items: center; gap: 24px; } }
.rh-inline-cta__body { flex: 1 1 auto; min-width: 0; position: relative; z-index: 1; }
.rh-inline-cta__title { font-weight: 700; color: #fff; margin: 0 0 6px; font-size: 19px; line-height: 1.3; }
.rh-inline-cta__sub { margin: 0; color: rgba(255,255,255,.88); font-size: 15px; line-height: 1.5; }
a.rh-inline-cta__btn, .rh-inline-cta__btn {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	background: #fff;
	background-color: #fff;
	color: var(--rh-accent);
	text-decoration: none;
	font-weight: 700;
	font-size: 15px;
	padding: 14px 22px;
	border-radius: var(--rh-radius-sm);
	white-space: normal;
	flex: 0 0 auto;
	align-self: flex-start;
	line-height: 1.3;
	transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
	position: relative;
	z-index: 1;
}
a.rh-inline-cta__btn:hover, a.rh-inline-cta__btn:focus, a.rh-inline-cta__btn:visited,
.rh-inline-cta__btn:hover, .rh-inline-cta__btn:focus {
	transform: translateY(-2px);
	box-shadow: 0 8px 20px rgba(0,0,0,.16);
	background-color: #fff;
	color: var(--rh-accent);
	text-decoration: none;
}
.rh-inline-cta__btn::after { content: "→"; font-weight: 700; font-size: 18px; }

/* ============================================================
   Services-CTA — split-layout kuvalla
   ============================================================ */
.rh-services-cta {
	background: var(--rh-bg-deep);
	color: #fff;
	border-radius: var(--rh-radius);
	padding: 0;
	margin: 64px 0 24px;
	display: grid;
	grid-template-columns: 1fr;
	overflow: hidden;
	position: relative;
}
@media (min-width: 768px) { .rh-services-cta { grid-template-columns: 1.3fr 1fr; min-height: 320px; } }
.rh-services-cta__content { padding: 36px 32px; position: relative; }
.rh-services-cta__content::before {
	content: "";
	position: absolute;
	left: 32px;
	top: 36px;
	width: 4px;
	height: 36px;
	background: var(--rh-accent);
	border-radius: 2px;
}
.rh-services-cta__eyebrow {
	font-size: 12px;
	letter-spacing: .14em;
	text-transform: uppercase;
	color: var(--rh-accent);
	margin: 0 0 8px 14px;
	font-weight: 800;
}
.rh-services-cta .rh-services-cta__title,
.rh-services-cta__title {
	font-size: clamp(24px, 2.6vw, 30px);
	margin: 0 0 12px 14px;
	font-weight: 700;
	color: #ffffff !important;
	line-height: 1.2;
}
.rh-services-cta .rh-services-cta__title::before { display: none; }
.rh-services-cta__sub { margin: 0 0 20px 14px; color: rgba(255,255,255,.78); font-size: 16px; line-height: 1.55; }
.rh-services-cta__bullets { list-style: none; padding: 0; margin: 0 0 24px 14px; display: grid; gap: 8px; }
.rh-services-cta__bullets li { display: flex; align-items: flex-start; gap: 10px; font-size: 15px; color: rgba(255,255,255,.9); line-height: 1.45; }
.rh-services-cta__bullets svg { color: var(--rh-accent); flex: 0 0 18px; margin-top: 3px; }
.rh-services-cta__actions { padding: 0 0 0 14px; display: flex; flex-direction: column; gap: 10px; }
.rh-services-cta__visual {
	background: linear-gradient(135deg, var(--rh-accent) 0%, var(--rh-accent-dark) 100%);
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 36px;
	color: #fff;
	position: relative;
}
.rh-services-cta__visual::before {
	content: "";
	position: absolute;
	inset: 0;
	background: radial-gradient(circle at 30% 30%, rgba(255,255,255,.18) 0%, transparent 60%);
	pointer-events: none;
}
.rh-services-cta__big {
	text-align: center;
	position: relative;
}
.rh-services-cta__big-num {
	font-size: clamp(48px, 7vw, 80px);
	font-weight: 800;
	line-height: 1;
	display: block;
	letter-spacing: -.03em;
}
.rh-services-cta__big-label {
	display: block;
	margin-top: 8px;
	font-size: 14px;
	letter-spacing: .04em;
	color: rgba(255,255,255,.9);
	font-weight: 500;
	max-width: 220px;
}

/* ============================================================
   Buttons (defensive specificity)
   ============================================================ */
a.rh-btn, .rh-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	padding: 14px 24px;
	border-radius: var(--rh-radius-sm);
	font-weight: 700;
	text-decoration: none;
	font-size: 16px;
	line-height: 1.3;
	transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
	font-family: var(--rh-font);
}
a.rh-btn:hover, a.rh-btn:focus, .rh-btn:hover, .rh-btn:focus { text-decoration: none; }
a.rh-btn--primary, .rh-btn--primary { background: var(--rh-accent); background-color: var(--rh-accent); color: #fff; }
a.rh-btn--primary:hover, a.rh-btn--primary:focus, a.rh-btn--primary:visited, .rh-btn--primary:hover, .rh-btn--primary:focus { transform: translateY(-2px); box-shadow: 0 8px 22px rgba(255,122,0,.32); background-color: var(--rh-accent-dark); color: #fff; }
a.rh-btn--ghost, .rh-btn--ghost { background: transparent; color: #fff; border: 1px solid rgba(255,255,255,.32); }
a.rh-btn--ghost:hover, a.rh-btn--ghost:focus, a.rh-btn--ghost:visited, .rh-btn--ghost:hover, .rh-btn--ghost:focus { background: rgba(255,255,255,.1); color: #fff; }
a.rh-btn--block, .rh-btn--block { display: flex; width: 100%; }

/* ============================================================
   CTA-row — vahva 3-step myynnillisesti
   ============================================================ */
.rh-cta-row {
	margin: 64px 0 16px;
	padding: 40px 32px;
	background: var(--rh-bg-alt);
	border-radius: var(--rh-radius);
	position: relative;
	overflow: hidden;
}
.rh-cta-row::before {
	content: "";
	position: absolute;
	right: -80px;
	top: -80px;
	width: 280px;
	height: 280px;
	background: radial-gradient(circle, rgba(255,122,0,.06) 0%, transparent 70%);
	pointer-events: none;
}
.rh-cta-row__urgency {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background: var(--rh-accent);
	color: #fff;
	padding: 6px 14px;
	border-radius: 999px;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: .06em;
	text-transform: uppercase;
	margin-bottom: 14px;
}
.rh-cta-row__urgency::before {
	content: "";
	width: 6px;
	height: 6px;
	background: #fff;
	border-radius: 50%;
	animation: rh-pulse 1.6s ease-in-out infinite;
}
@keyframes rh-pulse { 0%, 100% { opacity: 1; } 50% { opacity: .4; } }
.rh-cta-row__heading {
	font-size: clamp(20px, 2.2vw, 26px);
	font-weight: 700;
	color: var(--rh-fg);
	margin: 0 0 22px;
	max-width: 600px;
	letter-spacing: -.01em;
}
.rh-cta-row__grid { display: grid; grid-template-columns: 1fr; gap: 14px; position: relative; }
@media (min-width: 768px) { .rh-cta-row__grid { grid-template-columns: repeat(3, 1fr); } }
a.rh-cta-row__card, .rh-cta-row__card {
	background: #fff;
	background-color: #fff;
	border: 1px solid var(--rh-line);
	border-radius: var(--rh-radius);
	padding: 22px;
	text-decoration: none;
	color: var(--rh-fg);
	display: flex;
	flex-direction: column;
	gap: 6px;
	position: relative;
	transition: transform .15s ease, box-shadow .15s ease, border-color .15s ease;
}
a.rh-cta-row__card:hover, a.rh-cta-row__card:focus, a.rh-cta-row__card:visited, .rh-cta-row__card:hover, .rh-cta-row__card:focus { transform: translateY(-4px); box-shadow: var(--rh-shadow); border-color: var(--rh-accent); color: var(--rh-fg); text-decoration: none; }
.rh-cta-row__icon {
	width: 44px;
	height: 44px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background: var(--rh-accent-soft);
	color: var(--rh-accent);
	border-radius: 12px;
	margin-bottom: 10px;
}
.rh-cta-row__title { font-size: 18px; font-weight: 700; margin: 0 0 4px; line-height: 1.3; color: var(--rh-fg); }
.rh-cta-row__desc { font-size: 14px; color: var(--rh-muted); margin: 0; line-height: 1.55; }
.rh-cta-row__more {
	margin-top: 12px;
	font-size: 14px;
	font-weight: 600;
	color: var(--rh-accent);
	display: inline-flex;
	align-items: center;
	gap: 6px;
}
.rh-cta-row__more::after { content: "→"; transition: transform .15s ease; }
.rh-cta-row__card:hover .rh-cta-row__more::after { transform: translateX(4px); }
a.rh-cta-row__card--primary, .rh-cta-row__card--primary { background: var(--rh-fg); background-color: var(--rh-fg); color: #fff; border-color: var(--rh-fg); }
a.rh-cta-row__card--primary:hover, a.rh-cta-row__card--primary:focus, a.rh-cta-row__card--primary:visited, .rh-cta-row__card--primary:hover, .rh-cta-row__card--primary:focus { color: #fff; background-color: var(--rh-fg-soft); border-color: var(--rh-accent); }
.rh-cta-row__card--primary .rh-cta-row__title { color: #fff; }
.rh-cta-row__card--primary .rh-cta-row__desc { color: rgba(255,255,255,.7); }
.rh-cta-row__card--primary .rh-cta-row__icon { background: rgba(255,122,0,.18); color: var(--rh-accent); }
.rh-cta-row__card--primary .rh-cta-row__more { color: var(--rh-accent); }

/* ============================================================
   Liittyvät palvelut — 4-card grid (uusi)
   ============================================================ */
.rh-related-services {
	margin: 56px 0 24px;
	padding: 0;
}
.rh-related-services__head {
	margin-bottom: 24px;
}
.rh-related-services__eyebrow {
	font-size: 12px;
	letter-spacing: .14em;
	text-transform: uppercase;
	color: var(--rh-accent);
	font-weight: 800;
	margin: 0 0 8px;
}
.rh-related-services__title {
	font-size: clamp(22px, 2.4vw, 28px);
	font-weight: 700;
	color: var(--rh-fg);
	margin: 0;
	letter-spacing: -.01em;
}
.rh-related-services__grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 14px;
}
@media (min-width: 600px) { .rh-related-services__grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .rh-related-services__grid { grid-template-columns: repeat(2, 1fr); } }
a.rh-service-card, .rh-service-card {
	display: flex;
	flex-direction: column;
	gap: 8px;
	padding: 22px 24px;
	background: #fff;
	border: 1px solid var(--rh-line);
	border-radius: var(--rh-radius);
	text-decoration: none;
	color: var(--rh-fg);
	position: relative;
	transition: transform .15s ease, box-shadow .15s ease, border-color .15s ease;
	overflow: hidden;
}
a.rh-service-card:hover, a.rh-service-card:focus, a.rh-service-card:visited,
.rh-service-card:hover, .rh-service-card:focus {
	transform: translateY(-3px);
	box-shadow: var(--rh-shadow);
	border-color: var(--rh-accent);
	color: var(--rh-fg);
	text-decoration: none;
}
a.rh-service-card--featured,
.rh-service-card--featured {
	background: var(--rh-fg);
	background-color: var(--rh-fg);
	color: #fff;
	border-color: var(--rh-fg);
}
a.rh-service-card--featured:hover,
a.rh-service-card--featured:focus,
a.rh-service-card--featured:visited,
.rh-service-card--featured:hover,
.rh-service-card--featured:focus { color: #fff; background-color: var(--rh-fg-soft); }
.rh-service-card__icon {
	width: 44px;
	height: 44px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background: var(--rh-accent-soft);
	color: var(--rh-accent);
	border-radius: 12px;
	flex: 0 0 44px;
}
.rh-service-card--featured .rh-service-card__icon { background: rgba(255,122,0,.18); }
.rh-service-card__badge {
	position: absolute;
	top: 14px;
	right: 14px;
	background: var(--rh-accent);
	color: #fff;
	padding: 4px 10px;
	border-radius: 999px;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: .04em;
	text-transform: uppercase;
}
.rh-service-card__title { font-size: 18px; font-weight: 700; margin: 0; line-height: 1.3; }
.rh-service-card--featured .rh-service-card__title { color: #fff; }
.rh-service-card__desc { font-size: 14px; color: var(--rh-muted); margin: 0; line-height: 1.55; }
.rh-service-card--featured .rh-service-card__desc { color: rgba(255,255,255,.78); }
.rh-service-card__cta {
	margin-top: 8px;
	display: inline-flex;
	align-items: center;
	gap: 6px;
	font-weight: 600;
	font-size: 14px;
	color: var(--rh-accent);
}
.rh-service-card__cta::after { content: "→"; transition: transform .15s ease; }
.rh-service-card:hover .rh-service-card__cta::after { transform: translateX(4px); }
.rh-service-card--featured .rh-service-card__cta { color: var(--rh-accent); }

/* ============================================================
   Gutenberg block styles
   ============================================================ */
.rh-article__body .is-style-rh-tip { background: #fffbeb; border-left: 4px solid var(--rh-warm); border-radius: var(--rh-radius-sm); padding: 18px 22px; margin: 28px 0; }
.rh-article__body .is-style-rh-tip::before { content: "💡 Vinkki"; display: block; font-size: 13px; font-weight: 700; color: #b45309; letter-spacing: .04em; text-transform: uppercase; margin-bottom: 8px; }
.rh-article__body .is-style-rh-callout { background: var(--rh-accent-soft); border-left: 4px solid var(--rh-accent); border-radius: var(--rh-radius-sm); padding: 18px 22px; margin: 28px 0; }
.rh-article__body .is-style-rh-callout::before { content: "Tärkeää"; display: block; font-size: 13px; font-weight: 700; color: var(--rh-accent); letter-spacing: .04em; text-transform: uppercase; margin-bottom: 8px; }
.rh-article__body .is-style-rh-warning { background: #fff7ed; border-left: 4px solid #ea580c; border-radius: var(--rh-radius-sm); padding: 18px 22px; margin: 28px 0; }
.rh-article__body .is-style-rh-warning::before { content: "⚠ Huomio"; display: block; font-size: 13px; font-weight: 700; color: #c2410c; letter-spacing: .04em; text-transform: uppercase; margin-bottom: 8px; }
.rh-article__body .is-style-rh-stats { background: var(--rh-fg); color: #fff; border-radius: var(--rh-radius); padding: 32px; margin: 32px 0; text-align: center; }
.rh-article__body .is-style-rh-stats p:first-child { font-size: clamp(40px, 6vw, 60px); font-weight: 800; color: var(--rh-accent); margin: 0 0 6px; line-height: 1; letter-spacing: -.02em; }
.rh-article__body .is-style-rh-stats p:not(:first-child) { color: rgba(255,255,255,.78); font-size: 15px; margin: 0; }
.rh-article__body .is-style-rh-pullquote { border-left: 0; background: var(--rh-bg-alt); border-radius: var(--rh-radius); padding: 36px 40px; margin: 36px 0; text-align: center; font-style: normal; position: relative; }
.rh-article__body .is-style-rh-pullquote::before { content: "“"; display: block; font-size: 68px; line-height: 1; color: var(--rh-accent); font-family: Georgia, serif; margin-bottom: -8px; }
.rh-article__body .is-style-rh-pullquote p { font-size: clamp(20px, 2.4vw, 26px); line-height: 1.4; font-weight: 600; color: var(--rh-fg); margin: 0 0 12px; font-style: normal; }
.rh-article__body .is-style-rh-pullquote cite { font-size: 14px; color: var(--rh-muted); font-style: normal; }
.rh-article__body .is-style-rh-process { list-style: none; padding: 0; counter-reset: rh-step; display: grid; gap: 14px; margin: 36px 0; }
.rh-article__body .is-style-rh-process > li { background: #fff; border: 1px solid var(--rh-line); border-radius: var(--rh-radius); padding: 18px 22px 18px 68px; position: relative; counter-increment: rh-step; margin: 0; box-shadow: var(--rh-shadow-sm); }
.rh-article__body .is-style-rh-process > li::before { content: counter(rh-step); position: absolute; left: 18px; top: 16px; width: 36px; height: 36px; display: inline-flex; align-items: center; justify-content: center; background: var(--rh-accent); color: #fff; font-weight: 700; border-radius: 10px; font-size: 16px; }
.rh-article__body .is-style-rh-checks { list-style: none; padding: 0; margin: 18px 0; display: grid; gap: 8px; }
.rh-article__body .is-style-rh-checks > li { padding-left: 30px; position: relative; margin: 0; }
.rh-article__body .is-style-rh-checks > li::before { content: ""; position: absolute; left: 0; top: 6px; width: 20px; height: 20px; background: var(--rh-success); -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3'><polyline points='20 6 9 17 4 12'/></svg>") no-repeat center / 14px 14px; mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3'><polyline points='20 6 9 17 4 12'/></svg>") no-repeat center / 14px 14px; border-radius: 50%; }

/* ============================================================
   Author
   ============================================================ */
.rh-author { margin: 48px 0 0; padding: 28px; background: var(--rh-bg-alt); border-radius: var(--rh-radius); display: flex; gap: 22px; align-items: flex-start; }
.rh-author__avatar { border-radius: 16px; width: 72px; height: 72px; flex: 0 0 72px; }
.rh-author__eyebrow { font-size: 11px; letter-spacing: .12em; text-transform: uppercase; color: var(--rh-accent); margin: 0 0 6px; font-weight: 800; }
.rh-author__name { margin: 0; font-weight: 700; font-size: 18px; }
.rh-author__name a { color: var(--rh-fg); text-decoration: none; }
.rh-author__name a:hover { color: var(--rh-accent); }
.rh-author__role { margin: 2px 0 10px; font-size: 14px; color: var(--rh-muted); font-weight: 500; }
.rh-author__bio { margin: 0; color: var(--rh-text); font-size: 15px; line-height: 1.6; }

/* ============================================================
   FAQ
   ============================================================ */
.rh-faq { margin: 56px 0 0; }
.rh-faq__title { font-size: clamp(22px, 2.4vw, 28px); margin: 0 0 22px; color: var(--rh-fg); letter-spacing: -.01em; }
.rh-faq__title::before { content: ""; display: block; width: 48px; height: 3px; background: var(--rh-accent); border-radius: 2px; margin-bottom: 14px; }
.rh-faq__list { display: grid; gap: 10px; }
.rh-faq__item { border: 1px solid var(--rh-line); border-radius: var(--rh-radius-sm); background: #fff; overflow: hidden; transition: border-color .15s ease, box-shadow .15s ease; }
.rh-faq__item:hover { border-color: var(--rh-accent); }
.rh-faq__item[open] { border-color: var(--rh-accent); box-shadow: var(--rh-shadow-sm); }
.rh-faq__q { padding: 18px 22px; font-weight: 600; cursor: pointer; list-style: none; display: flex; justify-content: space-between; align-items: center; gap: 16px; color: var(--rh-fg); }
.rh-faq__q::-webkit-details-marker { display: none; }
.rh-faq__q::after { content: "+"; font-size: 24px; color: var(--rh-accent); transition: transform .2s ease; font-weight: 400; line-height: 1; flex: 0 0 auto; }
.rh-faq__item[open] .rh-faq__q::after { transform: rotate(45deg); }
.rh-faq__a { padding: 0 22px 20px; color: var(--rh-text); font-size: 16px; line-height: 1.65; }

/* ============================================================
   Sidebar — säästö-pop-out
   ============================================================ */
.rh-sidebar { display: none; }
@media (min-width: 1024px) { .rh-sidebar { display: block; } }
.rh-sidebar__sticky { position: sticky; top: 100px; }
.rh-sidebar__card {
	background: var(--rh-bg-deep);
	color: #fff;
	border-radius: var(--rh-radius);
	padding: 0;
	box-shadow: var(--rh-shadow-card);
	overflow: hidden;
	position: relative;
}
.rh-sidebar__card::before {
	content: "";
	position: absolute;
	right: -30px;
	top: -30px;
	width: 120px;
	height: 120px;
	background: radial-gradient(circle, rgba(255,122,0,.22) 0%, transparent 70%);
	pointer-events: none;
}
.rh-sidebar__savings {
	background: linear-gradient(135deg, var(--rh-accent) 0%, var(--rh-accent-dark) 100%);
	padding: 22px;
	text-align: center;
	position: relative;
}
.rh-sidebar__savings-label {
	font-size: 11px;
	letter-spacing: .14em;
	text-transform: uppercase;
	color: rgba(255,255,255,.85);
	font-weight: 700;
	margin: 0 0 6px;
}
.rh-sidebar__savings-num {
	font-size: 38px;
	font-weight: 800;
	color: #fff;
	margin: 0;
	line-height: 1;
	letter-spacing: -.02em;
}
.rh-sidebar__savings-sub {
	font-size: 13px;
	color: rgba(255,255,255,.85);
	margin: 6px 0 0;
}
.rh-sidebar__body { padding: 22px; }
.rh-sidebar__eyebrow {
	font-size: 11px;
	letter-spacing: .14em;
	text-transform: uppercase;
	color: var(--rh-accent);
	font-weight: 800;
	margin: 0 0 6px;
}
.rh-sidebar__title { margin: 0 0 8px; font-size: 19px; font-weight: 700; line-height: 1.3; color: #fff; }
.rh-sidebar__sub { margin: 0 0 18px; font-size: 14px; line-height: 1.55; color: rgba(255,255,255,.78); }
a.rh-sidebar__phone, .rh-sidebar__phone {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	margin-top: 14px;
	color: rgba(255,255,255,.92);
	text-decoration: none;
	font-weight: 700;
	font-size: 16px;
	width: 100%;
	padding: 12px;
	border: 1px solid rgba(255,255,255,.18);
	border-radius: var(--rh-radius-sm);
}
a.rh-sidebar__phone:hover, a.rh-sidebar__phone:focus, a.rh-sidebar__phone:visited, .rh-sidebar__phone:hover {
	color: #fff;
	background: rgba(255,255,255,.08);
	text-decoration: none;
}
.rh-sidebar__trust { list-style: none; padding: 0; margin: 18px 0 0; display: grid; gap: 8px; font-size: 13px; color: rgba(255,255,255,.78); }
.rh-sidebar__trust li { display: flex; align-items: center; gap: 8px; }
.rh-sidebar__trust svg { color: var(--rh-success); flex: 0 0 18px; }
.rh-sidebar__trust--google a { display: inline-flex; align-items: center; gap: 8px; color: rgba(255,255,255,.92); text-decoration: none; font-weight: 600; }
.rh-sidebar__trust--google a:hover { color: #fff; }
.rh-google-stars { display: inline-flex; gap: 1px; flex: 0 0 auto; }
.rh-google-stars svg { color: #fbbc04; }

/* ============================================================
   Sticky mobile bottom
   ============================================================ */
.rh-sticky-mobile {
	position: fixed; left: 0; right: 0; bottom: 0; z-index: 50;
	background: #fff;
	border-top: 1px solid var(--rh-line);
	box-shadow: 0 -8px 24px rgba(11, 30, 63, .08);
	padding: 10px 14px calc(10px + env(safe-area-inset-bottom));
	display: flex; gap: 10px;
}
@media (min-width: 1024px) { .rh-sticky-mobile { display: none; } }
a.rh-sticky-mobile__call, a.rh-sticky-mobile__cta, .rh-sticky-mobile__call, .rh-sticky-mobile__cta {
	flex: 1;
	display: inline-flex; align-items: center; justify-content: center; gap: 6px;
	padding: 13px 16px;
	border-radius: var(--rh-radius-sm);
	font-weight: 700;
	text-decoration: none;
	font-size: 15px;
	line-height: 1.3;
}
a.rh-sticky-mobile__call, a.rh-sticky-mobile__call:hover, a.rh-sticky-mobile__call:focus, a.rh-sticky-mobile__call:visited, .rh-sticky-mobile__call { background: #fff; background-color: #fff; border: 2px solid var(--rh-fg); color: var(--rh-fg); flex: 0 0 auto; min-width: 110px; }
a.rh-sticky-mobile__cta, a.rh-sticky-mobile__cta:hover, a.rh-sticky-mobile__cta:focus, a.rh-sticky-mobile__cta:visited, .rh-sticky-mobile__cta { background: var(--rh-accent); background-color: var(--rh-accent); color: #fff; }
@media (max-width: 1023px) { .rh-article-main { padding-bottom: 84px; } }

/* ============================================================
   Related artikkelit
   ============================================================ */
.rh-related { background: var(--rh-bg-alt); border-top: 1px solid var(--rh-line); padding: 64px 24px 72px; margin-top: 32px; }
.rh-related__title { max-width: 1180px; margin: 0 auto 28px; font-size: clamp(22px, 2.4vw, 28px); color: var(--rh-fg); letter-spacing: -.01em; }
.rh-related__title::before { content: ""; display: block; width: 48px; height: 3px; background: var(--rh-accent); border-radius: 2px; margin-bottom: 14px; }
.rh-related__grid { max-width: 1180px; margin: 0 auto; display: grid; grid-template-columns: 1fr; gap: 20px; }
@media (min-width: 768px) { .rh-related__grid { grid-template-columns: repeat(3, 1fr); } }
.rh-related__card { background: #fff; border: 1px solid var(--rh-line); border-radius: var(--rh-radius); overflow: hidden; text-decoration: none; color: var(--rh-fg); display: flex; flex-direction: column; transition: transform .15s ease, box-shadow .15s ease; }
.rh-related__card:hover { transform: translateY(-3px); box-shadow: var(--rh-shadow); color: var(--rh-fg); }
.rh-related__image img { width: 100%; height: 200px; object-fit: cover; display: block; }
.rh-related__body { padding: 20px 22px 24px; }
.rh-related__cat { display: inline-block; font-size: 11px; letter-spacing: .12em; text-transform: uppercase; color: var(--rh-accent); font-weight: 800; margin-bottom: 8px; }
.rh-related__cardtitle { font-size: 18px; font-weight: 700; line-height: 1.35; margin: 0 0 14px; color: var(--rh-fg); }
.rh-related__more { font-size: 14px; color: var(--rh-accent); font-weight: 600; }

/* ============================================================
   Frames-plugarin CTA-card alpha (Bricks-elementti post_contentissa)
   Tumma navy bg → pakota valkoinen teksti otsikolle ja leipätekstille
   ============================================================ */
.rh-article__body .fr-cta-card-alpha .fr-cta-card-alpha__heading,
.fr-cta-card-alpha .fr-cta-card-alpha__heading,
.fr-cta-card-alpha__heading { color: #ffffff !important; }
.rh-article__body .fr-cta-card-alpha .fr-cta-card-alpha__text,
.fr-cta-card-alpha .fr-cta-card-alpha__text,
.fr-cta-card-alpha__text,
.fr-cta-card-alpha__text * { color: rgba(255,255,255,.88) !important; }

@media print {
	.rh-sidebar, .rh-sticky-mobile, .rh-services-cta, .rh-cta-row, .rh-inline-cta, .rh-related-services, .rh-savings-banner, .rh-progress, .rh-toc { display: none !important; }
	.rh-article-grid { grid-template-columns: 1fr; }
}
