:root {
	--hsw-color-primary: #ca8a04;
	--hsw-color-primary-dark: #a16207;
	--hsw-color-primary-soft: #fefce8;
	--hsw-color-primary-pale: #fef9c3;
	--hsw-color-accent: #1d4ed8;
	--hsw-color-accent-hover: #2563eb;
	--hsw-color-text: #1c1917;
	--hsw-color-muted: #57534e;
	--hsw-color-border: #e5e7eb;
	--hsw-color-surface: #ffffff;
	--hsw-color-background: #fafaf9;
	--hsw-font-heading: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
	--hsw-font-body: "Noto Sans JP", "Hiragino Sans", "Yu Gothic", sans-serif;
	--hsw-font-number: Roboto, "Helvetica Neue", Arial, sans-serif;
	--hsw-radius: 6px;
	--hsw-radius-lg: 14px;
	--hsw-shadow: 0 12px 32px rgb(28 25 23 / 8%);
	--hsw-width: 1200px;
	--hsw-space-1: 0.5rem;
	--hsw-space-2: 1rem;
	--hsw-space-3: 1.5rem;
	--hsw-space-4: 2rem;
	--hsw-space-5: 3rem;
	--hsw-space-6: 4rem;
	--color-main: var(--hsw-color-primary);
	--color-sub: var(--hsw-color-primary-soft);
	--color-accent: var(--hsw-color-accent);
	--color-text: var(--hsw-color-text);
	--color-border: var(--hsw-color-border);
}

*,
*::before,
*::after {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
	text-size-adjust: 100%;
}

body.hsw-site {
	margin: 0;
	color: var(--hsw-color-text);
	background: var(--hsw-color-surface);
	font-family: var(--hsw-font-body);
	font-size: 1rem;
	line-height: 1.8;
	-webkit-font-smoothing: antialiased;
}

body.hsw-site.hsw-menu-open {
	overflow: hidden;
}

.hsw-site img {
	max-width: 100%;
	height: auto;
}

.hsw-site a {
	color: var(--hsw-color-accent);
	text-decoration-thickness: 1px;
	text-underline-offset: 0.18em;
}

.hsw-site a:hover {
	color: var(--hsw-color-accent-hover);
}

.hsw-site button,
.hsw-site input,
.hsw-site select,
.hsw-site textarea {
	font: inherit;
}

.hsw-site :focus-visible {
	outline: 3px solid #facc15;
	outline-offset: 3px;
}

.hsw-skip-link {
	position: fixed;
	z-index: 9999;
	top: 0.75rem;
	left: 0.75rem;
	padding: 0.75rem 1rem;
	transform: translateY(-180%);
	border-radius: var(--hsw-radius);
	color: #fff;
	background: var(--hsw-color-text);
}

.hsw-skip-link:focus {
	transform: translateY(0);
}

.hsw-container {
	width: min(calc(100% - 2rem), var(--hsw-width));
	margin-inline: auto;
}

.hsw-section {
	padding-block: var(--hsw-space-5);
}

.hsw-section--soft {
	background: var(--hsw-color-primary-soft);
}

.hsw-section--muted {
	background: var(--hsw-color-background);
}

.hsw-section__header {
	display: flex;
	flex-wrap: wrap;
	gap: 0.75rem 1.5rem;
	align-items: end;
	justify-content: space-between;
	margin-bottom: var(--hsw-space-4);
}

.hsw-section__title {
	position: relative;
	margin: 0;
	padding-left: 1rem;
	font-family: var(--hsw-font-heading);
	font-size: clamp(1.5rem, 4vw, 2.15rem);
	font-weight: 800;
	line-height: 1.35;
	letter-spacing: 0.02em;
}

.hsw-section__title::before {
	position: absolute;
	top: 0.08em;
	bottom: 0.08em;
	left: 0;
	width: 5px;
	border-radius: 999px;
	background: var(--hsw-color-primary);
	content: "";
}

.hsw-section__lead {
	margin: 0.5rem 0 0;
	color: var(--hsw-color-muted);
}

.hsw-section__link {
	font-weight: 700;
	white-space: nowrap;
}

.hsw-button {
	display: inline-flex;
	min-height: 48px;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
	padding: 0.72rem 1.3rem;
	border: 1px solid transparent;
	border-radius: var(--hsw-radius);
	font-weight: 700;
	line-height: 1.4;
	text-align: center;
	text-decoration: none;
	transition: background-color 160ms ease, color 160ms ease, transform 160ms ease, box-shadow 160ms ease;
}

.hsw-button:hover {
	transform: translateY(-1px);
}

.hsw-button--primary {
	color: #fff !important;
	background: var(--hsw-color-accent);
	box-shadow: 0 8px 18px rgb(29 78 216 / 22%);
}

.hsw-button--primary:hover {
	background: var(--hsw-color-accent-hover);
}

.hsw-button--ghost {
	border-color: var(--hsw-color-border);
	color: var(--hsw-color-text);
	background: #fff;
}

.hsw-eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	margin: 0 0 0.75rem;
	color: var(--hsw-color-primary-dark);
	font-size: 0.8rem;
	font-weight: 800;
	letter-spacing: 0.12em;
	text-transform: uppercase;
}

.hsw-eyebrow::before {
	width: 1.75rem;
	height: 2px;
	background: var(--hsw-color-primary);
	content: "";
}

.hsw-header {
	position: relative;
	z-index: 100;
	border-bottom: 1px solid var(--hsw-color-border);
	background: rgb(255 255 255 / 96%);
}

.hsw-header__inner {
	display: flex;
	min-height: 72px;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
}

.hsw-brand {
	display: inline-flex;
	align-items: center;
	gap: 0.75rem;
	color: var(--hsw-color-text) !important;
	text-decoration: none !important;
}

.hsw-brand__mark {
	display: grid;
	width: 38px;
	height: 38px;
	flex: 0 0 auto;
	place-items: center;
	border-radius: 50% 50% 48% 52%;
	color: var(--hsw-color-text);
	background: var(--hsw-color-primary);
	font-family: var(--hsw-font-number);
	font-size: 1.25rem;
	font-weight: 900;
	box-shadow: inset 0 -5px 0 rgb(161 98 7 / 24%);
}

.hsw-brand__text {
	display: grid;
	line-height: 1.2;
}

.hsw-brand__name {
	font-family: var(--hsw-font-heading);
	font-size: 1.1rem;
	font-weight: 800;
	letter-spacing: 0.04em;
}

.hsw-brand__tagline {
	display: none;
	color: var(--hsw-color-muted);
	font-size: 0.68rem;
}

.hsw-brand .custom-logo {
	display: block;
	width: auto;
	max-width: 220px;
	height: 48px;
	object-fit: contain;
}

.hsw-menu-toggle {
	display: inline-grid;
	width: 48px;
	height: 48px;
	place-items: center;
	padding: 0;
	border: 1px solid var(--hsw-color-border);
	border-radius: var(--hsw-radius);
	background: #fff;
	cursor: pointer;
}

.hsw-menu-toggle__bars,
.hsw-menu-toggle__bars::before,
.hsw-menu-toggle__bars::after {
	display: block;
	width: 22px;
	height: 2px;
	border-radius: 2px;
	background: var(--hsw-color-text);
	transition: transform 160ms ease, opacity 160ms ease;
}

.hsw-menu-toggle__bars {
	position: relative;
}

.hsw-menu-toggle__bars::before,
.hsw-menu-toggle__bars::after {
	position: absolute;
	left: 0;
	content: "";
}

.hsw-menu-toggle__bars::before {
	top: -7px;
}

.hsw-menu-toggle__bars::after {
	top: 7px;
}

.hsw-menu-toggle[aria-expanded="true"] .hsw-menu-toggle__bars {
	background: transparent;
}

.hsw-menu-toggle[aria-expanded="true"] .hsw-menu-toggle__bars::before {
	top: 0;
	transform: rotate(45deg);
}

.hsw-menu-toggle[aria-expanded="true"] .hsw-menu-toggle__bars::after {
	top: 0;
	transform: rotate(-45deg);
}

.hsw-nav {
	position: absolute;
	top: 100%;
	right: 0;
	left: 0;
	display: none;
	padding: 0.75rem 1rem 1.25rem;
	border-bottom: 1px solid var(--hsw-color-border);
	background: #fff;
	box-shadow: var(--hsw-shadow);
}

.hsw-nav.is-open {
	display: block;
}

.hsw-nav__list,
.hsw-nav .menu {
	display: grid;
	margin: 0;
	padding: 0;
	list-style: none;
}

.hsw-nav a {
	display: block;
	padding: 0.85rem 0.5rem;
	border-bottom: 1px solid var(--hsw-color-border);
	color: var(--hsw-color-text);
	font-weight: 700;
	text-decoration: none;
}

.hsw-hero {
	border-bottom: 1px solid #fde68a;
}

.hsw-hero__inner {
	padding-block: 3.5rem;
}

.hsw-hero__content {
	position: relative;
	z-index: 1;
}

.hsw-hero__title {
	max-width: 15em;
	font-family: var(--hsw-font-heading);
	font-size: clamp(2.15rem, 8vw, 4.35rem);
	line-height: 1.18;
}

.hsw-hero__title em {
	color: var(--hsw-color-primary-dark);
	font-style: normal;
}

.hsw-hero__subtitle {
	max-width: 42rem;
	margin: 1.2rem 0 1.6rem;
	color: #44403c;
	font-size: clamp(1rem, 2.4vw, 1.18rem);
	line-height: 1.9;
}

.hsw-hero__facts {
	display: flex;
	flex-wrap: wrap;
	gap: 0.6rem 1.25rem;
	margin: 1.5rem 0 0;
	padding: 0;
	color: #57534e;
	font-size: 0.86rem;
	font-weight: 700;
	list-style: none;
}

.hsw-hero__facts li::before {
	margin-right: 0.4rem;
	color: var(--hsw-color-primary-dark);
	content: "✓";
}

.hsw-hero__visual {
	position: relative;
	min-height: 260px;
}

.hsw-hero__image {
	position: relative;
	z-index: 2;
	display: block;
	width: min(100%, 520px);
	margin-inline: auto;
	filter: drop-shadow(0 22px 30px rgb(146 64 14 / 12%));
}

.hsw-hero__glow {
	position: absolute;
	inset: 12% 10%;
	border-radius: 50%;
	background: rgb(250 204 21 / 36%);
	filter: blur(34px);
}

.hsw-breadcrumb {
	padding-block: 0.8rem;
	border-bottom: 1px solid var(--hsw-color-border);
	color: var(--hsw-color-muted);
	font-size: 0.78rem;
}

.hsw-breadcrumb__list {
	display: flex;
	overflow: hidden;
	align-items: center;
	gap: 0.45rem;
	margin: 0;
	padding: 0;
	white-space: nowrap;
	list-style: none;
}

.hsw-breadcrumb__item {
	overflow: hidden;
	text-overflow: ellipsis;
}

.hsw-breadcrumb__item + .hsw-breadcrumb__item::before {
	margin-right: 0.45rem;
	color: #a8a29e;
	content: "/";
}

.hsw-breadcrumb a {
	color: var(--hsw-color-muted);
	text-decoration: none;
}

.hsw-post-grid {
	display: grid;
	gap: 1.25rem;
}

.hsw-post-card {
	display: flex;
	overflow: hidden;
	flex-direction: column;
	border: 1px solid var(--hsw-color-border);
	border-radius: var(--hsw-radius);
	background: #fff;
	box-shadow: 0 3px 14px rgb(28 25 23 / 4%);
	transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.hsw-post-card:hover {
	transform: translateY(-3px);
	border-color: #facc15;
	box-shadow: var(--hsw-shadow);
}

.hsw-post-card__image-link {
	position: relative;
	display: block;
	overflow: hidden;
	aspect-ratio: 600 / 315;
	background: var(--hsw-color-primary-soft);
}

.hsw-post-card__image {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 220ms ease;
}

.hsw-post-card:hover .hsw-post-card__image {
	transform: scale(1.025);
}

.hsw-post-card__placeholder {
	display: grid;
	width: 100%;
	height: 100%;
	place-items: center;
	color: var(--hsw-color-primary-dark);
	background:
		radial-gradient(circle at 72% 25%, rgb(250 204 21 / 36%) 0 12%, transparent 13%),
		linear-gradient(135deg, #fef9c3, #fffbeb);
	font-size: 0.86rem;
	font-weight: 800;
	letter-spacing: 0.06em;
}

.hsw-post-card__body {
	display: flex;
	flex: 1;
	flex-direction: column;
	padding: 1.1rem;
}

.hsw-post-card__meta {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 0.5rem;
	margin-bottom: 0.55rem;
	color: var(--hsw-color-muted);
	font-family: var(--hsw-font-number);
	font-size: 0.76rem;
}

.hsw-category-label {
	display: inline-flex;
	align-items: center;
	padding: 0.22rem 0.55rem;
	border-radius: 999px;
	color: #713f12 !important;
	background: var(--hsw-color-primary-pale);
	font-family: var(--hsw-font-body);
	font-size: 0.72rem;
	font-weight: 700;
	line-height: 1.5;
	text-decoration: none;
}

.hsw-post-card__title {
	margin: 0;
	font-family: var(--hsw-font-heading);
	font-size: 1.05rem;
	font-weight: 800;
	line-height: 1.55;
}

.hsw-post-card__title a {
	color: var(--hsw-color-text);
	text-decoration: none;
}

.hsw-post-card__excerpt {
	margin: 0.65rem 0 0;
	color: var(--hsw-color-muted);
	font-size: 0.88rem;
	line-height: 1.75;
}

.hsw-post-card__more {
	margin-top: auto;
	padding-top: 0.8rem;
	font-size: 0.86rem;
	font-weight: 700;
}

.hsw-category-grid {
	display: grid;
	gap: 0.9rem;
}

.hsw-category-card {
	position: relative;
	display: grid;
	min-height: 132px;
	align-content: end;
	overflow: hidden;
	padding: 1.2rem;
	border: 1px solid #fde68a;
	border-radius: var(--hsw-radius);
	color: var(--hsw-color-text) !important;
	background: linear-gradient(145deg, #fff 25%, #fef9c3);
	text-decoration: none !important;
	transition: transform 160ms ease, border-color 160ms ease;
}

.hsw-category-card::before {
	position: absolute;
	top: -1.2rem;
	right: -1rem;
	width: 6rem;
	height: 6rem;
	border: 1rem solid rgb(202 138 4 / 12%);
	border-radius: 50%;
	content: "";
}

.hsw-category-card:hover {
	transform: translateY(-2px);
	border-color: var(--hsw-color-primary);
}

.hsw-category-card__name {
	font-family: var(--hsw-font-heading);
	font-size: 1.12rem;
	font-weight: 800;
}

.hsw-category-card__count {
	margin-top: 0.2rem;
	color: var(--hsw-color-muted);
	font-family: var(--hsw-font-number);
	font-size: 0.78rem;
}

.hsw-about {
	display: grid;
	overflow: hidden;
	border: 1px solid #fde68a;
	border-radius: var(--hsw-radius-lg);
	background: #fff;
	box-shadow: var(--hsw-shadow);
}

.hsw-about__content {
	padding: clamp(1.5rem, 5vw, 3rem);
}

.hsw-about__title {
	margin: 0;
	font-family: var(--hsw-font-heading);
	font-size: clamp(1.5rem, 4vw, 2.2rem);
	line-height: 1.4;
}

.hsw-about__copy {
	margin: 1rem 0 0;
	color: var(--hsw-color-muted);
}

.hsw-about__stats {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	border-top: 1px solid #fde68a;
	background: var(--hsw-color-primary-soft);
}

.hsw-about__stat {
	display: grid;
	place-content: center;
	min-height: 112px;
	padding: 1rem 0.5rem;
	text-align: center;
}

.hsw-about__stat + .hsw-about__stat {
	border-left: 1px solid #fde68a;
}

.hsw-about__number {
	color: var(--hsw-color-primary-dark);
	font-family: var(--hsw-font-number);
	font-size: clamp(1.3rem, 5vw, 2rem);
	font-weight: 800;
	line-height: 1.2;
}

.hsw-about__label {
	margin-top: 0.3rem;
	color: var(--hsw-color-muted);
	font-size: 0.7rem;
	font-weight: 700;
}

.hsw-cta {
	position: relative;
	overflow: hidden;
	padding: clamp(1.5rem, 5vw, 3rem);
	border-radius: var(--hsw-radius-lg);
	color: #fff;
	background: linear-gradient(135deg, #1e3a8a, var(--hsw-color-accent));
	box-shadow: 0 18px 36px rgb(30 58 138 / 24%);
}

.hsw-cta::after {
	position: absolute;
	right: -4rem;
	bottom: -6rem;
	width: 16rem;
	height: 16rem;
	border: 2rem solid rgb(255 255 255 / 8%);
	border-radius: 50%;
	content: "";
}

.hsw-cta__inner {
	position: relative;
	z-index: 1;
	display: grid;
	gap: 1.2rem;
	align-items: center;
}

.hsw-cta__title {
	margin: 0;
	font-family: var(--hsw-font-heading);
	font-size: clamp(1.35rem, 4vw, 2rem);
	line-height: 1.4;
}

.hsw-cta__text {
	margin: 0.5rem 0 0;
	color: #dbeafe;
}

.hsw-cta .hsw-button {
	color: #1e3a8a !important;
	background: #fff;
	box-shadow: 0 8px 18px rgb(15 23 42 / 22%);
}

.hsw-content-layout {
	display: flex;
	flex-direction: column;
	gap: 2rem;
	padding-block: var(--hsw-space-4) var(--hsw-space-6);
}

.hsw-main {
	min-width: 0;
	order: 1;
}

.hsw-sidebar {
	min-width: 0;
	order: 2;
}

.hsw-page-header {
	padding-block: 2.5rem;
	border-bottom: 1px solid var(--hsw-color-border);
	background: var(--hsw-color-background);
}

.hsw-page-header__title {
	margin: 0;
	font-family: var(--hsw-font-heading);
	font-size: clamp(1.8rem, 5vw, 3rem);
	line-height: 1.3;
}

.hsw-page-header__description {
	max-width: 48rem;
	margin: 0.8rem 0 0;
	color: var(--hsw-color-muted);
}

.hsw-archive-grid {
	display: grid;
	gap: 1.25rem;
}

.hsw-pagination {
	margin-top: 2.5rem;
}

.hsw-pagination .nav-links {
	display: flex;
	flex-wrap: wrap;
	gap: 0.45rem;
	justify-content: center;
}

.hsw-pagination .page-numbers {
	display: grid;
	min-width: 42px;
	height: 42px;
	place-items: center;
	border: 1px solid var(--hsw-color-border);
	border-radius: var(--hsw-radius);
	color: var(--hsw-color-text);
	background: #fff;
	text-decoration: none;
}

.hsw-pagination .current {
	border-color: var(--hsw-color-primary);
	background: var(--hsw-color-primary-pale);
	font-weight: 800;
}

.hsw-widget {
	margin-bottom: 1.25rem;
	padding: 1.15rem;
	border: 1px solid var(--hsw-color-border);
	border-radius: var(--hsw-radius);
	background: #fff;
}

.hsw-widget--cta {
	border-color: #bfdbfe;
	background: #eff6ff;
}

.hsw-widget__title {
	position: relative;
	margin: 0 0 1rem;
	padding-bottom: 0.65rem;
	border-bottom: 2px solid var(--hsw-color-border);
	font-family: var(--hsw-font-heading);
	font-size: 1.05rem;
	line-height: 1.4;
}

.hsw-widget__title::after {
	position: absolute;
	bottom: -2px;
	left: 0;
	width: 3rem;
	height: 2px;
	background: var(--hsw-color-primary);
	content: "";
}

.hsw-widget__list {
	display: grid;
	gap: 0.85rem;
	margin: 0;
	padding: 0;
	list-style: none;
}

.hsw-widget__post {
	display: grid;
	grid-template-columns: 72px 1fr;
	gap: 0.75rem;
	align-items: start;
}

.hsw-widget__post-image {
	overflow: hidden;
	aspect-ratio: 1.15;
	border-radius: 4px;
	background: var(--hsw-color-primary-soft);
}

.hsw-widget__post-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.hsw-widget__post-title {
	margin: 0;
	font-size: 0.82rem;
	font-weight: 700;
	line-height: 1.55;
}

.hsw-widget__post-title a {
	color: var(--hsw-color-text);
	text-decoration: none;
}

.hsw-widget__post-date {
	display: block;
	margin-top: 0.2rem;
	color: var(--hsw-color-muted);
	font-family: var(--hsw-font-number);
	font-size: 0.68rem;
}

.hsw-widget__categories {
	display: grid;
	margin: 0;
	padding: 0;
	list-style: none;
}

.hsw-widget__categories li + li {
	border-top: 1px solid var(--hsw-color-border);
}

.hsw-widget__categories a {
	display: flex;
	justify-content: space-between;
	padding: 0.65rem 0;
	color: var(--hsw-color-text);
	font-size: 0.88rem;
	text-decoration: none;
}

.hsw-widget__cta-title {
	margin: 0;
	font-family: var(--hsw-font-heading);
	font-size: 1.05rem;
	line-height: 1.5;
}

.hsw-widget__cta-text {
	margin: 0.55rem 0 0.85rem;
	color: var(--hsw-color-muted);
	font-size: 0.82rem;
	line-height: 1.7;
}

.hsw-search-form {
	display: flex;
	gap: 0.5rem;
}

.hsw-search-form__label {
	flex: 1;
}

.hsw-search-form__input {
	width: 100%;
	min-height: 46px;
	padding: 0.6rem 0.8rem;
	border: 1px solid #a8a29e;
	border-radius: var(--hsw-radius);
	color: var(--hsw-color-text);
	background: #fff;
}

.hsw-search-form__submit {
	min-width: 72px;
	min-height: 46px;
	padding: 0.6rem 1rem;
	border: 0;
	border-radius: var(--hsw-radius);
	color: #fff;
	background: var(--hsw-color-accent);
	font-weight: 700;
	cursor: pointer;
}

.hsw-empty {
	padding: 2rem;
	border: 1px solid var(--hsw-color-border);
	border-radius: var(--hsw-radius);
	text-align: center;
	background: var(--hsw-color-background);
}

.hsw-empty__title {
	margin: 0;
	font-family: var(--hsw-font-heading);
	font-size: 1.3rem;
}

.hsw-empty__text {
	margin: 0.7rem 0 1rem;
	color: var(--hsw-color-muted);
}

.hsw-footer {
	padding-block: 3rem 1.5rem;
	color: #e7e5e4;
	background: #1c1917;
}

.hsw-footer__logo {
	display: flex;
	justify-content: center;
	margin-bottom: 2rem;
	text-align: center;
}

.hsw-footer__logo a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
}

.hsw-footer__logo img {
	display: block;
	width: auto;
	max-width: min(260px, 75vw);
	height: 40px;
	object-fit: contain;
}

.hsw-footer__site-name {
	margin: 0;
	color: #fff;
	font-family: var(--hsw-font-heading);
	font-size: 1.1rem;
	font-weight: 800;
	letter-spacing: 0.04em;
}

.hsw-footer__grid {
	display: grid;
	gap: 2rem;
}

.hsw-footer .hsw-brand {
	color: #fff !important;
}

.hsw-footer__description {
	max-width: 32rem;
	margin: 0.9rem 0 0;
	color: #a8a29e;
	font-size: 0.85rem;
}

.hsw-footer__title {
	margin: 0 0 0.8rem;
	color: #fff;
	font-size: 0.88rem;
	letter-spacing: 0.08em;
}

.hsw-footer__nav,
.hsw-footer__nav .menu,
.hsw-footer__social {
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem 1rem;
	margin: 0;
	padding: 0;
	list-style: none;
}

.hsw-footer a {
	color: #d6d3d1;
	font-size: 0.85rem;
	text-decoration: none;
}

.hsw-footer__bottom {
	display: flex;
	flex-wrap: wrap;
	gap: 0.75rem 1.5rem;
	justify-content: space-between;
	margin-top: 2rem;
	padding-top: 1.25rem;
	border-top: 1px solid #44403c;
	color: #a8a29e;
	font-family: var(--hsw-font-number);
	font-size: 0.74rem;
}

.hsw-screen-reader-text {
	position: absolute !important;
	width: 1px;
	height: 1px;
	overflow: hidden;
	clip: rect(1px, 1px, 1px, 1px);
	white-space: nowrap;
}

.hsw-screen-reader-text:focus {
	z-index: 100000;
	top: 5px;
	left: 5px;
	display: block;
	width: auto;
	height: auto;
	padding: 15px 23px 14px;
	clip: auto !important;
	color: var(--hsw-color-text);
	background: #fff;
	font-size: 14px;
	font-weight: 700;
}

@media (min-width: 640px) {
	.hsw-brand__tagline {
		display: block;
	}

	.hsw-post-grid,
	.hsw-archive-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

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

	.hsw-cta__inner {
		grid-template-columns: 1fr auto;
	}
}

@media (min-width: 768px) {
	.hsw-section {
		padding-block: var(--hsw-space-6);
	}

	.hsw-hero__inner {
		grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
		padding-block: 4.5rem;
	}

	.hsw-about {
		grid-template-columns: 1.45fr 0.75fr;
	}

	.hsw-about__stats {
		grid-template-columns: 1fr;
		border-top: 0;
		border-left: 1px solid #fde68a;
	}

	.hsw-about__stat + .hsw-about__stat {
		border-top: 1px solid #fde68a;
		border-left: 0;
	}

	.hsw-footer__grid {
		grid-template-columns: 1.5fr 1fr 1fr;
	}
}

@media (min-width: 1024px) {
	.hsw-header {
		position: sticky;
		top: 0;
		backdrop-filter: blur(12px);
	}

	.hsw-menu-toggle {
		display: none;
	}

	.hsw-nav {
		position: static;
		display: block !important;
		padding: 0;
		border: 0;
		background: transparent;
		box-shadow: none;
	}

	.hsw-nav__list,
	.hsw-nav .menu {
		display: flex;
		align-items: center;
		gap: 0.15rem;
	}

	.hsw-nav a {
		padding: 0.65rem 0.8rem;
		border: 0;
		border-radius: var(--hsw-radius);
		font-size: 0.88rem;
	}

	.hsw-nav a:hover,
	.hsw-nav .current-menu-item > a {
		color: #713f12;
		background: var(--hsw-color-primary-soft);
	}

	.hsw-post-grid {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}

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

	.hsw-content-layout {
		display: grid;
		grid-template-columns: minmax(0, 1fr) 300px;
		gap: 2.5rem;
	}

	.hsw-main {
		grid-column: 1;
		order: initial;
	}

	.hsw-sidebar {
		grid-column: 2;
		order: initial;
	}

	.hsw-sidebar__sticky {
		position: sticky;
		top: 96px;
	}
}

@media (min-width: 1280px) {
	.hsw-container {
		width: min(calc(100% - 3rem), var(--hsw-width));
	}

	.hsw-content-layout {
		grid-template-columns: minmax(0, 1fr) 320px;
		gap: 3rem;
	}
}

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

	.hsw-site *,
	.hsw-site *::before,
	.hsw-site *::after {
		scroll-behavior: auto !important;
		transition-duration: 0.01ms !important;
		animation-duration: 0.01ms !important;
		animation-iteration-count: 1 !important;
	}
}
