/* Final cascade for the 2026-09 homepage redesign. Loaded after legacy core rules. */
body,
button,
input,
select,
textarea {
	font-family: 'Poppins', 'Segoe UI', Arial, sans-serif !important;
}

/* Homepage magazine issues. */
.de-issues {
	width: min(1240px, calc(100% - 48px));
	margin: 0 auto;
	padding: 44px 0 48px;
	border-bottom: 1px solid var(--de-line);
}

.de-issues__header {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 24px;
	margin-bottom: 22px;
}

.de-issues__eyebrow {
	display: block;
	margin-bottom: 7px;
	color: var(--de-primary-dark);
	font-size: 10px;
	font-weight: 750;
	letter-spacing: .1em;
	line-height: 1.35;
}

.de-issues__header h2 {
	margin: 0;
	color: var(--de-ink);
	font-size: clamp(24px, 2.15vw, 33px);
	font-weight: 700;
	letter-spacing: -.04em;
	line-height: 1.15;
}

.de-issues__all {
	flex: 0 0 auto;
	padding: 10px 14px;
	border: 1px solid var(--de-primary-dark);
	color: var(--de-primary-dark);
	font-size: 11px;
	font-weight: 700;
	letter-spacing: .035em;
	line-height: 1;
	text-transform: uppercase;
}

.de-issues__all:hover,
.de-issues__all:focus-visible {
	background: var(--de-primary-dark);
	color: #fff;
}

.de-issues__body {
	position: relative;
}

.de-issues__controls {
	display: flex;
	justify-content: flex-end;
	gap: 8px;
	margin-bottom: 13px;
}

.de-issues__controls button {
	display: inline-grid;
	place-items: center;
	width: 38px;
	height: 38px;
	padding: 0;
	border: 1px solid var(--de-line);
	border-radius: 50%;
	background: #fff;
	color: var(--de-ink);
	font-size: 19px;
	line-height: 1;
	cursor: pointer;
}

.de-issues__controls button:hover,
.de-issues__controls button:focus-visible {
	border-color: var(--de-primary-dark);
	background: var(--de-primary-dark);
	color: #fff;
}

.de-issues__controls button:disabled {
	opacity: .32;
	cursor: default;
}

.de-issues__rail {
	display: grid;
	grid-auto-flow: column;
	grid-auto-columns: calc((100% - 80px) / 5);
	gap: 20px;
	margin: 0;
	padding: 3px 2px 12px;
	overflow-x: auto;
	overflow-y: hidden;
	list-style: none;
	scroll-behavior: smooth;
	scroll-snap-type: x mandatory;
	scrollbar-width: thin;
	scrollbar-color: var(--de-line) transparent;
}

.de-issue-card {
	min-width: 0;
	scroll-snap-align: start;
}

.de-issue-card > a {
	display: block;
	color: var(--de-ink);
}

.de-issue-card__cover {
	position: relative;
	display: block;
	aspect-ratio: 430 / 555;
	overflow: hidden;
	background: #e7efed;
	box-shadow: 0 9px 24px rgba(0, 45, 39, .12);
}

.de-issue-card__cover img {
	display: block;
	width: 100% !important;
	height: 100% !important;
	max-width: none !important;
	object-fit: cover;
	transition: transform .28s ease;
}

.de-issue-card a:hover .de-issue-card__cover img,
.de-issue-card a:focus-visible .de-issue-card__cover img {
	transform: scale(1.025);
}

.de-issue-card a:focus-visible {
	outline: 2px solid var(--de-primary-dark);
	outline-offset: 3px;
}

.de-issue-card__badge {
	position: absolute;
	z-index: 1;
	top: 12px;
	left: 12px;
	padding: 6px 9px;
	background: var(--de-primary-dark);
	color: #fff;
	font-size: 9px;
	font-weight: 750;
	letter-spacing: .07em;
	line-height: 1;
	text-transform: uppercase;
}

.de-issue-card__label {
	display: block;
	margin-top: 13px;
	font-size: 15px;
	font-weight: 700;
	line-height: 1.3;
}

.de-issue-card__action {
	display: inline-block;
	margin-top: 5px;
	color: var(--de-primary-dark);
	font-size: 10px;
	font-weight: 700;
	letter-spacing: .05em;
	text-transform: uppercase;
}

@media (max-width: 1024px) {
	.de-issues {
		width: min(100% - 40px, 920px);
	}

	.de-issues__rail {
		grid-auto-columns: calc((100% - 40px) / 3);
	}
}

@media (max-width: 767px) {
	.de-issues {
		width: calc(100% - 32px);
		padding: 34px 0 38px;
	}

	.de-issues__header {
		align-items: flex-start;
		margin-bottom: 16px;
	}

	.de-issues__header h2 {
		font-size: 24px;
	}

	.de-issues__eyebrow {
		max-width: 220px;
	}

	.de-issues__all {
		padding: 9px 10px;
		font-size: 9px;
	}

	.de-issues__controls {
		margin-bottom: 10px;
	}

	.de-issues__controls button {
		width: 36px;
		height: 36px;
	}

	.de-issues__rail {
		grid-auto-columns: min(72vw, 238px);
		gap: 16px;
		padding-bottom: 10px;
	}
}

@media (prefers-reduced-motion: reduce) {
	.de-issues__rail {
		scroll-behavior: auto;
	}

	.de-issue-card__cover img {
		transition: none;
	}
}

.de-ad-disclosure {
	height: 27px !important;
	min-height: 27px !important;
	padding: 5px 20px !important;
	font-size: 10px !important;
	line-height: 17px !important;
}

.de-ad-disclosure__inner {
	display: flex;
	justify-content: space-between;
	align-items: center;
	width: min(1240px, 100%);
	margin: 0 auto;
}

.de-ad-disclosure__inner nav {
	display: flex;
	gap: 16px;
}

.de-ad-disclosure__inner a {
	color: #fff;
	font-weight: 600;
}

.pc-wrapbuilder-header,
#pcbdhd_header,
.main-builder-header {
	height: 97px !important;
	min-height: 97px !important;
}

.main-builder-header {
	position: relative !important;
	border-bottom: 1px solid #dce8e5 !important;
	box-shadow: none !important;
}

.main-builder-header .penci_topbar,
.main-builder-header .penci_midbar {
	height: 96px !important;
	min-height: 96px !important;
	padding: 0 !important;
	border: 0 !important;
	box-shadow: none !important;
}

.main-builder-header .penci_topbar .container,
.main-builder-header .penci_midbar .container {
	width: min(1240px, calc(100% - 48px)) !important;
	height: 96px !important;
	max-width: 1240px !important;
}

.main-builder-header .penci_topbar .penci_nav_row,
.main-builder-header .penci_midbar .penci_nav_row {
	width: 100% !important;
	height: 96px !important;
	min-height: 96px !important;
}

.main-builder-header .penci_topbar .penci_nav_left {
	display: none !important;
}

.main-builder-header .penci_topbar .penci_nav_center {
	z-index: 4;
	justify-content: flex-start !important;
	width: 372px !important;
	height: 96px !important;
	margin: 0 !important;
}

.main-builder-header .penci_topbar .pc-logo,
.main-builder-header .penci_topbar .pc-logo a {
	width: 348px !important;
	height: 85px !important;
}

.main-builder-header .penci_topbar .penci-mainlogo {
	width: 348px !important;
	height: 85px !important;
	max-width: 348px !important;
	max-height: 85px !important;
	object-fit: contain;
}

.main-builder-header .penci_topbar .penci_nav_right {
	z-index: 5;
	width: 128px !important;
	height: 96px !important;
	margin-left: auto !important;
}

.main-builder-header .penci_topbar .penci-builder-button {
	min-width: 118px;
	height: 42px !important;
	padding: 0 20px !important;
	border: 0 !important;
	border-radius: 0 !important;
	background: #00a090 !important;
	font-size: 12px !important;
	font-weight: 600 !important;
	line-height: 42px !important;
}

.main-builder-header .penci_midbar {
	position: absolute !important;
	top: 0;
	left: 0;
	z-index: 3;
	width: 100%;
	background: transparent !important;
	pointer-events: none;
}

.main-builder-header .penci_midbar .penci_nav_left,
.main-builder-header .penci_midbar .penci_nav_right {
	display: none !important;
}

.main-builder-header .penci_midbar .penci_nav_center {
	align-items: center !important;
	width: 100% !important;
	height: 96px !important;
	padding: 0 72px 0 380px !important;
	pointer-events: none;
}

.main-builder-header .penci_midbar .pc-main-menu,
.main-builder-header .penci_midbar .penci-top-search {
	pointer-events: auto;
}

.main-builder-header .penci_midbar .pc-main-menu,
.main-builder-header .penci_midbar .navigation,
.main-builder-header .penci_midbar .menu,
.main-builder-header .penci_midbar .menu > li,
.main-builder-header .penci_midbar .menu > li > a {
	height: 96px !important;
	min-height: 96px !important;
}

.main-builder-header .penci_midbar .pc-main-menu,
.main-builder-header .penci_midbar .navigation,
.main-builder-header .penci_midbar .menu {
	width: auto !important;
}

.main-builder-header .penci_midbar .menu {
	display: flex !important;
	align-items: center;
	justify-content: center;
	gap: 3px;
}

.main-builder-header .penci_midbar .menu > li {
	margin-right: 14px !important;
}

.main-builder-header .penci_midbar .menu > li:last-child {
	margin-right: 0 !important;
}

.main-builder-header .penci_midbar .menu > li > a {
	padding: 0 13px !important;
	font-size: 12px !important;
	font-weight: 600 !important;
	line-height: 96px !important;
	text-transform: none !important;
}

.main-builder-header .penci_midbar .penci-top-search {
	width: 42px !important;
	margin-left: 8px;
}

#footer-section-container,
.elementor-474 .elementor-element-ab62f89 {
	background: #003d3a !important;
}

.de-newsletter {
	padding: 26px 28px !important;
	background: #edf8f6 !important;
	border-radius: 0 !important;
}

.elementor-474 .elementor-element-ab62f89 > .elementor-container {
	width: min(1240px, calc(100% - 48px)) !important;
}

/* Single post presentation — content remains sourced from WordPress. */
.single-post .penci-single-wrapper {
	background: #fff;
}

.single-post .penci-single-pheader {
	width: min(1240px, calc(100% - 48px)) !important;
	max-width: 1240px !important;
}

.single-post .penci-single-wrapper > .container,
.single-post .container-single {
	width: min(1240px, calc(100% - 48px)) !important;
	max-width: 1240px !important;
}

.single-post .header-standard.single-header {
	max-width: 930px;
	margin: 42px auto 24px !important;
	padding: 0 !important;
	text-align: left !important;
}

.single-post .penci-single-cat .cat > a,
.single-post .penci-standard-cat .cat > a {
	display: inline-block;
	padding: 5px 9px;
	background: #008f82;
	color: #fff !important;
	font-size: 10px !important;
	font-weight: 700;
	letter-spacing: .04em;
	text-transform: uppercase;
}

.single-post .post-title.single-post-title {
	margin: 12px 0 0 !important;
	color: #101d1b !important;
	font-family: 'Poppins', 'Segoe UI', Arial, sans-serif !important;
	font-size: clamp(34px, 4vw, 50px) !important;
	font-weight: 700 !important;
	letter-spacing: -.04em !important;
	line-height: 1.1 !important;
	text-align: left !important;
}

.single-post .penci-single-pheader {
	margin-bottom: 42px !important;
}

.single-post .post-image,
.single-post .post-image img {
	width: 100% !important;
	max-width: none !important;
	border-radius: 0 !important;
}

.single-post .post-image {
	aspect-ratio: 16 / 8.4;
	height: auto !important;
	overflow: hidden;
}

.single-post .post-image img {
	height: 100% !important;
	object-fit: cover;
}

.single-post #main {
	width: calc(100% - 440px) !important;
	max-width: 800px !important;
}

.single-post #sidebar {
	width: 400px !important;
}

.single-post #sidebar .adrotate_widgets,
.single-post #sidebar .adrotate_widgets > div,
.single-post #sidebar .adrotate_widgets .g,
.single-post #sidebar .adrotate_widgets .g > div {
	width: 100% !important;
	max-width: 400px !important;
}

.single-post #sidebar .adrotate_widgets img {
	display: block;
	max-width: 100% !important;
	height: auto !important;
	margin-right: auto;
	margin-left: auto;
}

.single-post #sidebar .adrotate_widgets .widget-title,
.single-post #sidebar .adrotate_widgets .widget-title .inner-arrow,
.single-post #sidebar .adrotate_widgets .widget-title .inner-arrow * {
	box-shadow: none !important;
	text-shadow: none !important;
}

.single-post #sidebar .de-sidebar-issues {
	width: 100%;
	max-width: 400px;
	margin: 0 0 40px;
	padding: 22px;
	border: 1px solid #dce7e4;
	background: #f6faf9;
}

.de-sidebar-issues__header {
	margin-bottom: 18px;
}

.de-sidebar-issues__eyebrow {
	display: block;
	margin-bottom: 6px;
	color: #007f74;
	font-size: 9px;
	font-weight: 750;
	letter-spacing: .08em;
	line-height: 1.35;
	text-transform: uppercase;
}

.single-post #sidebar .de-sidebar-issues__header h2 {
	margin: 0 !important;
	color: #101d1b !important;
	font-family: 'Poppins', 'Segoe UI', Arial, sans-serif !important;
	font-size: 25px !important;
	font-weight: 700 !important;
	letter-spacing: -.035em !important;
	line-height: 1.15 !important;
	text-shadow: none !important;
}

.de-sidebar-issues__grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 16px;
}

.de-sidebar-issue {
	min-width: 0;
	margin: 0;
}

.de-sidebar-issue > a {
	display: block;
	color: #101d1b !important;
	text-decoration: none !important;
}

.de-sidebar-issue__cover {
	position: relative;
	display: block;
	aspect-ratio: 430 / 555;
	overflow: hidden;
	background: #e7efed;
	box-shadow: 0 7px 20px rgba(0, 45, 39, .12);
}

.de-sidebar-issue__cover img {
	display: block;
	width: 100% !important;
	height: 100% !important;
	max-width: none !important;
	object-fit: cover;
	transition: transform .25s ease;
}

.de-sidebar-issue a:hover .de-sidebar-issue__cover img,
.de-sidebar-issue a:focus-visible .de-sidebar-issue__cover img {
	transform: scale(1.025);
}

.de-sidebar-issue a:focus-visible {
	outline: 2px solid #007f74;
	outline-offset: 3px;
}

.de-sidebar-issue__badge {
	position: absolute;
	z-index: 1;
	top: 8px;
	left: 8px;
	padding: 5px 7px;
	background: #007f74;
	color: #fff;
	font-size: 8px;
	font-weight: 750;
	letter-spacing: .06em;
	line-height: 1;
	text-transform: uppercase;
}

.de-sidebar-issue__label {
	display: block;
	margin-top: 10px;
	font-size: 12px;
	font-weight: 700;
	line-height: 1.3;
}

.de-sidebar-issue__action {
	display: inline-block;
	margin-top: 4px;
	color: #007f74;
	font-size: 9px;
	font-weight: 700;
	letter-spacing: .05em;
	text-transform: uppercase;
}

.de-sidebar-issues__all {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-top: 20px;
	padding: 11px 13px;
	border: 1px solid #007f74;
	color: #007f74 !important;
	font-size: 10px;
	font-weight: 700;
	letter-spacing: .04em;
	line-height: 1;
	text-decoration: none !important;
	text-transform: uppercase;
}

.de-sidebar-issues__all:hover,
.de-sidebar-issues__all:focus-visible {
	background: #007f74;
	color: #fff !important;
}

.single-post .post-entry {
	color: #263330;
	font-family: 'Poppins', 'Segoe UI', Arial, sans-serif !important;
	font-size: 16px !important;
	line-height: 1.75 !important;
}

.single-post .post-entry p {
	margin-bottom: 1.35em !important;
	text-align: left !important;
}

.single-post .post-entry h2,
.single-post .post-entry h3 {
	scroll-margin-top: 90px;
	color: #101d1b;
	font-family: 'Poppins', 'Segoe UI', Arial, sans-serif !important;
	font-weight: 700 !important;
	letter-spacing: -.025em;
	line-height: 1.25;
}

.single-post .post-entry h2 {
	margin: 44px 0 16px !important;
	font-size: 28px !important;
}

.single-post .post-entry h3 {
	margin: 32px 0 12px !important;
	font-size: 21px !important;
}

.single-post .post-entry img,
.single-post .post-entry figure {
	max-width: 100% !important;
	border-radius: 0 !important;
}

.single-post .post-entry a {
	color: #007f74;
	text-decoration-thickness: 1px;
	text-underline-offset: 3px;
}

.single-post .post-box-meta-single,
.single-post .author-post,
.single-post .post-author,
.single-post .post-date,
.single-post .penci-post-date,
.single-post #comments,
.single-post .comments-area {
	display: none !important;
}

.de-article-toc {
	float: right;
	width: 260px;
	margin: 0 0 24px 28px;
	padding: 20px;
	background: #edf8f6;
	border-left: 3px solid #008f82;
}

.de-article-toc h2 {
	margin: 0 0 12px !important;
	font-size: 18px !important;
}

.de-article-toc ol {
	margin: 0;
	padding-left: 18px;
}

.de-article-toc li {
	margin: 0 0 8px;
	color: #008f82;
	font-size: 12px;
	line-height: 1.4;
}

.de-article-toc a {
	color: #24413c !important;
	text-decoration: none !important;
}

.de-article-toc a:hover,
.de-article-toc a:focus-visible {
	color: #007f74 !important;
	text-decoration: underline !important;
}

.de-article-ad {
	clear: both;
	display: flex;
	justify-content: center;
	width: 100%;
	margin: 36px 0;
}

.de-article-ad .domenergo-ad-slot--banner {
	width: 100%;
	max-width: 750px;
	border-radius: 0 !important;
}

.de-article-ad--below-featured {
	margin-top: 28px;
	margin-bottom: 36px;
}

/* Global footer rebuilt inside the active Penci/Elementor footer document. */
#footer-section-container .elementor-474,
#footer-section-container .elementor-474 > .elementor-section,
#footer-section-container .elementor-474 > .elementor-section > .elementor-container,
#footer-section-container .elementor-474 .elementor-column,
#footer-section-container .elementor-474 .elementor-widget-wrap,
#footer-section-container .elementor-474 .elementor-widget-container {
	width: 100% !important;
	max-width: none !important;
	margin: 0 !important;
	padding: 0 !important;
	background: #003d3a !important;
}

.de-site-footer-v2 {
	width: min(1240px, calc(100% - 48px));
	margin: 0 auto;
	padding: 54px 0 20px;
	color: #d4e5e1;
}

.de-site-footer-v2__grid {
	display: grid;
	grid-template-columns: 1.35fr .8fr 1.1fr .85fr 1.2fr;
	gap: 34px;
}

.de-site-footer-v2 h2 {
	margin: 0 0 16px;
	color: #fff;
	font-size: 15px;
	font-weight: 700;
}

.de-site-footer-v2 p,
.de-site-footer-v2 li,
.de-site-footer-v2 a {
	color: #d4e5e1;
	font-size: 11px;
	line-height: 1.65;
}

.de-site-footer-v2 ul {
	margin: 0;
	padding: 0;
	list-style: none;
}

.de-site-footer-v2 li {
	margin: 0 0 6px;
}

.de-site-footer-v2 a:hover,
.de-site-footer-v2 a:focus-visible {
	color: #63ddd1;
	text-decoration: underline;
	text-underline-offset: 3px;
}

.de-site-footer__logo {
	display: block;
	width: 190px !important;
	height: auto !important;
	margin-bottom: 17px;
	padding: 8px 10px;
	background: #fff;
	border-radius: 0 !important;
}

.de-site-footer-v2__brand p {
	max-width: 230px;
}

.de-site-footer-v2__bottom {
	display: flex;
	justify-content: space-between;
	gap: 20px;
	margin-top: 34px;
	padding-top: 18px;
	border-top: 1px solid rgba(255, 255, 255, .14);
	color: #9fc3bd;
	font-size: 10px;
}

/*
 * Advertiser logos need a different treatment than editorial photography.
 * Keep the whole mark visible and give every company the same neutral canvas.
 */
body.category-prezentacje-firm .penci-biggrid .penci-image-holder,
body.category-prezentacje-firm #main .thumbnail .penci-image-holder {
	background-color: #fff !important;
	background-position: center !important;
	background-repeat: no-repeat !important;
	background-size: contain !important;
	transform: none !important;
}

body.category-prezentacje-firm .penci-biggrid .pcbg-thumb,
body.category-prezentacje-firm #main .thumbnail {
	overflow: hidden;
	background: #fff;
	border: 1px solid #e1e8e7;
	box-shadow: 0 6px 20px rgba(13, 48, 45, .07);
}

body.category-prezentacje-firm .penci-biggrid .penci-image-holder:hover,
body.category-prezentacje-firm #main .thumbnail .penci-image-holder:hover {
	background-size: contain !important;
	transform: none !important;
}

@media (max-width: 1180px) {
	.main-builder-header .penci_midbar .penci_nav_center {
		padding-right: 72px !important;
		padding-left: 362px !important;
	}

	.main-builder-header .penci_midbar .menu > li > a {
		padding: 0 8px !important;
		font-size: 11px !important;
	}
}

@media (min-width: 961px) and (max-width: 1100px) {
	.main-builder-header .penci_topbar .penci_nav_center {
		width: 244px !important;
	}

	.main-builder-header .penci_topbar .pc-logo,
	.main-builder-header .penci_topbar .pc-logo a {
		width: 220px !important;
		height: 60px !important;
	}

	.main-builder-header .penci_topbar .penci-mainlogo {
		width: 220px !important;
		height: 60px !important;
		max-width: 220px !important;
		max-height: 60px !important;
	}

	.main-builder-header .penci_midbar .penci_nav_center {
		padding-left: 234px !important;
	}

	body .main-builder-header .penci_midbar .menu > li:not(:last-child) {
		margin-right: 6px !important;
	}
}

@media (min-width: 961px) and (max-width: 1000px) {
	body .main-builder-header .penci_midbar .pc-main-menu {
		transform: scale(.92) !important;
		transform-origin: left center !important;
	}
}

@media (min-width: 961px) and (max-width: 1279px) {
	.single-post .penci-single-wrapper > .container,
	.single-post .container-single,
	.single-post .penci-single-pheader {
		width: min(1120px, calc(100% - 48px)) !important;
		max-width: 1120px !important;
	}

	.single-post #main {
		width: calc(100% - 360px) !important;
	}

	.single-post #sidebar {
		width: 320px !important;
	}
}

@media (max-width: 960px) {
	.pc-wrapbuilder-header,
	#pcbdhd_header {
		height: auto !important;
		min-height: 0 !important;
	}

	.single-post #main,
	.single-post #sidebar {
		width: 100% !important;
		max-width: none !important;
	}

	.single-post #sidebar .adrotate_widgets {
		width: min(100%, 400px) !important;
		margin-right: auto;
		margin-left: auto;
	}

	.de-site-footer-v2__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 767px) {
	.de-ad-disclosure {
		height: auto !important;
		padding-inline: 14px !important;
	}

	.de-ad-disclosure__inner {
		justify-content: center;
	}

	.de-ad-disclosure__inner nav {
		display: none;
	}

	.penci_navbar_mobile .penci_mobile_midbar,
	.penci_navbar_mobile .penci_nav_row {
		height: 64px !important;
		min-height: 64px !important;
	}

	.penci_navbar_mobile .penci-mainlogo {
		width: 150px !important;
		max-width: 150px !important;
		height: 46px !important;
		object-fit: contain;
	}

	.de-newsletter {
		padding: 24px 18px 46px !important;
	}

	.single-post .penci-single-wrapper > .container,
	.single-post .container-single,
	.single-post .penci-single-pheader {
		width: calc(100% - 32px) !important;
	}

	.single-post .header-standard.single-header {
		margin: 28px 16px 18px !important;
	}

	.single-post .post-title.single-post-title {
		font-size: 27px !important;
		line-height: 1.14 !important;
		word-break: normal !important;
		overflow-wrap: normal !important;
	}

	.single-post .penci-social-fixed-share {
		display: none !important;
	}

	.single-post .penci-single-pheader {
		margin-bottom: 28px !important;
	}

	.single-post .post-image {
		aspect-ratio: 16 / 10;
	}

	.single-post .post-entry {
		font-size: 15px !important;
		line-height: 1.7 !important;
	}

	.single-post .post-entry h2 {
		font-size: 24px !important;
		text-align: left !important;
	}

	.single-post .post-entry h3 {
		font-size: 19px !important;
		text-align: left !important;
	}

	.de-article-toc {
		float: none;
		width: 100%;
		margin: 0 0 28px;
	}

	.de-article-ad {
		margin: 28px 0;
	}

	.de-article-ad--below-featured {
		margin-top: 20px;
		margin-bottom: 28px;
	}

	.de-site-footer-v2 {
		width: calc(100% - 32px);
		padding-top: 38px;
	}

	.de-site-footer-v2__grid {
		grid-template-columns: 1fr;
		gap: 28px;
	}

	.de-site-footer-v2__bottom {
		flex-direction: column;
	}
}

/* Shared editorial typography and formatting for the complete public site. */
:root {
	--de-type-sans: 'Poppins', 'Segoe UI', Arial, sans-serif;
	--de-type-ink: #101d1b;
	--de-type-copy: #263330;
	--de-type-muted: #52615f;
	--de-type-accent: #007f74;
	--de-type-line: #dce7e4;
}

body:not(.wp-admin),
body:not(.wp-admin) p,
body:not(.wp-admin) li,
body:not(.wp-admin) label,
body:not(.wp-admin) input,
body:not(.wp-admin) select,
body:not(.wp-admin) textarea,
body:not(.wp-admin) button,
body:not(.wp-admin) .elementor-widget-text-editor,
body:not(.wp-admin) .elementor-widget-text-editor p,
body:not(.wp-admin) .elementor-widget-text-editor li {
	font-family: var(--de-type-sans) !important;
}

body:not(.wp-admin) .penci_header .menu > li > a,
body:not(.wp-admin) .penci_off_canvas .menu li a,
body:not(.wp-admin) .de-site-footer-v2,
body:not(.wp-admin) .de-site-footer-v2 a {
	font-family: var(--de-type-sans) !important;
}

body:not(.wp-admin) .de-site-footer-v2 h2 {
	color: #fff !important;
	font-size: 15px !important;
	font-weight: 700 !important;
	letter-spacing: 0 !important;
	line-height: 1.35 !important;
}

body:not(.wp-admin) h1,
body:not(.wp-admin) h2,
body:not(.wp-admin) h3,
body:not(.wp-admin) h4,
body:not(.wp-admin) h5,
body:not(.wp-admin) h6,
body:not(.wp-admin) .elementor-heading-title {
	font-family: var(--de-type-sans) !important;
	color: var(--de-type-ink);
}

body.page:not(.home):not(.wp-admin) .entry-content,
body.page:not(.home):not(.wp-admin) .post-entry,
body.page:not(.home):not(.wp-admin) .page-content,
body.page:not(.home):not(.wp-admin) .elementor-widget-text-editor {
	color: var(--de-type-copy) !important;
	font-family: var(--de-type-sans) !important;
	font-size: 16px;
	line-height: 1.75;
}

body.page:not(.home):not(.wp-admin) .entry-content p,
body.page:not(.home):not(.wp-admin) .post-entry p,
body.page:not(.home):not(.wp-admin) .page-content p,
body.page:not(.home):not(.wp-admin) .elementor-widget-text-editor p,
body.page:not(.home):not(.wp-admin) .elementor-widget-text-editor li {
	color: var(--de-type-copy) !important;
	font-size: 16px;
	line-height: 1.75;
	text-align: left !important;
}

body.page:not(.home) .elementor-widget-text-editor .entry-content {
	max-width: 930px;
	margin-right: auto;
	margin-left: auto;
	text-align: left !important;
}

body:not(.home):not(.wp-admin) .entry-content a,
body:not(.home):not(.wp-admin) .post-entry a,
body:not(.home):not(.wp-admin) .page-content a,
body:not(.home):not(.wp-admin) .elementor-widget-text-editor a {
	color: var(--de-type-accent);
	text-decoration-color: rgba(0, 127, 116, .38);
	text-underline-offset: 3px;
}

body.page:not(.home) .entry-title,
body.single-kalkulator .post-title.single-post-title,
body.post-type-archive-kalkulator .de-calculator-hub__hero h1,
body.category h1 {
	margin-top: 0 !important;
	color: var(--de-type-ink) !important;
	font-family: var(--de-type-sans) !important;
	font-size: clamp(34px, 4vw, 50px) !important;
	font-weight: 700 !important;
	letter-spacing: -.04em !important;
	line-height: 1.1 !important;
	text-align: left !important;
	text-transform: none !important;
	text-shadow: none !important;
}

body.page:not(.home) .entry-content h2,
body.page:not(.home) .post-entry h2,
body.single-kalkulator .post-entry h2,
body.post-type-archive-kalkulator .de-calculator-group__header h2 {
	color: var(--de-type-ink) !important;
	font-size: clamp(26px, 2.4vw, 34px) !important;
	font-weight: 700 !important;
	letter-spacing: -.03em !important;
	line-height: 1.2 !important;
	text-align: left !important;
	text-transform: none !important;
	text-shadow: none !important;
}

body.page:not(.home) .entry-content h3,
body.page:not(.home) .post-entry h3,
body.single-kalkulator .post-entry h3,
body.post-type-archive-kalkulator .de-calculator-card h3 {
	color: var(--de-type-ink) !important;
	font-size: 21px !important;
	font-weight: 700 !important;
	letter-spacing: -.02em !important;
	line-height: 1.3 !important;
	text-align: left !important;
	text-transform: none !important;
	text-shadow: none !important;
}

body.category #main .penci-border-arrow {
	min-height: 0 !important;
	margin-bottom: 24px !important;
	padding: 0 0 13px !important;
	border: 0 !important;
	border-bottom: 1px solid var(--de-type-line) !important;
	background: transparent !important;
	text-align: left !important;
}

body.category #main .penci-border-arrow .inner-arrow,
body.category #main h2.inner-arrow {
	min-height: 0 !important;
	padding: 0 !important;
	background: transparent !important;
	color: var(--de-type-ink) !important;
	clip-path: none !important;
	font-family: var(--de-type-sans) !important;
	font-size: clamp(26px, 2.4vw, 34px) !important;
	font-weight: 700 !important;
	letter-spacing: -.03em !important;
	line-height: 1.2 !important;
	text-align: left !important;
	text-transform: none !important;
	text-shadow: none !important;
}

body.category #main .penci-border-arrow .inner-arrow::before,
body.category #main .penci-border-arrow .inner-arrow::after,
body.category #main .penci-border-arrow span::before,
body.category #main .penci-border-arrow span::after {
	display: none !important;
}

.de-calculator-related li::before,
.de-calculator-related li::after {
	display: none !important;
	content: none !important;
}

.de-calculator-related li {
	margin-left: 0 !important;
	padding-left: 0 !important;
	list-style: none !important;
}

.de-page-hero {
	width: min(1240px, calc(100% - 48px));
	margin: 0 auto;
	padding: 52px 0 30px;
	border-bottom: 1px solid var(--de-type-line);
	text-align: left;
}

.de-page-hero__eyebrow {
	display: block;
	margin-bottom: 8px;
	color: var(--de-type-accent);
	font-family: var(--de-type-sans);
	font-size: 11px;
	font-weight: 750;
	letter-spacing: .09em;
	line-height: 1.35;
	text-transform: uppercase;
}

.de-page-hero h1 {
	max-width: 930px;
	margin: 0 !important;
	color: var(--de-type-ink) !important;
	font-size: clamp(34px, 4vw, 50px) !important;
	font-weight: 700 !important;
	letter-spacing: -.04em !important;
	line-height: 1.1 !important;
	text-shadow: none !important;
}

body.page:not(.home) .elementor-button,
body.page:not(.home) input[type='submit'],
body.page:not(.home) button[type='submit'],
body.single-kalkulator .de-calculator-submit {
	border-color: var(--de-type-accent) !important;
	border-radius: 0 !important;
	background: var(--de-type-accent) !important;
	box-shadow: none !important;
	color: #fff !important;
	font-family: var(--de-type-sans) !important;
	font-weight: 700 !important;
	text-shadow: none !important;
}

body.page:not(.home) input:not([type='submit']):not([type='button']):not([type='checkbox']):not([type='radio']),
body.page:not(.home) select,
body.page:not(.home) textarea,
body.single-kalkulator input:not([type='submit']):not([type='button']):not([type='checkbox']):not([type='radio']),
body.single-kalkulator select,
body.single-kalkulator textarea {
	border-radius: 0 !important;
	box-shadow: none !important;
	font-family: var(--de-type-sans) !important;
}

@media (max-width: 767px) {
	body.page:not(.home):not(.wp-admin) .entry-content,
	body.page:not(.home):not(.wp-admin) .post-entry,
	body.page:not(.home):not(.wp-admin) .page-content,
	body.page:not(.home):not(.wp-admin) .elementor-widget-text-editor,
	body.page:not(.home):not(.wp-admin) .entry-content p,
	body.page:not(.home):not(.wp-admin) .post-entry p,
	body.page:not(.home):not(.wp-admin) .elementor-widget-text-editor p,
	body.page:not(.home):not(.wp-admin) .elementor-widget-text-editor li {
		font-size: 15px;
		line-height: 1.7;
	}

	.de-page-hero {
		width: calc(100% - 32px);
		padding: 34px 0 22px;
	}

	.de-page-hero h1,
	body.page:not(.home) .entry-title,
	body.single-kalkulator .post-title.single-post-title,
	body.post-type-archive-kalkulator .de-calculator-hub__hero h1,
	body.category h1 {
		font-size: 32px !important;
	}
}
