:root {
	--hn-navy: #173b57;
	--hn-navy-dark: #102c42;
	--hn-blue: #28658c;
	--hn-green: #3b8068;
	--hn-ink: #1d2933;
	--hn-muted: #62717d;
	--hn-line: #dce5e9;
	--hn-surface: #ffffff;
	--hn-background: #f3f6f7;
	--hn-radius: 14px;
	--hn-shadow: 0 12px 34px rgba(20, 49, 68, 0.09);
}

html {
	scroll-behavior: smooth;
}

body {
	background: var(--hn-background);
	color: var(--hn-ink);
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
	font-size: 17px;
	line-height: 1.7;
}

body.boxed-layout #page,
#page {
	max-width: none;
	width: 100%;
	background: transparent;
	box-shadow: none;
}

.wrap {
	max-width: 1180px;
	padding-left: 28px;
	padding-right: 28px;
}

/* A calmer, compact header. */
#masthead {
	position: relative;
	z-index: 20;
	background: var(--hn-surface);
	box-shadow: 0 2px 14px rgba(20, 49, 68, 0.08);
}

#masthead .wp-custom-header,
#masthead .breaking-news-box,
#masthead .main-slider {
	display: none !important;
}

#masthead .logo-bar {
	padding: 14px 0;
	background: var(--hn-surface);
}

#masthead .logo-bar > .wrap {
	height: auto !important;
	min-height: 0;
}

#masthead .site-branding {
	margin: 0;
}

#masthead .custom-logo {
	display: block;
	width: auto;
	max-width: 220px;
	height: auto !important;
	max-height: 58px;
}

#masthead .site-title,
#masthead .site-description {
	display: none;
}

#sticky-header-sticky-wrapper {
	height: auto !important;
}

#sticky-header,
#sticky-header-sticky-wrapper.is-sticky #sticky-header {
	background: var(--hn-surface);
	border-top: 1px solid var(--hn-line);
	box-shadow: none;
}

#sticky-header > .wrap,
#site-navigation,
#site-navigation .menu {
	height: auto !important;
	min-height: 0;
}

#site-navigation a {
	color: var(--hn-navy);
	font-size: 14px;
	font-weight: 700;
	letter-spacing: 0.035em;
	text-transform: uppercase;
}

#site-navigation a:hover,
#site-navigation a:focus,
#site-navigation .current-menu-item > a {
	color: var(--hn-green);
}

#site-navigation .menu > li > a {
	height: auto;
	padding-top: 18px;
	padding-bottom: 18px;
	line-height: 1.25;
}

/* Main content and homepage cards. */
#content {
	padding: 48px 0 68px;
}

.home #primary,
.blog #primary,
.single #primary,
.page #primary {
	float: none;
	width: 100%;
}

.home #secondary,
.blog #secondary,
.single #secondary,
.page #secondary {
	display: none;
}

.home #main,
.blog #main {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 28px;
}

.home #main > .page-header,
.home #main > .navigation,
.blog #main > .page-header,
.blog #main > .navigation {
	grid-column: 1 / -1;
}

.home .page-header,
.blog .page-header {
	margin: 0 0 4px;
	padding: 0;
	border: 0;
}

.home .page-title,
.blog .page-title {
	color: var(--hn-navy);
	font-size: clamp(30px, 4vw, 44px);
	font-weight: 750;
	letter-spacing: -0.025em;
}

.home #main > article,
.blog #main > article {
	display: flex;
	flex-direction: column;
	float: none !important;
	width: 100% !important;
	min-width: 0;
	margin: 0;
	overflow: hidden;
	background: var(--hn-surface);
	border: 1px solid var(--hn-line);
	border-radius: var(--hn-radius);
	box-shadow: var(--hn-shadow);
	transition: transform 180ms ease, box-shadow 180ms ease;
}

.home #main > article:hover,
.blog #main > article:hover {
	transform: translateY(-3px);
	box-shadow: 0 18px 42px rgba(20, 49, 68, 0.13);
}

.home .post-image-content,
.blog .post-image-content {
	margin: 0;
	overflow: hidden;
	background: #dfe8eb;
}

.home .post-image-content img,
.blog .post-image-content img {
	display: block;
	width: 100%;
	height: auto;
	aspect-ratio: 16 / 9;
	object-fit: cover;
}

.home article .entry-header,
.blog article .entry-header {
	padding: 24px 26px 0;
}

.home article .entry-content,
.blog article .entry-content {
	display: flex;
	flex: 1;
	flex-direction: column;
	align-items: flex-start;
	padding: 12px 26px 26px;
}

.home article .entry-title,
.blog article .entry-title {
	margin: 0;
	font-size: clamp(21px, 2.3vw, 27px);
	font-weight: 750;
	font-family: inherit;
	line-height: 1.25;
	letter-spacing: -0.018em;
}

.home article .entry-title a,
.blog article .entry-title a {
	color: var(--hn-navy-dark);
}

.home article .entry-title a:hover,
.blog article .entry-title a:hover {
	color: var(--hn-green);
}

.home article .entry-meta,
.blog article .entry-meta {
	display: none;
}

.home article .entry-content p,
.blog article .entry-content p {
	margin: 0 0 20px;
	color: var(--hn-muted);
}

.home article .more-link,
.blog article .more-link,
.home article a[href*="View More"],
.blog article a[href*="View More"] {
	display: inline-flex;
	align-items: center;
	margin-top: auto;
	padding: 10px 16px;
	border-radius: 999px;
	background: var(--hn-navy);
	color: #fff;
	font-size: 14px;
	font-weight: 700;
	text-decoration: none;
}

/* Cleaner, wider reading experience for articles and pages. */
.single #main,
.page #main {
	max-width: 920px;
	margin: 0 auto;
}

.single #main > article,
.page #main > article {
	padding: clamp(28px, 5vw, 60px);
	background: var(--hn-surface);
	border: 1px solid var(--hn-line);
	border-radius: var(--hn-radius);
	box-shadow: var(--hn-shadow);
}

.single .entry-title,
.page .entry-title {
	margin-bottom: 24px;
	color: var(--hn-navy-dark);
	font-size: clamp(34px, 5.2vw, 52px);
	font-weight: 780;
	font-family: inherit;
	line-height: 1.12;
	letter-spacing: -0.035em;
}

.single .entry-header > .entry-meta,
.page .entry-header > .entry-meta {
	display: none;
}

.single .entry-content,
.page .entry-content {
	font-size: 18px;
	line-height: 1.78;
}

.single .entry-content > .has-large-font-size:first-of-type,
.page .entry-content > .has-large-font-size:first-of-type {
	font-size: 22px !important;
	font-weight: 600;
	line-height: 1.55;
	text-align: left;
}

.mashsb-box .mashicon-facebook {
	display: inline-flex;
	width: auto;
	max-width: 100%;
	padding: 11px 18px;
	border-radius: 8px;
	font-size: 14px;
	font-weight: 650;
}

/* Product story and offer blocks. */
.hn-gm-sales .wp-block-group__inner-container > .has-large-font-size:first-child {
	font-size: 22px !important;
	font-weight: 600;
	line-height: 1.55;
	text-align: left;
}

.hn-gm-sales .hn-sales-offer {
	margin: 32px 0;
	padding: clamp(24px, 4vw, 36px);
	border: 1px solid #e5c58f;
	border-radius: 14px;
	background: linear-gradient(145deg, #fffaf0 0%, #fff3d9 100%);
	box-shadow: 0 12px 30px rgba(133, 71, 16, 0.1);
}

.hn-gm-sales .hn-sales-offer h2 {
	margin-top: 0;
	color: #7b4315;
}

.hn-gm-sales .hn-sales-price {
	margin-bottom: 14px;
	color: #7b4315;
	font-size: 21px;
}

.hn-gm-sales .hn-sales-benefits {
	margin: 18px 0 24px;
	padding: 0;
	list-style: none !important;
}

.hn-gm-sales .hn-sales-benefits li {
	position: relative;
	margin: 8px 0;
	padding-left: 28px;
	list-style: none !important;
}

.hn-gm-sales .hn-sales-benefits li::marker {
	content: "";
}

.hn-gm-sales .hn-sales-benefits li::before {
	position: absolute;
	left: 0;
	content: "✓";
	color: #a45d1c;
	font-weight: 800;
}

.hn-gm-sales .hn-sales-cta .wp-block-button__link {
	padding: 14px 24px;
	border-radius: 10px;
	background: #a85f1b;
	box-shadow: 0 8px 20px rgba(133, 71, 16, 0.2);
	color: #fff;
	font-size: 17px;
	font-weight: 750;
	text-decoration: none !important;
}

.hn-gm-sales .hn-sales-cta .wp-block-button__link:hover,
.hn-gm-sales .hn-sales-cta .wp-block-button__link:focus {
	background: #7f4514;
	color: #fff;
}

.hn-gm-sales .hn-sales-note {
	margin-top: 14px;
	color: #695b4f;
	font-size: 14px;
	line-height: 1.55;
}

.hn-gm-sales .hn-sales-quote {
	margin: 32px 0;
	padding: 26px 30px;
	border-left: 5px solid #c98232;
	border-radius: 0 12px 12px 0;
	background: #fff7e8;
	color: #543715;
	font-size: 21px;
}

.hn-gm-sales .hn-sales-product-image {
	max-width: 680px;
	margin: 30px auto;
}

.hn-gm-sales .hn-sales-disclaimer {
	margin: 30px 0;
	padding: 20px 22px;
	border-radius: 10px;
	background: #f3f6f7;
	color: #46545e;
	font-size: 15px;
}

.hn-gm-sales #bestill-gurkemeie {
	position: relative;
	top: -90px;
	visibility: hidden;
}

.single .entry-content h2,
.page .entry-content h2 {
	margin-top: 2em;
	color: var(--hn-navy-dark);
	font-size: clamp(27px, 3.8vw, 36px);
	font-weight: 750;
	font-family: inherit;
	line-height: 1.2;
	letter-spacing: -0.022em;
}

.single .entry-content h3,
.page .entry-content h3 {
	margin-top: 1.7em;
	color: var(--hn-navy);
	font-size: 23px;
	font-weight: 730;
	font-family: inherit;
}

.single .entry-content img,
.page .entry-content img {
	border-radius: 10px;
}

.single .entry-content blockquote,
.page .entry-content blockquote {
	margin: 30px 0;
	padding: 24px 28px;
	background: #eef5f2;
	border-left: 5px solid var(--hn-green);
	border-radius: 0 10px 10px 0;
	color: var(--hn-navy-dark);
}

.single .post-navigation,
.page .post-navigation {
	max-width: 920px;
	margin: 28px auto 0;
}

/* Pagination and footer. */
.navigation.pagination {
	margin-top: 18px;
	padding-top: 22px;
	border-top: 1px solid var(--hn-line);
}

#colophon {
	background: var(--hn-navy-dark);
	color: rgba(255, 255, 255, 0.78);
}

#colophon .site-info {
	padding: 25px 0;
	border: 0;
	background: transparent;
	font-size: 14px;
	text-align: center;
}

#colophon a {
	color: #fff;
}

@media (max-width: 900px) {
	.wrap {
		padding-left: 22px;
		padding-right: 22px;
	}

	.home #main,
	.blog #main {
		gap: 22px;
	}
}

@media (max-width: 700px) {
	body {
		font-size: 16px;
	}

	#masthead .logo-bar {
		padding: 15px 0 12px;
	}

	#masthead .custom-logo {
		max-width: 205px;
	}

	#content {
		padding: 28px 0 44px;
	}

	.home #main,
	.blog #main {
		grid-template-columns: 1fr;
	}

	.home article .entry-header,
	.blog article .entry-header {
		padding: 20px 20px 0;
	}

	.home article .entry-content,
	.blog article .entry-content {
		padding: 10px 20px 22px;
	}

	.single #main > article,
	.page #main > article {
		padding: 26px 20px;
		border-radius: 10px;
	}

	.single .entry-content,
	.page .entry-content {
		font-size: 17px;
	}
}

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

	.home #main > article,
	.blog #main > article {
		transition: none;
	}
}
