/*
Theme Name: Harbor Breeze — Kadence Child
Theme URI: https://harborbreezefanc.com
Description: Premium visual redesign for Harbor Breeze Fans built on Kadence. Preserves all content, URLs and SEO. Global design system via CSS custom properties, redesigned header/footer, editorial homepage, premium tables, cards and mobile layouts.
Author: Harbor Breeze Team
Template: kadence
Version: 1.0.0
Text Domain: harbor-breeze-child
*/

/* ==========================================================================
   BASE
   ========================================================================== */

html {
	scroll-behavior: smooth;
}

body {
	font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif !important;
	font-size: 17px;
	line-height: 1.75;
	color: var(--hb-body);
	background-color: #ffffff !important;
	-webkit-font-smoothing: antialiased;
	text-rendering: optimizeLegibility;
}

h1, h2, h3, h4, h5, h6 {
	font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif !important;
	font-weight: 700;
	letter-spacing: -0.02em;
	line-height: 1.25;
	color: var(--hb-ink);
	text-rendering: optimizeLegibility;
}

p {
	line-height: 1.8;
}

::selection {
	background: rgba(14, 99, 168, 0.16);
}

[id] {
	scroll-margin-top: 110px;
}

/* ==========================================================================
   ACCESSIBILITY
   ========================================================================== */

:where(a, button, input, select, textarea, [tabindex]):focus-visible {
	outline: 2px solid var(--hb-blue) !important;
	outline-offset: 2px;
	border-radius: 4px;
}

.skip-link {
	background: var(--hb-navy) !important;
	color: #fff !important;
}

@media (prefers-reduced-motion: reduce) {
	html {
		scroll-behavior: auto;
	}
	*, *::before, *::after {
		animation-duration: 0.01ms !important;
		animation-iteration-count: 1 !important;
		transition-duration: 0.01ms !important;
	}
}

/* ==========================================================================
   CONTAINER / LAYOUT
   ========================================================================== */

.content-style-boxed .content-bg:not(.loop-entry),
.content-bg:not(.loop-entry) {
	background: transparent !important;
	border: 0 !important;
	border-radius: 0 !important;
	box-shadow: none !important;
	padding: 0 !important;
	margin-left: 0 !important;
	margin-right: 0 !important;
	width: auto !important;
}

.entry-content-wrap {
	padding: 0 !important;
}

.entry-content.single-content {
	padding: 0;
}

.content-area {
	padding-bottom: 4.5rem;
}

/* ==========================================================================
   LINKS
   ========================================================================== */

.entry-content a {
	color: var(--hb-blue);
	text-decoration: none;
	transition: color 0.15s ease;
}

.entry-content a:hover {
	color: var(--hb-blue-deep);
	text-decoration: underline;
	text-underline-offset: 3px;
}

/* ==========================================================================
   HEADER — COMPLETE REDESIGN (premium light theme)
   ========================================================================== */

#masthead {
	position: sticky;
	top: 0;
	z-index: 1000;
	background: #ffffff;
	border-bottom: 1px solid var(--hb-line);
	transition: box-shadow 0.25s ease, border-color 0.25s ease;
}

/* Premium gradient hairline under the header */
#masthead::after {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	bottom: -1px;
	height: 3px;
	background: linear-gradient(90deg, var(--hb-blue) 0%, #0a4a80 55%, var(--hb-navy) 100%);
	opacity: 0.85;
	pointer-events: none;
}

/* Elevated state on scroll */
#masthead.hb-scrolled {
	box-shadow: 0 8px 28px rgba(13, 25, 42, 0.12);
	border-bottom-color: transparent;
}

/* Top utility bar — removed (social icons hidden as requested) */
.site-top-header-wrap {
	display: none;
}

.header-social-wrap .social-button {
	width: 28px;
	height: 28px;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.12);
	color: #ffffff;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.header-social-wrap .social-button:hover {
	background: #ffffff;
	color: var(--hb-blue);
	transform: translateY(-1px);
}

/* Main header row — logo and menu on one line, white background */
.site-main-header-wrap .site-header-row-container-inner {
	background: transparent;
}

.site-main-header-wrap .site-container {
	transition: padding 0.25s ease;
}

#masthead.hb-scrolled .site-main-header-wrap .site-container {
	padding-top: 4px;
	padding-bottom: 4px;
}

.site-header-item-main-navigation {
	display: flex;
	align-items: center;
}

/* Branding — logo + wordmark */
.site-branding .brand {
	display: flex;
	align-items: center;
	gap: 0.7rem;
}

.site-branding .custom-logo {
	max-height: 44px;
	width: auto;
	height: auto;
}

.site-branding .site-title {
	font-size: 1.28rem;
	font-weight: 800;
	letter-spacing: -0.02em;
	color: var(--hb-ink);
	margin: 0;
}

/* Primary navigation — dark links with animated underline */
.header-navigation .menu-item {
	margin: 0;
}

.header-navigation .menu-item > a {
	color: var(--hb-ink);
	font-weight: 600;
	font-size: 0.95rem;
	padding: 0.55rem 0.6rem;
	position: relative;
	transition: color 0.18s ease;
}

.header-navigation .menu-item > a::after {
	content: "";
	position: absolute;
	left: 0.6rem;
	right: 0.6rem;
	bottom: 0.2rem;
	height: 2px;
	border-radius: 2px;
	background: var(--hb-blue);
	transform: scaleX(0);
	transform-origin: left center;
	transition: transform 0.22s ease;
}

.header-navigation .menu-item > a:hover {
	color: var(--hb-blue);
}

.header-navigation .menu-item > a:hover::after {
	transform: scaleX(1);
}

.header-navigation .current-menu-item > a,
.header-navigation .current-menu-ancestor > a {
	color: var(--hb-blue);
	font-weight: 700;
}

.header-navigation .current-menu-item > a::after,
.header-navigation .current-menu-ancestor > a::after {
	transform: scaleX(1);
}

/* Dropdowns — premium card with entrance motion */
.header-navigation .sub-menu {
	background: #ffffff;
	border: 1px solid var(--hb-line);
	border-radius: 14px;
	box-shadow: 0 18px 44px rgba(13, 25, 42, 0.14);
	padding: 0.55rem;
	min-width: 260px;
	transform: translateY(10px);
	opacity: 0;
	transition: transform 0.2s ease, opacity 0.2s ease;
}

.header-navigation .menu-item:hover > .sub-menu,
.header-navigation .menu-item:focus-within > .sub-menu,
.header-navigation .menu-item.menu-item-hover > .sub-menu {
	transform: translateY(0);
	opacity: 1;
}

.header-navigation .sub-menu li a {
	padding: 0.6rem 0.85rem;
	border-radius: 9px;
	font-size: 0.9rem;
	color: var(--hb-ink);
	transition: color 0.15s ease, background 0.15s ease;
}

.header-navigation .sub-menu li a:hover {
	color: var(--hb-blue-deep);
	background: var(--hb-blue-soft);
}

.header-navigation .sub-menu .current-menu-item > a {
	color: var(--hb-blue-deep);
	background: var(--hb-blue-soft);
}

/* Header CTA button */
.hb-header-cta {
	display: inline-flex;
	align-items: center;
	white-space: nowrap;
	margin-left: 0.9rem;
	background: var(--hb-blue);
	color: #ffffff !important;
	font-weight: 600;
	font-size: 0.9rem;
	padding: 0.55rem 1.3rem;
	border-radius: 999px;
	box-shadow: 0 4px 14px rgba(14, 99, 168, 0.28);
	transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.hb-header-cta:hover {
	background: var(--hb-blue-deep);
	transform: translateY(-1px);
	box-shadow: 0 6px 18px rgba(14, 99, 168, 0.34);
}

/* Mobile toggle — ink on the white header */
.site-header .menu-toggle-icon {
	color: var(--hb-ink);
}

/* ==========================================================================
   MOBILE DRAWER — premium white panel, staggered entrance
   ========================================================================== */

#mobile-drawer .drawer-inner {
	background: #ffffff;
	color: var(--hb-ink);
}

#mobile-drawer .drawer-header .drawer-toggle {
	color: var(--hb-ink);
}

#mobile-drawer .menu-item > a {
	color: var(--hb-ink);
	font-weight: 600;
	font-size: 1.02rem;
	padding: 0.8rem 1.25rem;
	transition: color 0.15s ease, padding-left 0.2s ease;
}

#mobile-drawer .menu-item > a:hover {
	color: var(--hb-blue);
	padding-left: 1.5rem;
}

#mobile-drawer .current-menu-item > a {
	color: var(--hb-blue);
}

#mobile-drawer .drawer-navigation .menu-item {
	opacity: 0;
	transform: translateX(18px);
	transition: opacity 0.3s ease, transform 0.3s ease;
}

#mobile-drawer.popup-drawer.active .drawer-navigation .menu-item {
	opacity: 1;
	transform: translateX(0);
}

#mobile-drawer.popup-drawer.active .drawer-navigation .menu-item:nth-child(1) { transition-delay: 0.05s; }
#mobile-drawer.popup-drawer.active .drawer-navigation .menu-item:nth-child(2) { transition-delay: 0.09s; }
#mobile-drawer.popup-drawer.active .drawer-navigation .menu-item:nth-child(3) { transition-delay: 0.13s; }
#mobile-drawer.popup-drawer.active .drawer-navigation .menu-item:nth-child(4) { transition-delay: 0.17s; }
#mobile-drawer.popup-drawer.active .drawer-navigation .menu-item:nth-child(5) { transition-delay: 0.21s; }
#mobile-drawer.popup-drawer.active .drawer-navigation .menu-item:nth-child(6) { transition-delay: 0.25s; }
#mobile-drawer.popup-drawer.active .drawer-navigation .menu-item:nth-child(7) { transition-delay: 0.29s; }
#mobile-drawer.popup-drawer.active .drawer-navigation .menu-item:nth-child(8) { transition-delay: 0.33s; }
#mobile-drawer.popup-drawer.active .drawer-navigation .menu-item:nth-child(9) { transition-delay: 0.37s; }
#mobile-drawer.popup-drawer.active .drawer-navigation .menu-item:nth-child(10) { transition-delay: 0.41s; }

#mobile-drawer .drawer-navigation .menu-item.menu-item-has-children .drawer-nav-drop-wrap {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

#mobile-drawer .sub-menu a {
	color: var(--hb-muted);
	font-weight: 500;
	font-size: 0.95rem;
}

.header-navigation .sub-menu li a:hover {
	background: var(--hb-blue-soft);
	color: var(--hb-blue);
}

/* Mobile trigger */
.menu-toggle-open {
	border: 1px solid var(--hb-line);
	border-radius: 10px;
	padding: 0.65rem 0.9rem;
	color: var(--hb-ink);
	transition: border-color 0.15s ease, background 0.15s ease;
}

.menu-toggle-open:hover {
	background: var(--hb-blue-soft);
	border-color: var(--hb-blue);
}

/* ==========================================================================
   MOBILE DRAWER
   ========================================================================== */

#mobile-drawer .drawer-inner {
	background: #ffffff;
}

#mobile-drawer .drawer-header {
	border-bottom: 1px solid var(--hb-line);
}

#mobile-drawer .drawer-header .menu-toggle-close {
	color: var(--hb-ink);
}

#mobile-drawer .drawer-content .menu-item > a {
	color: var(--hb-ink);
	font-size: 1.05rem;
	font-weight: 500;
	padding: 1rem 0.25rem;
	border-bottom: 1px solid var(--hb-line);
}

#mobile-drawer .drawer-content .current-menu-item > a {
	color: var(--hb-blue);
}

#mobile-drawer .sub-menu {
	background: var(--hb-soft);
	border-radius: 12px;
	margin: 0.25rem 0 0.75rem;
	padding: 0.25rem 1rem;
}

#mobile-drawer .sub-menu a {
	font-size: 0.95rem;
	color: var(--hb-body);
}

/* ==========================================================================
   ENTRY HEADER / HERO
   ========================================================================== */

/* Homepage hero */
.home .entry-header,
body.page-id-12 .entry-header {
	position: relative;
	overflow: hidden;
	text-align: center;
	background: linear-gradient(135deg, var(--hb-navy) 0%, #0e4a7d 55%, var(--hb-blue) 130%);
	border-radius: 20px;
	padding: clamp(3rem, 7vw, 5rem) clamp(1.5rem, 5vw, 4rem);
	margin: 0 0 3rem;
	color: #ffffff;
}

.home .entry-header::before {
	content: "";
	position: absolute;
	width: 480px;
	height: 480px;
	border-radius: 50%;
	background: radial-gradient(circle, rgba(86, 158, 216, 0.35), transparent 70%);
	top: -230px;
	right: -130px;
}

.home .entry-header::after {
	content: "";
	position: absolute;
	width: 420px;
	height: 420px;
	border-radius: 50%;
	background: radial-gradient(circle, rgba(10, 74, 128, 0.5), transparent 70%);
	bottom: -250px;
	left: -150px;
}

.home .entry-header > * {
	position: relative;
	z-index: 1;
}

.home .entry-header .entry-title {
	color: #ffffff;
	font-size: clamp(2rem, 4.6vw, 3.1rem);
	font-weight: 800;
	letter-spacing: -0.025em;
	line-height: 1.15;
	text-wrap: balance;
	max-width: 22ch;
	margin-left: auto;
	margin-right: auto;
	margin-bottom: 1.25rem;
}

.home .entry-header .entry-title::before,
.page .entry-header .entry-title::before,
.single-post .entry-header .entry-title::before {
	content: "";
	display: block;
	width: 58px;
	height: 5px;
	border-radius: 99px;
	background: rgba(255, 255, 255, 0.92);
	margin: 0 auto 1.15rem;
}

.home .entry-header .entry-meta,
.page .entry-header .entry-meta,
.single-post .entry-header .entry-meta {
	display: flex;
	justify-content: center;
	align-items: center;
	flex-wrap: wrap;
	gap: 0.5rem;
	margin-top: 0;
}

.home .entry-header .entry-meta > *,
.page .entry-header .entry-meta > *,
.single-post .entry-header .entry-meta > * {
	background: rgba(255, 255, 255, 0.13);
	border: 1px solid rgba(255, 255, 255, 0.2);
	border-radius: 999px;
	padding: 0.35rem 1rem;
	font-size: 0.86rem;
	font-weight: 500;
	color: #ffffff;
}

.home .entry-header .entry-meta > *::after,
.page .entry-header .entry-meta > *::after,
.single-post .entry-header .entry-meta > *::after {
	display: none;
}

.home .entry-header .entry-meta a,
.page .entry-header .entry-meta a,
.single-post .entry-header .entry-meta a {
	color: #ffffff;
}

.home .entry-header .entry-meta a:hover {
	color: #cfe3f5;
}

/* Compact hero for pages & posts */
.page:not(.home) .entry-header,
.single-post .entry-header {
	position: relative;
	overflow: hidden;
	text-align: center;
	background: linear-gradient(135deg, var(--hb-navy) 0%, #0e4a7d 60%, var(--hb-blue) 140%);
	border-radius: 18px;
	padding: clamp(2.4rem, 5vw, 3.8rem) clamp(1.25rem, 4vw, 3rem);
	margin: 0 0 2.5rem;
	color: #ffffff;
}

.page:not(.home) .entry-header::before,
.single-post .entry-header::before {
	content: "";
	position: absolute;
	width: 360px;
	height: 360px;
	border-radius: 50%;
	background: radial-gradient(circle, rgba(86, 158, 216, 0.32), transparent 70%);
	top: -200px;
	right: -110px;
}

.page:not(.home) .entry-header > *,
.single-post .entry-header > * {
	position: relative;
	z-index: 1;
}

.page:not(.home) .entry-header .entry-title,
.single-post .entry-header .entry-title {
	color: #ffffff;
	font-size: clamp(1.7rem, 3.6vw, 2.4rem);
	font-weight: 800;
	letter-spacing: -0.02em;
	line-height: 1.2;
	text-wrap: balance;
	margin-bottom: 1rem;
}

/* ==========================================================================
   CONTENT TYPOGRAPHY
   ========================================================================== */

.entry-content > p:first-of-type {
	font-size: 1.15rem;
	line-height: 1.8;
	color: var(--hb-body);
	max-width: 76ch;
	margin-left: auto;
	margin-right: auto;
}

.entry-content p {
	font-size: 1.0625rem;
	color: var(--hb-body);
	margin-bottom: 1.5em;
}

.entry-content p.wp-block-paragraph:not(.has-text-align-center) {
	text-align: left;
}

/* H1 — dominant editorial headline with blue accent rail */
.entry-content h1:not(.entry-title) {
	font-size: clamp(1.6rem, 3vw, 2.1rem);
	margin-top: 3.5rem;
	margin-bottom: 1.25rem;
	padding-left: 1rem;
	border-left: 6px solid var(--hb-blue);
	border-radius: 0 10px 10px 0;
}

/* H2 — editorial card: light blue background, blue vertical accent line */
.entry-content h2 {
	font-size: clamp(1.5rem, 2.7vw, 1.95rem);
	margin-top: 3.5rem;
	margin-bottom: 1.25rem;
	background: linear-gradient(180deg, #f3f8fc 0%, #eaf2f9 100%);
	border: 1px solid #d7e4f2;
	border-left: 5px solid var(--hb-blue);
	border-radius: 14px;
	padding: 1rem 1.35rem;
	color: var(--hb-ink);
	font-weight: 800;
	letter-spacing: -0.015em;
}

/* H3 — strong typography with a subtle blue underline accent */
.entry-content h3 {
	font-size: clamp(1.18rem, 1.9vw, 1.42rem);
	margin-top: 2.75rem;
	margin-bottom: 1rem;
	color: var(--hb-ink);
	text-align: left;
	font-weight: 700;
	padding-bottom: 0.5rem;
	border-bottom: 2px solid var(--hb-blue-soft);
}

/* Model review headings — blue rail */
.entry-content h3.has-theme-palette-2-color {
	position: relative;
	padding-left: 1.1rem;
	padding-bottom: 0;
	border-bottom: 0;
	color: var(--hb-ink) !important;
	font-weight: 800;
	font-size: clamp(1.3rem, 2.2vw, 1.6rem);
	margin-top: 3.5rem;
}

.entry-content h3.has-theme-palette-2-color::before {
	content: "";
	position: absolute;
	left: 0;
	top: 0.18em;
	bottom: 0.18em;
	width: 5px;
	border-radius: 99px;
	background: var(--hb-blue);
}

/* H4 — consistent, with a small blue dot accent */
.entry-content h4 {
	font-size: 1.08rem;
	color: var(--hb-ink);
	font-weight: 700;
	margin-top: 2.25rem;
	margin-bottom: 0.75rem;
}

.entry-content h4::before {
	content: "";
	display: inline-block;
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: var(--hb-blue);
	margin-right: 0.55rem;
	vertical-align: 0.08em;
}

/* Headings that contain links — dark text, subtle blue underline, blue hover */
.entry-content h1 a,
.entry-content h2 a,
.entry-content h3 a,
.entry-content h4 a {
	color: inherit;
	text-decoration: none;
	border-bottom: 2px solid var(--hb-blue-soft);
	transition: color 0.15s ease, border-color 0.15s ease, background 0.15s ease;
}

.entry-content h1 a:hover,
.entry-content h2 a:hover,
.entry-content h3 a:hover,
.entry-content h4 a:hover {
	color: var(--hb-blue-deep);
	border-bottom-color: var(--hb-blue);
}

/* Intro callout */
.entry-content > p.has-text-align-center.has-medium-font-size {
	background: linear-gradient(135deg, #eef5fb 0%, #e7f0f9 100%);
	border: 1px solid #d7e6f3;
	border-radius: 16px;
	padding: 1.15rem 2rem;
	max-width: 820px;
	margin-left: auto;
	margin-right: auto;
	font-size: 1.05rem;
	color: var(--hb-ink);
}

/* Separators */
.wp-block-separator {
	border-color: var(--hb-line);
	opacity: 1;
	margin: 3.5rem 0;
}

/* Lists — strictly left aligned, hanging indents, orange markers */

.entry-content ul.wp-block-list {
	list-style: none;
	padding-left: 0;
	margin: 1.5rem 0;
	text-align: left;
}

.entry-content ul.wp-block-list > li {
	position: relative;
	padding-left: 1.7em;
	margin-bottom: 0.55em;
	line-height: 1.7;
	text-align: left;
}

.entry-content ul.wp-block-list > li::before {
	content: "";
	position: absolute;
	left: 0;
	top: 0.68em;
	width: 9px;
	height: 9px;
	border-radius: 50%;
	background: var(--hb-blue);
	opacity: 0.9;
}

.entry-content ul.wp-block-list > li > ul {
	padding-left: 1.6em;
	margin-top: 0.4em;
}

.entry-content ul.wp-block-list > li > ul > li::before {
	background: var(--hb-blue);
	opacity: 0.45;
}

/* Plain content lists (FAQ answers and unclassed markup) */
.entry-content ul:not(.wp-block-list) {
	list-style: disc;
	list-style-position: outside;
	padding-left: 1.5em;
	margin: 1.5rem 0;
	text-align: left;
}

.entry-content ul:not(.wp-block-list) > li {
	margin-bottom: 0.55em;
	line-height: 1.7;
	padding-left: 0.25em;
	text-align: left;
}

.entry-content ul:not(.wp-block-list) > li::marker {
	color: var(--hb-blue);
}

/* Ordered lists */
.entry-content ol.wp-block-list,
.entry-content ol:not(.wp-block-list) {
	padding-left: 1.5em;
	margin: 1.5rem 0;
	text-align: left;
}

.entry-content ol.wp-block-list > li,
.entry-content ol:not(.wp-block-list) > li {
	margin-bottom: 0.55em;
	line-height: 1.7;
	padding-left: 0.25em;
	text-align: left;
}

.entry-content ol.wp-block-list > li::marker,
.entry-content ol:not(.wp-block-list) > li::marker {
	color: var(--hb-blue);
	font-weight: 700;
}

/* Images */
.entry-content figure.wp-block-image img {
	border-radius: 12px;
}

.entry-content figure.wp-block-image.alignright.is-resized,
.entry-content figure.wp-block-image.alignright.size-large,
.entry-content figure.wp-block-image.alignright.size-full {
	margin: 0 0 1.75rem 2.25rem;
}

.entry-content figure.wp-block-image.alignright img {
	border-radius: 16px;
	box-shadow: var(--hb-shadow);
	max-width: 520px;
}

.entry-content figure.wp-block-embed {
	border-radius: 14px;
	overflow: hidden;
	box-shadow: var(--hb-shadow);
	margin: 2rem 0;
}

/* ==========================================================================
   HOMEPAGE — BRAND OVERVIEW HERO IMAGE
   ========================================================================== */

#harbor-breeze-ceiling-fan + figure.wp-block-image {
	float: none !important;
	display: block;
	text-align: center;
	padding: 1.5rem;
	background: linear-gradient(180deg, var(--hb-soft) 0%, var(--hb-blue-soft) 100%);
	border: 1px solid var(--hb-line);
	border-radius: 24px;
	margin: 2.25rem 0 3rem;
}

#harbor-breeze-ceiling-fan + figure.wp-block-image img {
	width: min(720px, 100%) !important;
	height: auto !important;
	display: block;
	margin: 0 auto;
	border-radius: 14px;
	box-shadow: var(--hb-shadow);
}

/* ==========================================================================
   HOMEPAGE — CATEGORY CARDS
   ========================================================================== */

.wp-block-columns.has-theme-palette-9-background-color {
	background: transparent !important;
	gap: 1.75rem;
	margin: 3rem 0;
}

.wp-block-columns.has-theme-palette-9-background-color .wp-block-column {
	background: #ffffff;
	border: 1px solid var(--hb-line);
	border-radius: 18px;
	padding: 1.75rem;
	box-shadow: var(--hb-shadow);
	transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.wp-block-columns.has-theme-palette-9-background-color .wp-block-column:hover {
	transform: translateY(-4px);
	box-shadow: 0 14px 34px rgba(13, 25, 42, 0.1);
}

.wp-block-columns.has-theme-palette-9-background-color .wp-block-column figure.wp-block-image {
	margin: 0 0 1.25rem;
	background: var(--hb-soft);
	border-radius: 12px;
	padding: 0.75rem;
}

.wp-block-columns.has-theme-palette-9-background-color .wp-block-column figure.wp-block-image img {
	width: 100% !important;
	height: 190px;
	object-fit: contain;
	border-radius: 8px;
}

.wp-block-columns.has-theme-palette-9-background-color .wp-block-column p strong {
	display: block;
	font-size: 1.15rem;
	font-weight: 700;
	color: var(--hb-ink);
	margin-bottom: 0.5rem;
}

.wp-block-columns.has-theme-palette-9-background-color .wp-block-column p:not(:has(strong)) {
	color: var(--hb-muted);
	font-size: 0.95rem;
	line-height: 1.7;
	margin: 0;
}

/* ==========================================================================
   TABLES
   ========================================================================== */

.entry-content figure.wp-block-table {
	margin: 2.25rem 0;
	border: 1px solid var(--hb-line);
	border-radius: 14px;
	background: #ffffff;
	box-shadow: 0 1px 2px rgba(13, 25, 42, 0.04);
	overflow-x: auto;
	-webkit-overflow-scrolling: touch;
}

.entry-content figure.wp-block-table table {
	border-collapse: collapse;
	width: 100%;
	font-size: 0.95rem;
	min-width: 560px;
}

.entry-content figure.wp-block-table th {
	background: var(--hb-navy);
	color: #ffffff;
	font-weight: 600;
	font-size: 0.9rem;
	letter-spacing: 0.01em;
	text-align: left;
	padding: 0.9rem 1.1rem;
}

.entry-content figure.wp-block-table td {
	padding: 0.8rem 1.1rem;
	border-bottom: 1px solid var(--hb-line);
	color: var(--hb-body);
}

.entry-content figure.wp-block-table tbody tr:last-child td {
	border-bottom: none;
}

.entry-content figure.wp-block-table tbody tr:nth-child(even) td {
	background: var(--hb-soft);
}

/* Spec tables: 4-column label/value pairs */
.entry-content figure.wp-block-table table:has(tbody tr:nth-child(8)) tbody td:nth-child(odd) {
	color: var(--hb-muted);
	font-weight: 500;
}

.entry-content figure.wp-block-table table:has(tbody tr:nth-child(8)) tbody td:nth-child(even) {
	color: var(--hb-ink);
	font-weight: 600;
}

/* Comparison table: first column acts as label */
.entry-content figure.wp-block-table tbody td:first-child {
	color: var(--hb-ink);
	font-weight: 600;
}

/* ==========================================================================
   CTA BUTTONS
   ========================================================================== */

.entry-content div[style*="text-align"] {
	margin: 0;
}

/* Amazon / product CTA buttons — premium orange system.
   The content buttons carry inline background-color, so !important wins. */
.entry-content div[style*="text-align"] button {
	background: var(--hb-orange) !important;
	color: #ffffff !important;
	padding: 13px 28px !important;
	border: none !important;
	border-radius: 999px !important;
	cursor: pointer !important;
	font-family: inherit !important;
	font-size: 1rem;
	font-weight: 600;
	letter-spacing: 0.01em;
	margin: 1.25rem 0;
	box-shadow: 0 4px 14px rgba(242, 140, 40, 0.32);
	transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.entry-content div[style*="text-align"] button:hover {
	background: var(--hb-orange-deep) !important;
	transform: translateY(-2px);
	box-shadow: 0 8px 22px rgba(242, 140, 40, 0.38);
}

/* Generic WordPress buttons — site blue, premium polish */
.wp-block-button__link {
	border-radius: 999px !important;
	font-weight: 600 !important;
	padding: 13px 28px !important;
	transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.wp-block-button__link:hover {
	transform: translateY(-2px);
}

/* ==========================================================================
   FAQ ACCORDION
   ========================================================================== */

.hb-faq-q {
	cursor: pointer;
	position: relative;
	padding-right: 2.75rem;
	user-select: none;
	transition: color 0.15s ease;
}

.hb-faq-q:hover {
	color: var(--hb-blue-deep);
}

.hb-faq-q::after {
	content: "+";
	position: absolute;
	right: 0.25rem;
	top: 50%;
	transform: translateY(-50%);
	width: 30px;
	height: 30px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 999px;
	background: var(--hb-blue-soft);
	color: var(--hb-blue);
	font-size: 1.25rem;
	font-weight: 500;
	line-height: 1;
	transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.hb-faq-q.hb-open::after {
	content: "−";
	background: var(--hb-blue);
	color: #ffffff;
	transform: translateY(-50%) rotate(180deg);
}

.hb-faq-a-wrap {
	display: none;
	padding: 0.25rem 0 0.5rem;
}

.hb-faq-q.hb-open + .hb-faq-a-wrap {
	display: block;
}

/* Closing Q&A block (warranty section) */
h2#warranty ~ p.has-text-align-center {
	font-weight: 600;
	color: var(--hb-blue-deep);
	font-size: 1.08rem;
	margin-top: 2.5rem;
}

h2#warranty ~ p.wp-block-paragraph:not(.has-text-align-center) {
	color: var(--hb-muted);
}

/* ==========================================================================
   FOOTER
   ========================================================================== */

/* Kadence's default top footer row is replaced by the premium block below. */
.site-top-footer-wrap {
	display: none !important;
}

.hb-footer-premium {
	background: linear-gradient(180deg, var(--hb-navy) 0%, var(--hb-navy-deep) 100%);
	padding: 3.5rem 0 2.75rem;
}

.hb-footer-grid {
	display: grid;
	grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr) minmax(0, 1fr) minmax(0, 1fr);
	gap: 2.5rem;
	align-items: start;
}

.hb-footer-brand .hb-footer-logo img {
	max-height: 64px;
	width: auto;
	border-radius: 10px;
}

.hb-footer-tag {
	color: rgba(255, 255, 255, 0.72);
	font-size: 0.95rem;
	line-height: 1.75;
	margin: 1rem 0 0;
	max-width: 34ch;
}

.hb-footer-col h4,
.hb-footer-social h4 {
	color: #ffffff;
	font-size: 0.8rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	margin: 0 0 1.1rem;
}

.hb-footer-col ul,
.hb-footer-social-list {
	list-style: none;
	margin: 0;
	padding: 0;
}

.hb-footer-col li {
	margin-bottom: 0.55rem;
}

.hb-footer-col a {
	color: rgba(255, 255, 255, 0.8);
	text-decoration: none;
	font-size: 0.95rem;
	transition: color 0.15s ease, padding-left 0.15s ease;
}

.hb-footer-col a:hover {
	color: #ffffff;
	padding-left: 4px;
}

.hb-footer-social-list {
	display: flex;
	flex-wrap: wrap;
	gap: 0.6rem;
}

.hb-footer-social-list a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 38px;
	height: 38px;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.1);
	color: #ffffff;
	transition: background 0.2s ease, transform 0.2s ease;
}

.hb-footer-social-list a:hover {
	background: var(--hb-blue);
	transform: translateY(-2px);
}

.site-top-footer-wrap .site-footer-row-container-inner {
	background: var(--hb-navy);
	padding: 2.5rem 0 2rem;
}

.site-top-footer-wrap .footer-navigation .menu-item a {
	color: rgba(255, 255, 255, 0.85);
	font-weight: 500;
	font-size: 0.95rem;
	padding: 0.5rem 1rem;
	transition: color 0.15s ease;
}

.site-top-footer-wrap .footer-navigation .menu-item a:hover {
	color: #ffffff;
	text-decoration: none;
}

.site-bottom-footer-wrap .site-footer-row-container-inner {
	background: var(--hb-navy-deep);
}

.site-bottom-footer-wrap .site-footer-row-container-inner .site-container {
	padding-top: 1.15rem;
	padding-bottom: 1.15rem;
}

.site-bottom-footer-wrap .footer-html {
	color: rgba(255, 255, 255, 0.62);
	font-size: 0.875rem;
}

/* ==========================================================================
   COMMENTS
   ========================================================================== */

.comments-area {
	margin-top: 4rem;
	padding-top: 2.5rem;
	border-top: 1px solid var(--hb-line);
}

.comments-title {
	font-size: 1.6rem;
	margin-bottom: 1.5rem;
}

.comment-reply-title {
	font-size: 1.35rem;
	margin-bottom: 1.25rem;
}

.comment-body {
	background: #ffffff;
	border: 1px solid var(--hb-line);
	border-radius: 14px;
	padding: 1.4rem 1.6rem;
	margin-bottom: 1rem;
	box-shadow: 0 1px 2px rgba(13, 25, 42, 0.04);
}

.comment-meta .avatar {
	border-radius: 50%;
	border: 2px solid #ffffff;
	box-shadow: 0 0 0 1px var(--hb-line);
}

.comment .reply a {
	color: var(--hb-blue);
	font-weight: 600;
	font-size: 0.9rem;
}

.comment-form input:not([type="submit"]),
.comment-form textarea {
	background: #ffffff;
	border: 1px solid var(--hb-line);
	border-radius: 10px;
	padding: 0.75rem 1rem;
	transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.comment-form input:not([type="submit"]):focus,
.comment-form textarea:focus {
	border-color: var(--hb-blue);
	box-shadow: 0 0 0 3px rgba(14, 99, 168, 0.12);
	outline: none;
}

.comment-form .submit {
	background: var(--hb-blue);
	color: #ffffff;
	border: none;
	border-radius: 999px;
	padding: 0.8rem 2rem;
	font-weight: 600;
	cursor: pointer;
	transition: background 0.2s ease, transform 0.2s ease;
}

.comment-form .submit:hover {
	background: var(--hb-blue-deep);
	transform: translateY(-1px);
}

/* ==========================================================================
   BACK TO TOP
   ========================================================================== */

.hb-back-to-top {
	position: fixed;
	right: 1.25rem;
	bottom: 88px;
	z-index: 900;
	width: 52px;
	height: 52px;
	border-radius: 999px;
	border: none;
	background: var(--hb-orange);
	color: #ffffff;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	box-shadow: 0 6px 18px rgba(242, 140, 40, 0.4);
	opacity: 0;
	visibility: hidden;
	transform: translateY(8px);
	transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s, background 0.2s ease, box-shadow 0.2s ease;
}

.hb-back-to-top.is-visible {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

.hb-back-to-top:hover {
	background: var(--hb-orange-deep);
	transform: translateY(-2px);
	box-shadow: 0 8px 22px rgba(242, 140, 40, 0.46);
}

/* ==========================================================================
   NAV FONT — keep the design system's Inter in navigation
   ========================================================================== */

.header-navigation .menu-item > a,
.footer-navigation .menu-item a {
	font-family: inherit;
}

/* ==========================================================================
   ARCHIVES / BLOG / SEARCH
   ========================================================================== */

/* Author box (single posts) */
.entry-author {
	background: #ffffff;
	border: 1px solid var(--hb-line);
	border-radius: 16px;
	padding: 1.75rem;
	box-shadow: var(--hb-shadow);
	margin: 3.5rem 0 0;
}

.entry-author .author-avatar img {
	border-radius: 50%;
	border: 2px solid #ffffff;
	box-shadow: 0 0 0 1px var(--hb-line);
}

.entry-author .author-title {
	font-size: 0.85rem;
	font-weight: 700;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: var(--hb-muted);
	margin: 0 0 0.4rem;
}

.entry-author .author-link {
	font-size: 1.25rem;
	font-weight: 700;
	color: var(--hb-ink);
	text-decoration: none;
}

.entry-author .author-link:hover {
	color: var(--hb-blue);
}

.entry-author .author-description {
	color: var(--hb-body);
	font-size: 0.98rem;
	margin: 0.5rem 0 0;
	max-width: 70ch;
}

/* Reading time pill */
.hb-reading-time {
	font-weight: 600;
}

.hb-meta-author {
	font-weight: 600;
}

.hb-meta-author-link {
	color: #ffffff;
	text-decoration: underline;
	text-underline-offset: 3px;
	text-decoration-color: rgba(255, 255, 255, 0.55);
	transition: color 0.15s ease, text-decoration-color 0.15s ease;
}

.hb-meta-author-link:hover {
	color: #ffffff;
	text-decoration-color: #ffffff;
}

.hb-meta-satisfaction {
	background: var(--hb-blue) !important;
	border-color: rgba(255, 255, 255, 0.35) !important;
	color: #ffffff !important;
	font-weight: 600;
	cursor: pointer;
	font-family: inherit;
	border-style: solid;
	transition: background 0.2s ease, transform 0.2s ease;
}

.hb-meta-satisfaction:hover {
	background: var(--hb-blue-deep) !important;
	transform: translateY(-1px);
}

.hb-stars {
	letter-spacing: 0.06em;
	color: #ffffff;
	font-size: 0.92em;
}

.hb-sr-only {
	position: absolute;
	left: -9999px;
	width: 1px;
	height: 1px;
	overflow: hidden;
	white-space: nowrap;
}

/* ==========================================================================
   RATING PANEL — real data only, blue system
   ========================================================================== */

.hb-rating-panel {
	margin: 1rem auto 0;
	max-width: 620px;
	text-align: left;
}

.hb-rating-panel[hidden] {
	display: none;
}

.hb-rating-panel-inner {
	background: #ffffff;
	border-radius: 14px;
	border: 1px solid var(--hb-line);
	box-shadow: 0 8px 28px rgba(13, 25, 42, 0.1);
	padding: 1.35rem 1.5rem;
	color: var(--hb-ink);
}

.hb-rating-head {
	display: flex;
	align-items: baseline;
	flex-wrap: wrap;
	gap: 0.5rem 1rem;
	margin-bottom: 1rem;
}

.hb-rating-title {
	font-size: 0.8rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--hb-blue-deep);
}

.hb-rating-big {
	font-size: 1.35rem;
	font-weight: 800;
	color: var(--hb-ink);
}

.hb-rating-count {
	font-size: 0.9rem;
	color: var(--hb-muted);
}

.hb-rating-empty {
	font-size: 0.95rem;
	font-weight: 600;
	color: var(--hb-muted);
}

.hb-rating-dist {
	display: grid;
	gap: 0.4rem;
}

.hb-rating-row {
	display: grid;
	grid-template-columns: 3.2rem 1fr 3.2rem;
	align-items: center;
	gap: 0.7rem;
	font-size: 0.88rem;
}

.hb-rating-star-label {
	color: var(--hb-ink);
	font-weight: 600;
	text-align: right;
}

.hb-rating-bar {
	display: block;
	height: 10px;
	border-radius: 99px;
	background: var(--hb-soft);
	overflow: hidden;
}

.hb-rating-fill {
	display: block;
	height: 100%;
	border-radius: 99px;
	background: var(--hb-blue);
	transition: width 0.4s ease;
}

.hb-rating-pct {
	color: var(--hb-muted);
	font-weight: 600;
}

.hb-rating-submit {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 0.6rem 1rem;
	margin-top: 1.25rem;
	padding-top: 1rem;
	border-top: 1px solid var(--hb-line);
}

.hb-rating-ask {
	font-size: 0.95rem;
	font-weight: 600;
	color: var(--hb-ink);
}

.hb-star-input {
	display: inline-flex;
	gap: 0.25rem;
}

.hb-star-input-btn {
	background: none;
	border: none;
	cursor: pointer;
	font-size: 1.6rem;
	line-height: 1;
	color: var(--hb-line);
	padding: 0.15rem 0.2rem;
	transition: color 0.15s ease, transform 0.15s ease;
}

.hb-star-input-btn:hover,
.hb-star-input-btn:focus-visible {
	color: var(--hb-blue);
	transform: translateY(-2px);
}

.hb-star-input-btn:disabled {
	color: var(--hb-blue);
	cursor: default;
}

.hb-rating-msg {
	font-size: 0.92rem;
	font-weight: 600;
	color: var(--hb-blue-deep);
	min-height: 1.2em;
}

/* Recent reviews inside the rating panel */
.hb-reviews {
	margin-top: 1.1rem;
	padding-top: 1rem;
	border-top: 1px solid var(--hb-line);
}

.hb-reviews-title {
	display: block;
	font-size: 0.78rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--hb-blue-deep);
	margin-bottom: 0.7rem;
}

.hb-review {
	margin-bottom: 0.85rem;
}

.hb-review:last-child {
	margin-bottom: 0;
}

.hb-review-head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 0.75rem;
}

.hb-review-head strong {
	font-size: 0.92rem;
	font-weight: 700;
	color: var(--hb-ink);
}

.hb-review-stars {
	font-size: 0.85rem;
	letter-spacing: 0.06em;
	color: var(--hb-blue);
}

.hb-review p {
	font-size: 0.92rem;
	line-height: 1.65;
	color: var(--hb-body);
	margin: 0.25rem 0 0;
}

/* Success toast */
.hb-toast {
	position: fixed;
	left: 50%;
	bottom: 1.5rem;
	transform: translate(-50%, 16px);
	z-index: 100000;
	background: var(--hb-blue-deep);
	color: #ffffff;
	font-size: 0.95rem;
	font-weight: 600;
	padding: 0.8rem 1.5rem;
	border-radius: 999px;
	box-shadow: 0 10px 30px rgba(13, 25, 42, 0.28);
	opacity: 0;
	pointer-events: none;
	transition: opacity 0.3s ease, transform 0.3s ease;
}

.hb-toast.hb-toast-show {
	opacity: 1;
	transform: translate(-50%, 0);
}

/* ==========================================================================
   AUTHOR BOX — Maya Bennett (reusable editorial component)
   ========================================================================== */

.hb-author-box {
	display: flex;
	align-items: flex-start;
	gap: 1.5rem;
	background: linear-gradient(180deg, #ffffff 0%, #f4f8fc 100%);
	border: 1px solid var(--hb-line);
	border-left: 5px solid var(--hb-blue);
	border-radius: 16px;
	padding: 1.75rem;
	box-shadow: 0 1px 2px rgba(13, 25, 42, 0.04), 0 10px 28px rgba(13, 25, 42, 0.06);
	margin: 3.5rem 0 0;
}

.hb-author-avatar {
	flex: 0 0 auto;
	width: 84px;
	height: 84px;
	border-radius: 50%;
	overflow: hidden;
	box-shadow: 0 0 0 4px #ffffff, 0 0 0 5px var(--hb-blue-soft);
}

.hb-author-avatar svg {
	display: block;
	width: 100%;
	height: 100%;
}

.hb-author-info {
	min-width: 0;
}

.hb-author-kicker {
	display: block;
	font-size: 0.78rem;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--hb-blue-deep);
	margin-bottom: 0.3rem;
}

.hb-author-name {
	display: block;
	font-size: 1.3rem;
	font-weight: 800;
	letter-spacing: -0.01em;
	color: var(--hb-ink);
	line-height: 1.25;
}

.hb-author-role {
	display: block;
	font-size: 0.92rem;
	font-weight: 500;
	color: var(--hb-muted);
	margin-top: 0.25rem;
}

.hb-author-bio {
	font-size: 0.98rem;
	line-height: 1.75;
	color: var(--hb-body);
	margin: 0.75rem 0 0;
	max-width: 65ch;
}

.archive .entry,
.blog .entry,
.search .entry {
	background: #ffffff;
	border: 1px solid var(--hb-line);
	border-radius: 16px;
	box-shadow: var(--hb-shadow);
	overflow: hidden;
	transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.archive .entry:hover,
.blog .entry:hover,
.search .entry:hover {
	transform: translateY(-4px);
	box-shadow: 0 14px 34px rgba(13, 25, 42, 0.1);
}

.archive .entry .entry-content-wrap,
.blog .entry .entry-content-wrap,
.search .entry .entry-content-wrap {
	padding: 1.5rem 1.75rem !important;
}

.archive .entry .post-thumbnail img,
.blog .entry .post-thumbnail img,
.search .entry .post-thumbnail img {
	aspect-ratio: 16 / 10;
	object-fit: cover;
	width: 100%;
}

.archive .entry-title,
.blog .entry-title,
.search .entry-title {
	font-size: 1.35rem;
	font-weight: 700;
	letter-spacing: -0.01em;
}

.archive .entry-title a,
.blog .entry-title a,
.search .entry-title a {
	color: var(--hb-ink);
	text-decoration: none;
}

.archive .entry-title a:hover,
.blog .entry-title a:hover,
.search .entry-title a:hover {
	color: var(--hb-blue);
}

.archive .entry-summary p,
.blog .entry-summary p,
.search .entry-summary p {
	color: var(--hb-muted);
	font-size: 0.98rem;
}

.archive .entry-meta,
.blog .entry-meta,
.search .entry-meta {
	color: var(--hb-muted);
	font-size: 0.85rem;
}

/* Pagination */
.pagination .page-numbers {
	background: #ffffff;
	border: 1px solid var(--hb-line);
	border-radius: 10px;
	color: var(--hb-ink);
	padding: 0.55rem 0.95rem;
	font-weight: 500;
	transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}

.pagination .page-numbers:hover,
.pagination .page-numbers.current {
	background: var(--hb-blue);
	border-color: var(--hb-blue);
	color: #ffffff;
}

/* ==========================================================================
   404 / SEARCH FORM
   ========================================================================== */

.error404 .entry {
	text-align: center;
	padding: 4rem 1rem;
}

.error404 .entry-title {
	font-size: clamp(2.2rem, 6vw, 3.4rem);
	font-weight: 800;
}

.error404 .entry-content p {
	color: var(--hb-muted);
	max-width: 46ch;
	margin-left: auto;
	margin-right: auto;
}

.search-form input[type="search"],
.woocommerce-product-search input[type="search"] {
	background: #ffffff;
	border: 1px solid var(--hb-line);
	border-radius: 999px;
	padding: 0.7rem 1.2rem;
}

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */

@media screen and (max-width: 1024px) {
	.entry-content figure.wp-block-image.alignright.is-resized,
	.entry-content figure.wp-block-image.alignright.size-large,
	.entry-content figure.wp-block-image.alignright.size-full {
		float: none;
		margin: 1.75rem 0;
		text-align: center;
	}

	.entry-content figure.wp-block-image.alignright img {
		max-width: 100%;
		width: 100% !important;
		height: auto;
	}
}

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

	.entry-content p {
		font-size: 1rem;
	}

	.entry-content > p:first-of-type {
		font-size: 1.075rem;
	}

	.home .entry-header {
		border-radius: 16px;
		padding: 2.5rem 1.25rem;
	}

	.page:not(.home) .entry-header,
	.single-post .entry-header {
		border-radius: 14px;
		padding: 2.1rem 1.25rem;
	}

	.wp-block-columns.has-theme-palette-9-background-color {
		gap: 1.25rem;
	}

	.wp-block-columns.has-theme-palette-9-background-color .wp-block-column {
		padding: 1.35rem;
	}

	.entry-content figure.wp-block-table {
		border-radius: 10px;
	}

	.entry-content figure.wp-block-table th,
	.entry-content figure.wp-block-table td {
		padding: 0.7rem 0.9rem;
	}

	.content-area {
		padding-bottom: 3rem;
	}

	.comment-body {
		padding: 1.1rem 1.2rem;
	}

	.hb-footer-grid {
		grid-template-columns: 1fr 1fr;
		gap: 2rem 1.5rem;
	}

	.hb-footer-premium {
		padding: 2.75rem 0 2.25rem;
	}
}

@media screen and (max-width: 480px) {
	.site-branding .custom-logo {
		max-height: 44px;
	}

	.entry-content h3.has-theme-palette-2-color {
		padding-left: 0.95rem;
	}

	.entry-content div[style*="text-align"] button {
		width: 100%;
		max-width: 360px;
	}

	.entry-content figure.wp-block-table {
		margin-left: -6px;
		margin-right: -6px;
	}

	.hb-footer-grid {
		grid-template-columns: 1fr;
		gap: 1.75rem;
	}

	.hb-back-to-top {
		right: 1rem;
		bottom: 84px;
		width: 48px;
		height: 48px;
	}

	.hb-author-box {
		flex-direction: column;
		align-items: center;
		text-align: center;
		padding: 1.5rem;
	}

	.hb-author-avatar {
		width: 76px;
		height: 76px;
	}

	.entry-content h2 {
		padding: 0.9rem 1.1rem;
		border-radius: 12px;
	}
}