/* Smooth scroll behavior */
html {
	scroll-behavior: smooth;
}

/* Scroll offset for anchor links to account for fixed header */
.hwc-section[id] {
	scroll-margin-top: 120px;
}

.hwc-home .hwc-section__inner,
.hwc-home .hwc-hero__inner {
	max-width: 1280px;
	margin: 0 auto;
	padding: 0 2.3333%;
	width: 100%;
	box-sizing: border-box;
}

/**
 * TwentyFifteen desktop layout uses a fixed `body:before` sidebar background and offsets `.site-content`.
 * On our custom Homepage template we intentionally have no sidebar, so we neutralize those only here.
 */
@media screen and (min-width: 59.6875em) {
	body.hwc-homepage:before,
	body.page-id-613250:before,
	body.page-template-page-templates-homepage-php:before {
		display: none !important;
	}

	body.hwc-homepage .site-content,
	body.page-id-613250 .site-content,
	body.page-template-page-templates-homepage-php .site-content {
		float: none !important;
		margin-left: 0 !important;
		width: auto !important;
	}
}

/* Remove TwentyFifteen spacing that makes homepage look "indented". */
body.hwc-homepage .site-main {
	padding: 0 !important;
}

body.hwc-homepage article.hwc-home {
	margin: 0 !important;
}

/* HERO (featured image + stats) */
.hwc-hero-split {
	position: relative;
}

.hwc-hero-split__inner {
	max-width: 1280px;
	margin: 0 auto;
	padding: 1rem 2.3333% 0;
}

.hwc-hero-split__grid {
	display: grid;
	grid-template-columns: 3fr 1fr;
	gap: 1.25rem;
	align-items: stretch;
}

.hwc-hero-split__media {
	position: relative;
	border-radius: 14px 0 0 14px;
	overflow: hidden;
	aspect-ratio: 3 / 1;
	background: #111;
	z-index: 0;
}

.hwc-hero-split__aside {
	padding-top: 0.1rem;
	display: flex;
	flex-direction: column;
	height: 100%;
}

.hwc-hero-split__img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.hwc-hero-split__img--placeholder {
	width: 100%;
	height: 100%;
	background: linear-gradient(135deg, rgba(0, 0, 0, 0.15), rgba(244, 175, 79, 0.2));
}

/* Contrast overlay for text (left) */
.hwc-hero-split__media:before {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(90deg, rgba(0, 0, 0, 0.62) 0%, rgba(0, 0, 0, 0.28) 55%, rgba(0, 0, 0, 0) 80%);
	pointer-events: none;
}

/* Fade on the right edge into content background */
.hwc-hero-split__media:after {
	content: "";
	position: absolute;
	top: 0;
	right: 0;
	width: 35%;
	height: 100%;
	background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 1) 85%);
	pointer-events: none;
}

.hwc-hero-split__overlay {
	position: absolute;
	inset: 0;
	display: flex;
	align-items: center;
	justify-content: flex-start;
	padding: clamp(1rem, 2.2vw, 2rem);
	z-index: 0;
}

.hwc-hero-split__overlay-inner {
	max-width: 560px;
	position: relative;
	z-index: 0;
}

.hwc-hero-split__title {
	margin: 0 0 0.5rem;
	color: #fff;
	line-height: 1.15;
	font-size: clamp(1.5rem, 2.5vw, 2.2rem);
	font-weight: 700;
	text-shadow: 0 2px 10px rgba(0, 0, 0, 0.45);
	position: relative;
	z-index: 0;
}

.hwc-hero-split__subtitle {
	margin: 0 0 0.9rem;
	color: rgba(255, 255, 255, 0.92);
	line-height: 1.4;
	font-size: clamp(1.15rem, 1.4vw, 1.35rem);
	text-shadow: 0 2px 10px rgba(0, 0, 0, 0.35);
	position: relative;
	z-index: 0;
}

.hwc-hero-split__cta {
	display: flex;
	gap: 0.6rem;
	flex-wrap: wrap;
	position: relative;
	z-index: 0;
}

.hwc-hero-split__aside {
	padding-top: 0.1rem;
}

.hwc-stats {
	margin: 0;
	padding: 0;
	list-style: none;
	display: grid;
	gap: 0.6rem;
}

.hwc-stats__item {
	display: flex;
	align-items: center;
	gap: 0.6rem;
	padding: 0.5rem 0;
	border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.hwc-stats__item:last-child {
	border-bottom: 0;
}

.hwc-stats__icon {
	color: #1a9c4a;
	font-weight: 700;
	font-size: clamp(1.25rem, 1.4vw, 1.45rem);
	flex: 0 0 auto;
}

.hwc-stats__num {
	font-weight: 700;
	font-size: clamp(1.5rem, 1.8vw, 1.85rem);
}

.hwc-stats__label {
	opacity: 0.85;
	font-size: clamp(1.2rem, 1.35vw, 1.4rem);
	margin-left: auto;
}

.hwc-latest-comment {
	margin-top: 0.9rem;
	padding: 0.85rem 0.9rem;
	border: 1px solid rgba(0, 0, 0, 0.1);
	border-radius: 12px;
	background: rgba(255, 255, 255, 0.85);
}

.hwc-latest-comment__title {
	margin: 0 0 0.6rem;
	font-size: clamp(1.1rem, 1.25vw, 1.3rem);
	font-weight: 700;
}

.hwc-latest-comment__text {
	margin: 0 0 0.5rem;
	opacity: 0.9;
	font-style: italic;
	font-size: clamp(1.05rem, 1.15vw, 1.2rem);
	line-height: 1.5;
}

.hwc-latest-comment__meta {
	margin: 0;
	font-size: clamp(1rem, 1.1vw, 1.15rem);
	opacity: 0.9;
}

.hwc-latest-comment__sep {
	margin: 0 0.35rem;
	opacity: 0.6;
}

.hwc-latest-comment__link {
	text-decoration: none;
}

.hwc-topbar {
	position: relative;
	z-index: 99998;
	border-bottom: 1px solid rgba(0, 0, 0, 0.08);
	background: rgba(244, 175, 79, 0.06);
	font-size: 1.2rem;
	line-height: 1.2;
}

.hwc-topbar__inner,
.hwc-hotlinks__inner,
.hwc-home-header__inner,
.hwc-home-nav__inner {
	max-width: 1280px;
	margin: 0 auto;
}

.hwc-home-header {
	position: relative;
	z-index: 99998;
	border-bottom: 2px solid #f9a408;
}

.hwc-home-header__inner {
	padding: 0.65rem 2.3333%;
	display: grid;
	grid-template-columns: auto minmax(320px, 1fr) auto;
	align-items: center;
	gap: 0.9rem;
}

.hwc-home-header__logo .custom-logo,
.hwc-home-header__logo img.custom-logo {
	height: 100px !important;
	width: auto !important;
	max-height: none !important;
	display: block;
}

.hwc-home-header__logo {
	line-height: 0;
	max-width: 240px;
	overflow: hidden;
}

.hwc-home-header__logo a.custom-logo-link {
	display: inline-flex;
	align-items: center;
}

.hwc-home-header__logo img {
	height: 100px !important;
	width: auto !important;
	max-width: 100% !important;
}

.hwc-home-header__search {
	min-width: 0;
	width: 36%;
	min-width: 280px;
	max-width: 640px;
	justify-self: center;
}

.hwc-home-header__share {
	display: flex;
	align-items: center;
	gap: 0.45rem;
	flex-wrap: wrap;
	justify-content: flex-end;
}

.hwc-search {
	display: grid;
	grid-template-columns: auto 1fr auto;
	gap: 0.5rem;
	align-items: center;
	margin: 0 !important;
	background: #fff;
	border: 1px solid rgba(0, 0, 0, 0.16);
	border-radius: 999px;
	padding: 6px 8px;
	box-shadow: 0 8px 22px rgba(0, 0, 0, 0.12);
}

.hwc-search__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 34px;
	height: 34px;
	color: rgba(0, 0, 0, 0.6);
}

.hwc-search__input {
	height: 34px;
	border-radius: 999px;
	border: 0;
	padding: 0 0.25rem;
	font-size: 1.05rem;
	outline: none;
	background: transparent;
}

.hwc-search__input::placeholder {
	font-size: 1.15rem;
	opacity: 0.85;
}

.hwc-search__btn {
	height: 34px;
	padding: 0 0.95rem;
	border-radius: 999px;
	border: 0;
	background: #f4af4f;
	color: #111;
	font-weight: 500;
	cursor: pointer;
}

.hwc-search__btn:hover {
	filter: brightness(0.98);
}

.hwc-search:focus-within {
	border-color: rgba(249, 164, 8, 0.7);
	box-shadow: 0 0 0 4px rgba(244, 175, 79, 0.22), 0 8px 22px rgba(0, 0, 0, 0.12);
}

.hwc-home-header__action img {
	max-height: 34px;
	width: auto;
	display: block;
}

.hwc-home-nav--primary {
	border-top: 1px solid rgba(0, 0, 0, 0.08);
	border-bottom: 2px solid #f9a408;
	background: #fff;
	position: relative;
	z-index: 99998;
	overflow: visible;
}

.hwc-menu {
	display: flex;
	gap: 0;
	align-items: center;
	flex-wrap: wrap;
	padding: 0.35rem 2.3333%;
	margin: 0;
	list-style: none;
	padding-left: 2.3333%;
	overflow: visible;
}

.hwc-menu__item {
	position: relative;
	list-style: none;
}

.hwc-menu__item--push-right {
	margin-left: auto;
}

.hwc-menu__link {
	display: inline-flex;
	align-items: center;
	gap: 0.45rem;
	padding: 0.6rem 0.9rem;
	border-radius: 0;
	border: 0;
	background: transparent;
	color: #111;
	text-decoration: none;
	font-weight: 500;
	line-height: 1;
	position: relative;
}

.hwc-menu__item + .hwc-menu__item .hwc-menu__link:before {
	content: "";
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
	height: 18px;
	width: 1px;
	background: rgba(0, 0, 0, 0.12);
}

.hwc-menu__link:hover,
.hwc-menu__link:focus {
	color: #e6a42b;
	outline: none;
}

.hwc-icon {
	flex: 0 0 auto;
	color: #e6a42b;
}

.hwc-menu__link:hover .hwc-icon,
.hwc-menu__link:focus .hwc-icon {
	color: #ffbc40;
}

.hwc-menu__item--has-sub .hwc-menu__link:after {
	content: "";
	display: inline-block;
	margin-left: 0.35rem;
	width: 0;
	height: 0;
	border-left: 5px solid transparent;
	border-right: 5px solid transparent;
	border-top: 6px solid rgba(0, 0, 0, 0.5);
}

.hwc-dd {
	position: relative;
	z-index: 99999;
}

.hwc-dd > summary {
	list-style: none;
}

.hwc-dd > summary::-webkit-details-marker {
	display: none;
}

.hwc-submenu {
	position: absolute;
	top: calc(100% + 0.35rem);
	left: 0;
	min-width: 260px;
	max-width: 640px;
	background: #fff;
	border: 1px solid rgba(0, 0, 0, 0.12);
	border-radius: 10px;
	box-shadow: 0 12px 28px rgba(0, 0, 0, 0.14);
	padding: 0.6rem;
	z-index: 99999 !important;
}

.hwc-submenu__list {
	margin: 0;
	padding: 0;
	list-style: none;
	display: grid;
	grid-template-columns: 1fr;
	gap: 0.25rem;
	max-height: 55vh;
	overflow: auto;
}

.hwc-submenu--cats .hwc-submenu__list {
	grid-template-columns: 1fr;
	gap: 0.25rem;
}

.hwc-submenu--help {
	min-width: 240px;
	max-width: 360px;
}

.hwc-submenu__list a {
	display: block;
	padding: 0.38rem 0.45rem;
	border-radius: 8px;
	text-decoration: none;
	color: #111;
	line-height: 1.2;
}

.hwc-submenu__list a:hover {
	background: rgba(244, 175, 79, 0.16);
}

/* Small "arrow" so dropdown looks intentional */
.hwc-submenu:before {
	content: "";
	position: absolute;
	top: -8px;
	left: 18px;
	width: 14px;
	height: 14px;
	background: #fff;
	border-left: 1px solid rgba(0, 0, 0, 0.12);
	border-top: 1px solid rgba(0, 0, 0, 0.12);
	transform: rotate(45deg);
}

/* Dropdown behavior: click (details[open]) + hover/focus on desktop. */
.hwc-submenu {
	display: none;
}

details[open] .hwc-submenu {
	display: block;
}

@media (hover: hover) and (pointer: fine) {
	.hwc-dd:hover .hwc-submenu,
	.hwc-dd:focus-within .hwc-submenu {
		display: block;
	}
}

.hwc-hotlinks {
	border-top: 1px solid rgba(0, 0, 0, 0.08);
	background: rgba(244, 175, 79, 0.06);
	font-size: 1.32rem; /* +10-15% vs previous */
	line-height: 1.2;
}

.hwc-hotlinks__inner {
	padding: 0.45rem 2.3333%;
	display: grid;
	grid-template-columns: auto 1fr;
	align-items: center;
	column-gap: 1rem;
}

.hwc-hotlinks__left,
.hwc-hotlinks__right {
	display: flex;
	align-items: center;
	gap: 0.55rem;
	flex-wrap: nowrap;
}

.hwc-hotlinks__premium {
	display: inline-flex;
	align-items: center;
	gap: 0.35rem;
	text-decoration: none;
}

.hwc-hotlinks__right {
	justify-self: end;
	white-space: nowrap;
	overflow-x: auto;
	-webkit-overflow-scrolling: touch;
	max-width: 100%;
}

.hwc-hotlinks__sep {
	opacity: 0.35;
}

.hwc-home-nav__left {
	display: flex;
	align-items: center;
	gap: 0.9rem;
	flex-wrap: wrap;
}

.hwc-home-nav__left .hwc-home-header__action img {
	max-height: 30px;
}

.hwc-home-nav__right {
	display: flex;
	align-items: center;
	gap: 0.6rem;
	flex-wrap: wrap;
	justify-content: flex-end;
}

.hwc-home-nav {
	position: relative;
	z-index: 99998;
}

.hwc-home-nav__inner {
	padding: 0.55rem 2.3333%;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 0.75rem;
	flex-wrap: wrap;
}

.hwc-home-nav__left,
.hwc-home-nav__right {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	flex-wrap: wrap;
}

.hwc-home-nav__link {
	text-decoration: none;
	font-weight: 700;
	color: #e6a42b;
	border-bottom: none;
	font-size: 1.05rem;
}

.hwc-home-nav__link:hover {
	color: #ffbc40;
}

.hwc-share {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 34px;
	height: 34px;
	border-radius: 8px;
	border: 1px solid rgba(0, 0, 0, 0.1);
	background: rgba(255, 255, 255, 0.8);
	color: rgba(0, 0, 0, 0.75);
	text-decoration: none;
	padding: 0;
	cursor: pointer;
}

.hwc-share:hover {
	color: #111;
	border-color: rgba(0, 0, 0, 0.18);
}

.hwc-copy-toast {
	font-size: 0.85rem;
	opacity: 0.9;
}

.hwc-hero {
	padding: 3rem 0 2rem;
	background: linear-gradient(180deg, rgba(244, 175, 79, 0.08), rgba(0, 0, 0, 0));
}

.hwc-hero__title {
	margin: 0 0 0.75rem;
	line-height: 1.15;
}

.hwc-hero__subtitle {
	margin: 0 0 1.25rem;
	opacity: 0.9;
}

.hwc-hero__cta {
	display: flex;
	gap: 0.75rem;
	flex-wrap: wrap;
}

.hwc-tools__grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 2rem;
}

.hwc-tools__card {
	border: 1px solid rgba(0, 0, 0, 0.1);
	border-radius: 16px;
	background: rgba(255, 255, 255, 0.95);
	padding: 0;
	overflow: hidden;
	display: flex;
	flex-direction: column;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
	box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.hwc-tools__card:hover {
	transform: translateY(-4px);
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.hwc-tools__media {
	width: 100%;
	background: linear-gradient(135deg, rgba(244, 175, 79, 0.1) 0%, rgba(244, 175, 79, 0.05) 100%);
	padding: 1.5rem;
	text-align: center;
	flex: 0 0 auto;
}

.hwc-tools__media img {
	max-width: 100%;
	height: auto;
	display: block;
	margin: 0 auto;
	border-radius: 8px;
}

.hwc-tools__body {
	padding: 1.5rem;
	flex: 1 1 auto;
	display: flex;
	flex-direction: column;
}

.hwc-tools__title {
	margin: 0 0 1rem;
	font-size: clamp(1.3rem, 1.5vw, 1.5rem);
	font-weight: 700;
	color: #111;
	line-height: 1.3;
}

.hwc-tools__text {
	margin: 0 0 1.5rem;
	opacity: 0.85;
	font-size: clamp(0.95rem, 1.05vw, 1.05rem);
	line-height: 1.7;
	color: rgba(0, 0, 0, 0.8);
	flex: 1 1 auto;
}

.hwc-tools__cta {
	margin: 0;
	margin-top: auto;
}

.hwc-btn {
	display: inline-block;
	padding: 0.65rem 1rem;
	border-radius: 6px;
	border: 1px solid rgba(0, 0, 0, 0.12);
	text-decoration: none;
	position: relative;
	z-index: 0;
}

.hwc-btn--primary {
	background: #f4af4f;
	color: #111;
	border-color: rgba(0, 0, 0, 0.12);
	font-weight: 600;
}

.hwc-btn--secondary {
	background: rgba(255, 255, 255, 0.9);
	color: #111;
	border-color: #f4af4f;
	border-width: 2px;
	font-weight: 600;
	transition: background 0.2s ease, transform 0.2s ease;
}

.hwc-btn--secondary:hover {
	background: #f4af4f;
	transform: translateY(-2px);
	box-shadow: 0 4px 12px rgba(244, 175, 79, 0.3);
}

.hwc-section__more {
	margin-top: 2rem;
	text-align: center;
}

.hwc-section {
	padding: 2.5rem 0;
	position: relative;
}

/* Alternate background colors for sections */
.hwc-section:nth-child(even) {
	background: rgba(255, 255, 255, 0.5);
}

.hwc-section:nth-child(odd) {
	background: rgba(244, 175, 79, 0.03);
}

.hwc-section__title {
	margin: 0 0 1.5rem;
	font-size: clamp(1.5rem, 2vw, 2rem);
	font-weight: 700;
	line-height: 1.2;
	color: #111;
	position: relative;
	padding-bottom: 0.75rem;
}

.hwc-section__title:after {
	content: "";
	position: absolute;
	bottom: 0;
	left: 0;
	width: 60px;
	height: 3px;
	background: #f4af4f;
	border-radius: 2px;
}

/* Intro Section */
.hwc-intro {
	background: rgba(244, 175, 79, 0.06);
	border-radius: 16px;
	padding: 3rem 0;
	margin: 1rem 0;
}

.hwc-intro__wrapper {
	display: grid;
	grid-template-columns: 3fr 2fr;
	gap: 2.5rem;
	align-items: center;
}

.hwc-intro__content {
	font-size: clamp(1.05rem, 1.15vw, 1.15rem);
	line-height: 1.7;
	color: rgba(0, 0, 0, 0.85);
}

.hwc-intro__cards {
	flex-shrink: 0;
}

.hwc-intro__content p {
	margin: 0 0 1.25rem;
}

.hwc-intro__content p:last-child {
	margin-bottom: 0;
}

.hwc-intro__content strong {
	font-weight: 700;
	color: #e6a42b;
}

.hwc-grid {
	display: grid;
	gap: 1rem;
}

.hwc-grid--categories {
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 1.5rem;
	align-items: stretch;
}

.hwc-grid--blog {
	grid-template-columns: repeat(2, minmax(0, 1fr));
}

.hwc-grid--blog-posts {
	grid-template-columns: repeat(3, minmax(0, 1fr));
}

.hwc-grid--why {
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 1rem;
}

.hwc-intro__cards .hwc-grid--why {
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 1rem;
}

/* Why/Trusted Resource Section */
.hwc-why {
	background: linear-gradient(135deg, rgba(244, 175, 79, 0.08) 0%, rgba(244, 175, 79, 0.03) 100%);
	border-radius: 16px;
	padding: 3rem 0;
}

.hwc-why__item {
	background: rgba(255, 255, 255, 0.9);
	border: 1px solid rgba(0, 0, 0, 0.08);
	border-radius: 12px;
	padding: 1.5rem;
	text-align: center;
	transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.hwc-why__item:hover {
	transform: translateY(-4px);
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.hwc-why__title {
	margin: 0 0 0.75rem;
	font-size: clamp(1.1rem, 1.3vw, 1.3rem);
	font-weight: 700;
	color: #e6a42b;
	line-height: 1.3;
}

.hwc-why__text {
	margin: 0;
	font-size: clamp(0.95rem, 1.05vw, 1.05rem);
	line-height: 1.6;
	color: rgba(0, 0, 0, 0.75);
}

.hwc-grid--latest {
	grid-template-columns: repeat(4, minmax(0, 1fr));
}

.hwc-grid--latest-captions {
	grid-template-columns: repeat(5, minmax(0, 1fr));
}

.hwc-card {
	background: rgba(255, 255, 255, 0.75);
	border: 1px solid rgba(0, 0, 0, 0.08);
	border-radius: 10px;
	overflow: hidden;
}

.hwc-card__link {
	display: block;
	color: inherit;
	text-decoration: none;
}

.hwc-card__image {
	display: block;
	width: 100%;
	aspect-ratio: 4 / 3;
	object-fit: cover;
	background: rgba(0, 0, 0, 0.04);
}

.hwc-card__image--placeholder {
	aspect-ratio: 4 / 3;
	background: repeating-linear-gradient(
		45deg,
		rgba(0, 0, 0, 0.04),
		rgba(0, 0, 0, 0.04) 10px,
		rgba(0, 0, 0, 0.02) 10px,
		rgba(0, 0, 0, 0.02) 20px
	);
}

.hwc-card__body {
	padding: 0.9rem;
}

.hwc-card__title {
	margin: 0 0 0.35rem;
	font-size: 1.05rem;
	line-height: 1.2;
}

.hwc-card__text {
	margin: 0;
	opacity: 0.9;
	font-size: 0.95rem;
	line-height: 1.35;
}

/* Category Cards Redesign */
.hwc-card--category {
	background: rgba(255, 255, 255, 0.95);
	border: 1px solid rgba(0, 0, 0, 0.1);
	border-radius: 16px;
	overflow: hidden;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
	box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
	display: flex;
	flex-direction: column;
	height: 100%;
}

.hwc-card--category:hover {
	transform: translateY(-6px);
	box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
	border-color: rgba(244, 175, 79, 0.3);
}

.hwc-card--category .hwc-card__link {
	display: flex;
	flex-direction: column;
	height: 100%;
	color: inherit;
	text-decoration: none;
}

.hwc-card--category .hwc-card__image-wrapper {
	width: 100%;
	aspect-ratio: 16 / 9;
	overflow: hidden;
	position: relative;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	background-color: rgba(244, 175, 79, 0.1);
}

.hwc-card--category .hwc-card__image {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	position: absolute;
	top: 0;
	left: 0;
	opacity: 0;
	pointer-events: none;
}

.hwc-card--category:hover .hwc-card__image-wrapper {
	transform: scale(1.05);
	transition: transform 0.3s ease;
}

.hwc-card--category .hwc-card__image--placeholder {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	background: linear-gradient(135deg, rgba(244, 175, 79, 0.15) 0%, rgba(244, 175, 79, 0.08) 100%);
}

.hwc-card--category .hwc-card__body {
	padding: 1.5rem;
	flex: 1 1 auto;
	display: flex;
	flex-direction: column;
}

.hwc-card--category .hwc-card__title {
	margin: 0 0 0.75rem;
	font-size: clamp(1.15rem, 1.4vw, 1.35rem);
	font-weight: 700;
	line-height: 1.3;
	color: #111;
}

.hwc-card--category .hwc-card__text {
	margin: 0;
	opacity: 0.85;
	font-size: clamp(0.95rem, 1.05vw, 1.05rem);
	line-height: 1.6;
	color: rgba(0, 0, 0, 0.75);
	display: -webkit-box;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
	overflow: hidden;
	text-overflow: ellipsis;
	min-height: 4.8em; /* 3 lines * 1.6 line-height */
}

.hwc-section__note {
	margin-top: 1rem;
	opacity: 0.9;
}

.hwc-links__list {
	display: flex;
	gap: 0.75rem 1rem;
	flex-wrap: wrap;
	padding-left: 1.1rem;
}

/* Latest Captions Cards */
.hwc-caption-card {
	background: rgba(255, 255, 255, 0.75);
	border: 1px solid rgba(0, 0, 0, 0.08);
	border-radius: 10px;
	overflow: hidden;
	display: flex;
	flex-direction: column;
	height: 100%;
}

.hwc-caption-card__link {
	display: flex;
	flex-direction: column;
	height: 100%;
	color: inherit;
	text-decoration: none;
}

.hwc-caption-card__media {
	width: 100%;
	aspect-ratio: 3 / 4;
	overflow: hidden;
	background-color: rgba(0, 0, 0, 0.04);
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	flex: 0 0 auto;
	position: relative;
}

.hwc-caption-card__img {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	display: block;
	opacity: 0;
	pointer-events: none;
}

.hwc-caption-card__img--placeholder {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	background: repeating-linear-gradient(
		45deg,
		rgba(0, 0, 0, 0.04),
		rgba(0, 0, 0, 0.04) 10px,
		rgba(0, 0, 0, 0.02) 10px,
		rgba(0, 0, 0, 0.02) 20px
	);
}

.hwc-caption-card__body {
	padding: 0.75rem;
	flex: 1 1 auto;
	display: flex;
	flex-direction: column;
	min-height: 0;
}

.hwc-caption-card__title {
	margin: 0 0 0.5rem;
	font-size: clamp(0.95rem, 1.1vw, 1.1rem);
	line-height: 1.3;
	font-weight: 600;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
	flex: 1 1 auto;
}

.hwc-caption-card__meta {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	font-size: clamp(0.85rem, 0.95vw, 0.95rem);
	opacity: 0.8;
	flex-wrap: wrap;
	margin-top: auto;
}

.hwc-caption-card__cat {
	color: #e6a42b;
	font-weight: 600;
}

.hwc-caption-card__date {
	color: rgba(0, 0, 0, 0.6);
}

.hwc-pagination {
	margin-top: 2rem;
	text-align: center;
}

.hwc-pagination .page-numbers {
	display: inline-flex;
	gap: 0.5rem;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
	list-style: none;
	margin: 0;
	padding: 0;
}

.hwc-pagination .page-numbers li {
	display: inline-block;
}

.hwc-pagination .page-numbers a,
.hwc-pagination .page-numbers span {
	display: inline-block;
	padding: 0.5rem 0.75rem;
	border: 1px solid rgba(0, 0, 0, 0.12);
	border-radius: 8px;
	text-decoration: none;
	color: #111;
	background: rgba(255, 255, 255, 0.9);
	font-size: clamp(0.95rem, 1vw, 1.05rem);
}

.hwc-pagination .page-numbers .current,
.hwc-pagination .page-numbers .current span {
	background: #f4af4f;
	border-color: #f4af4f;
	color: #111;
	font-weight: 700;
}

.hwc-pagination .page-numbers a:hover {
	border-color: rgba(0, 0, 0, 0.18);
}

/* Blog Posts Section */
.hwc-blog-posts {
	background: rgba(255, 255, 255, 0.7);
	border-radius: 16px;
	padding: 3rem 0;
	margin: 1rem 0;
}

/* Categories Section */
.hwc-categories {
	background: rgba(244, 175, 79, 0.05);
	border-radius: 16px;
	padding: 3rem 0;
	margin: 1rem 0;
}

/* Latest Comments Section */
.hwc-latest-comments {
	background: #fafafa;
	border-radius: 16px;
	padding: 3rem 0;
	margin: 1rem 0;
}

.hwc-comments-list {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 1.25rem;
	margin-top: 2rem;
	min-width: 0; /* allow grid to shrink inside constrained container */
}

.hwc-comment-item {
	background: #fff;
	border: 1px solid #e5e5e5;
	border-radius: 8px;
	padding: 1.5rem;
	transition: border-color 0.2s ease, box-shadow 0.2s ease;
	min-width: 0; /* allow grid item to shrink on small screens */
	box-sizing: border-box;
}

.hwc-comment-item:hover {
	border-color: #f4af4f;
	box-shadow: 0 2px 8px rgba(244, 175, 79, 0.1);
}

.hwc-comment-item__body {
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
	overflow-wrap: break-word;
	min-width: 0;
}

.hwc-comment-item__text {
	margin: 0;
	font-size: clamp(0.9rem, 1vw, 1rem);
	line-height: 1.6;
	color: #444;
	font-style: italic;
}

.hwc-comment-item__meta {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	font-size: clamp(0.8rem, 0.9vw, 0.9rem);
	color: #666;
	flex-wrap: wrap;
}

.hwc-comment-item__author {
	font-weight: 600;
	color: #333;
}

.hwc-comment-item__sep {
	color: #999;
}

.hwc-comment-item__date {
	color: #777;
}

.hwc-comment-item__post {
	margin: 0.5rem 0 0;
}

.hwc-comment-item__link {
	color: #f4af4f;
	text-decoration: none;
	font-size: clamp(0.85rem, 0.95vw, 0.95rem);
	font-weight: 500;
	transition: color 0.2s ease;
	display: block;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.hwc-comment-item__link:hover {
	color: #f9a408;
	text-decoration: underline;
}

/* Tools Section */
.hwc-tools {
	background: rgba(255, 255, 255, 0.8);
	border-radius: 16px;
	padding: 3rem 0;
	margin: 1rem 0;
}

/* Latest Captions Section */
.hwc-latest-captions {
	background: rgba(244, 175, 79, 0.04);
	border-radius: 16px;
	padding: 3rem 0;
	margin: 1rem 0;
}

/* Most Popular Captions Section */
.hwc-most-popular-captions {
	background: rgba(244, 175, 79, 0.04);
	border-radius: 16px;
	padding: 3rem 0;
	margin: 1rem 0;
}

/* Most Commented Captions Section */
.hwc-most-commented-captions {
	background: rgba(244, 175, 79, 0.04);
	border-radius: 16px;
	padding: 3rem 0;
	margin: 1rem 0;
}

/* Blog Posts Cards */
.hwc-blog-card {
	background: rgba(255, 255, 255, 0.75);
	border: 1px solid rgba(0, 0, 0, 0.08);
	border-radius: 10px;
	overflow: hidden;
	display: flex;
	flex-direction: column;
	height: 100%;
	transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.hwc-blog-card:hover {
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
	transform: translateY(-2px);
}

.hwc-blog-card__link {
	display: flex;
	flex-direction: column;
	height: 100%;
	color: inherit;
	text-decoration: none;
}

.hwc-blog-card__media {
	width: 100%;
	aspect-ratio: 16 / 9;
	overflow: hidden;
	background: rgba(0, 0, 0, 0.04);
	flex: 0 0 auto;
}

.hwc-blog-card__img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: transform 0.3s ease;
}

.hwc-blog-card:hover .hwc-blog-card__img {
	transform: scale(1.05);
}

.hwc-blog-card__body {
	padding: 1.25rem;
	flex: 1 1 auto;
	display: flex;
	flex-direction: column;
}

.hwc-blog-card__title {
	margin: 0 0 0.75rem;
	font-size: clamp(1.1rem, 1.3vw, 1.35rem);
	line-height: 1.3;
	font-weight: 700;
	color: #111;
}

.hwc-blog-card__excerpt {
	margin: 0 0 1rem;
	font-size: clamp(0.95rem, 1.05vw, 1.05rem);
	line-height: 1.6;
	color: rgba(0, 0, 0, 0.75);
	flex: 1 1 auto;
}

.hwc-blog-card__meta {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	font-size: clamp(0.85rem, 0.95vw, 0.95rem);
	opacity: 0.8;
	flex-wrap: wrap;
	margin-top: auto;
	padding-top: 0.75rem;
	border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.hwc-blog-card__author {
	color: rgba(0, 0, 0, 0.7);
	font-weight: 600;
}

.hwc-blog-card__cat {
	color: #e6a42b;
	font-weight: 600;
}

.hwc-blog-card__date {
	color: rgba(0, 0, 0, 0.6);
}

@media (max-width: 960px) {
	.hwc-hero-split__grid {
		grid-template-columns: 1fr;
	}

	.hwc-hero-split__media {
		aspect-ratio: 16 / 9;
	}

	.hwc-hero-split__media:after {
		display: none;
	}

	.hwc-home-header__inner {
		grid-template-columns: 1fr auto;
		grid-template-areas:
			"logo share"
			"search search";
		align-items: center;
	}

	.hwc-home-header__share {
		justify-content: flex-end;
	}

	.hwc-home-header__logo {
		grid-area: logo;
		justify-self: start;
	}

	.hwc-home-header__share {
		grid-area: share;
		justify-self: end;
	}

	.hwc-home-header__search {
		grid-area: search;
		width: 100%;
		max-width: none;
		min-width: 0;
		justify-self: stretch;
	}

	.hwc-menu__item--push-right {
		margin-left: 0;
	}

	/* On small screens dropdowns should overlay content, not push it down. */
	.hwc-menu__item {
		position: static;
	}

	.hwc-dd {
		position: static;
		z-index: 99999;
	}

	.hwc-submenu {
		position: absolute;
		top: calc(100% + 0.35rem);
		left: 4vw;
		right: 4vw;
		transform: none;
		width: auto;
		max-width: 92vw;
		min-width: 0;
		max-height: 60vh;
		overflow: auto;
		box-sizing: border-box;
		z-index: 99999 !important;
	}

	.hwc-submenu:before {
		display: none;
	}

	.hwc-submenu__list {
		grid-template-columns: 1fr;
		max-height: none;
	}

	.hwc-submenu__list a {
		white-space: normal;
		overflow-wrap: anywhere;
	}

	.hwc-hotlinks__inner {
		display: flex;
		flex-wrap: wrap;
		justify-content: center;
		gap: 0.5rem 0.75rem;
	}

	.hwc-hotlinks__right {
		justify-self: auto;
		white-space: normal;
		overflow: visible;
		flex-wrap: wrap;
		justify-content: center;
	}

	.hwc-grid--categories {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 1.25rem;
	}

	.hwc-card--category .hwc-card__body {
		padding: 1.25rem;
	}

	.hwc-intro__wrapper {
		grid-template-columns: 1fr;
		gap: 2rem;
	}

	.hwc-grid--why {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 1rem;
	}

	.hwc-grid--blog-posts {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.hwc-why {
		padding: 2rem 0;
	}

	.hwc-grid--latest {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.hwc-grid--latest-captions {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}

	.hwc-comments-list {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 1rem;
	}

	.hwc-grid--blog-posts {
		grid-template-columns: 1fr;
	}

	.hwc-intro__wrapper {
		grid-template-columns: 1fr;
		gap: 1.5rem;
	}

	.hwc-grid--why {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 1rem;
	}
}

@media (max-width: 560px) {
	.hwc-topbar__right {
		gap: 0.45rem;
	}

	.hwc-tools__grid {
		grid-template-columns: 1fr;
		gap: 1.5rem;
	}

	.hwc-tools__media {
		padding: 1.25rem;
	}

	.hwc-tools__body {
		padding: 1.25rem;
	}

	.hwc-grid--categories,
	.hwc-grid--blog,
	.hwc-grid--why,
	.hwc-grid--latest,
	.hwc-grid--latest-captions,
	.hwc-comments-list {
		grid-template-columns: 1fr;
		gap: 1rem;
	}

	/* Keep comments block aligned with section content on small screens */
	.hwc-latest-comments .hwc-section__inner {
		width: 100%;
		max-width: 100%;
		padding-left: 2.3333%;
		padding-right: 2.3333%;
	}

	.hwc-why {
		padding: 2rem 0;
	}

	.hwc-blog-posts {
		padding: 2rem 0;
	}
}

/* Footer Styles for Homepage */
body.hwc-homepage .site-footer {
	background: rgba(244, 175, 79, 0.05);
	border-radius: 16px;
	margin: 2rem auto 1rem;
	padding: 2.5rem 0;
	box-sizing: border-box;
	width: 100%;
}

body.hwc-homepage .site-info {
	max-width: 1280px;
	margin: 0 auto;
	padding: 0 2.3333%;
	text-align: center;
	box-sizing: border-box;
}

body.hwc-homepage .site-info p {
	font-size: clamp(0.9rem, 1vw, 1rem);
	line-height: 1.7;
	color: rgba(0, 0, 0, 0.75);
	margin: 0 0 1rem;
}

body.hwc-homepage .site-info p:last-of-type {
	margin-bottom: 0.5rem;
}

body.hwc-homepage .site-info a {
	color: #e6a42b;
	text-decoration: none;
	font-weight: 600;
	transition: color 0.2s ease;
}

body.hwc-homepage .site-info a:hover {
	color: #d4941f;
	text-decoration: underline;
}

body.hwc-homepage .site-info > *:last-child {
	font-size: clamp(0.85rem, 0.95vw, 0.95rem);
	color: rgba(0, 0, 0, 0.6);
	margin-top: 1rem;
	display: block;
}

@media (max-width: 960px) {
	body.hwc-homepage .site-footer {
		padding: 2rem 2.3333%;
	}

	body.hwc-homepage .site-info p {
		font-size: clamp(0.85rem, 0.95vw, 0.95rem);
	}
}

@media (max-width: 560px) {
	body.hwc-homepage .site-footer {
		padding: 1.5rem 2.3333%;
		margin: 1.5rem auto 0.5rem;
	}

	body.hwc-homepage .site-info p {
		font-size: clamp(0.8rem, 0.9vw, 0.9rem);
		line-height: 1.6;
	}

	body.hwc-homepage .site-info > *:last-child {
		font-size: clamp(0.75rem, 0.85vw, 0.85rem);
	}
}

/* Popular & Trending Searches Section */
.hwc-search-searches {
	background: #f8f8f8;
}

.hwc-search-split {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 2rem;
	margin-top: 2rem;
}

.hwc-search-column {
	display: flex;
	flex-direction: column;
}

.hwc-search-column__title {
	margin: 0 0 1.25rem;
	font-size: clamp(1.1rem, 1.5vw, 1.3rem);
	font-weight: 600;
	color: #333;
	text-align: center;
}

.hwc-search-cloud {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
	gap: 0.65rem;
	padding: 1.5rem;
	background: #fff;
	border-radius: 12px;
	box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
	flex: 1;
}

.hwc-search-tag {
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 0.65rem 1rem;
	background: #f5f5f5;
	color: #333;
	text-decoration: none;
	border: 1px solid #e0e0e0;
	border-radius: 6px;
	font-weight: 500;
	line-height: 1.3;
	transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
	position: relative;
	overflow: hidden;
}

.hwc-search-tag::before {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(90deg, transparent, rgba(244, 175, 79, 0.1), transparent);
	transition: left 0.5s ease;
}

.hwc-search-tag:hover::before {
	left: 100%;
}

.hwc-search-tag:hover,
.hwc-search-tag:focus {
	background: #fff;
	border-color: #f4af4f;
	color: #f4af4f;
	transform: translateY(-1px);
	box-shadow: 0 2px 8px rgba(244, 175, 79, 0.15);
	text-decoration: none;
}

.hwc-search-tag__text {
	position: relative;
	z-index: 1;
	word-break: break-word;
	text-align: center;
}

.hwc-search-tag--small {
	font-size: 0.875rem;
	padding: 0.5rem 0.85rem;
}

.hwc-search-tag--medium {
	font-size: 0.95rem;
	padding: 0.6rem 1rem;
	border-width: 1.5px;
}

.hwc-search-tag--large {
	font-size: 1.05rem;
	padding: 0.75rem 1.15rem;
	font-weight: 600;
	border-width: 2px;
	border-color: #ddd;
	background: #fafafa;
}

.hwc-search-tag--large:hover,
.hwc-search-tag--large:focus {
	border-color: #f9a408;
	color: #f9a408;
	box-shadow: 0 3px 12px rgba(244, 175, 79, 0.2);
}

@media screen and (min-width: 38.75em) {
	.hwc-search-cloud {
		grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
		gap: 0.75rem;
		padding: 1.75rem;
	}
}

@media screen and (min-width: 59.6875em) {
	.hwc-search-split {
		gap: 2.5rem;
	}
	
	.hwc-search-cloud {
		grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
		gap: 0.85rem;
		padding: 2rem;
	}
}

@media screen and (max-width: 38.75em) {
	.hwc-search-split {
		grid-template-columns: 1fr;
		gap: 1.5rem;
	}
	
	.hwc-search-cloud {
		grid-template-columns: repeat(auto-fill, minmax(110px, 1fr));
		gap: 0.6rem;
		padding: 1.25rem;
	}
	
	.hwc-search-tag {
		padding: 0.5rem 0.75rem;
		font-size: 0.85rem;
	}
	
	.hwc-search-tag--medium {
		font-size: 0.9rem;
		padding: 0.55rem 0.85rem;
	}
	
	.hwc-search-tag--large {
		font-size: 0.95rem;
		padding: 0.65rem 1rem;
	}
}

