@charset "UTF-8";

:root {
	--cyan: #00a7b8;
	--cyan-dark: #006f7c;
	--cyan-soft: #eaf7f8;
	--ink: #202427;
	--muted: #4d565a;
	--line: #d8dddf;
	--pale: #f5f7f7;
	--white: #fff;
	--max: 1160px;
	--radius: 14px;
	--shadow: 0 12px 34px rgba(25, 48, 54, 0.08);
}

* {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
	scroll-padding-top: 94px;
}

body {
	margin: 0;
	overflow-x: clip;
	color: var(--ink);
	background: var(--white);
	font-family: -apple-system, BlinkMacSystemFont, "Yu Gothic", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
	font-size: 16px;
	line-height: 1.75;
}

body.menu-open {
	overflow: hidden;
}

a {
	color: inherit;
	text-decoration: none;
}

img {
	display: block;
	max-width: 100%;
	height: auto;
}

button,
input {
	font: inherit;
}

.wrap {
	width: min(var(--max), calc(100% - 48px));
	margin-inline: auto;
}

.sr-only,
.screen-reader-text {
	position: absolute !important;
	width: 1px !important;
	height: 1px !important;
	padding: 0 !important;
	margin: -1px !important;
	overflow: hidden !important;
	clip: rect(0, 0, 0, 0) !important;
	white-space: nowrap !important;
	border: 0 !important;
}

[hidden] {
	display: none !important;
}

.skip {
	position: fixed;
	top: -90px;
	left: 12px;
	z-index: 999;
	padding: 10px 16px;
	background: #fff;
	border: 3px solid var(--cyan-dark);
}

.skip:focus {
	top: 10px;
}

a:focus-visible,
button:focus-visible,
input:focus-visible {
	outline: 3px solid var(--cyan);
	outline-offset: 3px;
}

/* Header */
.header {
	position: sticky;
	z-index: 100;
	top: 0;
	background: rgba(255, 255, 255, 0.98);
	border-bottom: 1px solid var(--line);
}

.header-main {
	display: flex;
	align-items: center;
	gap: 20px;
	min-height: 76px;
}

.brand {
	flex: 0 0 auto;
}

.logo {
	display: flex;
	align-items: center;
	gap: 10px;
	min-height: 48px;
}

.custom-logo-link {
	display: grid;
	align-items: center;
	min-height: 48px;
}

.custom-logo {
	width: auto;
	max-width: 142px;
	max-height: 50px;
}

.logo strong {
	color: var(--cyan-dark);
	font-size: 25px;
	letter-spacing: 0.04em;
}

.logo span {
	font-size: 10px;
	font-weight: 800;
	line-height: 1.4;
}

.category-nav {
	flex: 1 1 auto;
	min-width: 0;
}

.category-menu {
	display: flex;
	align-items: stretch;
	justify-content: flex-end;
	gap: 2px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.category-menu a {
	display: flex;
	align-items: center;
	min-height: 44px;
	padding: 8px 9px;
	border-radius: 8px;
	font-size: 11px;
	font-weight: 800;
	line-height: 1.35;
	text-align: center;
}

.category-menu a:hover {
	color: var(--cyan-dark);
	background: var(--cyan-soft);
}

.header-actions {
	display: flex;
	flex: 0 0 auto;
	align-items: center;
	gap: 8px;
}

.header-search {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 5px;
	min-width: 62px;
	min-height: 44px;
	padding: 6px 10px;
	border: 1px solid var(--line);
	border-radius: 9px;
	font-size: 12px;
	font-weight: 800;
}

.header-search > span:first-child {
	font-size: 21px;
	line-height: 1;
}

.header-cta,
.mobile-menu-cta {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 44px;
	padding: 8px 14px;
	border-radius: 9px;
	background: var(--ink);
	color: #fff;
	font-size: 12px;
	font-weight: 800;
	white-space: nowrap;
}

.header-cta:hover,
.mobile-menu-cta:hover {
	background: var(--cyan-dark);
}

.menu-button {
	display: none;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	flex: 0 0 50px;
	gap: 5px;
	width: 50px;
	min-height: 48px;
	padding: 6px;
	border: 0;
	border-radius: 8px;
	background: transparent;
	cursor: pointer;
}

.menu-button i,
.menu-button i::before,
.menu-button i::after {
	display: block;
	width: 23px;
	height: 2px;
	border-radius: 2px;
	background: var(--ink);
	content: "";
	transition: transform 0.2s, opacity 0.2s;
}

.menu-button i {
	position: relative;
}

.menu-button i::before {
	position: absolute;
	transform: translateY(-7px);
}

.menu-button i::after {
	position: absolute;
	transform: translateY(7px);
}

.menu-button[aria-expanded="true"] i {
	background: transparent;
}

.menu-button[aria-expanded="true"] i::before {
	transform: rotate(45deg);
}

.menu-button[aria-expanded="true"] i::after {
	transform: rotate(-45deg);
}

.menu-button span {
	margin-top: 6px;
	font-size: 9px;
	font-weight: 800;
}

.mobile-menu {
	position: fixed;
	z-index: 90;
	inset: 76px 0 0;
	overflow: auto;
	background: #fff;
	border-top: 1px solid var(--line);
}

.mobile-menu__inner {
	padding-block: 24px 40px;
}

.mobile-menu-title {
	margin: 0 0 10px;
	color: var(--cyan-dark);
	font-size: 12px;
	font-weight: 900;
	letter-spacing: 0.08em;
}

.mobile-menu .category-menu {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 0;
}

.mobile-menu .category-menu a {
	justify-content: flex-start;
	min-height: 52px;
	padding: 10px 4px;
	border-bottom: 1px solid var(--line);
	border-radius: 0;
	font-size: 14px;
	text-align: left;
}

.mobile-menu .search-form {
	margin-top: 24px;
}

.mobile-menu-cta {
	width: 100%;
	margin-top: 14px;
}

/* Shared headings and forms */
.eyebrow,
.section-head span,
.listing-header > span,
.page-kicker,
.discovery-panel > div > span,
.service-cta span,
.policy-detail > div > span {
	color: var(--cyan-dark);
	font-size: 11px;
	font-weight: 900;
	letter-spacing: 0.11em;
}

.section-head {
	display: flex;
	align-items: end;
	justify-content: space-between;
	gap: 28px;
	margin-bottom: 25px;
}

.section-head h2 {
	margin: 4px 0 0;
	font-size: clamp(27px, 3vw, 36px);
	line-height: 1.3;
}

.section-head > a {
	display: inline-flex;
	align-items: center;
	min-height: 44px;
	color: var(--cyan-dark);
	font-size: 13px;
	font-weight: 800;
}

.section-head > p {
	margin: 0;
	color: var(--muted);
	font-size: 13px;
}

.search-form {
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	width: 100%;
}

.search-form input {
	min-width: 0;
	min-height: 48px;
	padding: 11px 14px;
	border: 1px solid #aeb7ba;
	border-radius: 9px 0 0 9px;
	background: #fff;
	color: var(--ink);
}

.search-form button {
	min-width: 72px;
	min-height: 48px;
	padding: 8px 16px;
	border: 0;
	border-radius: 0 9px 9px 0;
	background: var(--cyan-dark);
	color: #fff;
	font-weight: 800;
	cursor: pointer;
}

/* Home */
.home-intro {
	display: grid;
	grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.75fr);
	gap: 70px;
	align-items: end;
	padding-block: 72px 54px;
}

.home-intro h1 {
	margin: 10px 0 0;
	font-size: clamp(42px, 5.2vw, 72px);
	line-height: 1.2;
	letter-spacing: -0.04em;
}

.home-intro > p {
	margin: 0 0 10px;
	color: var(--muted);
	font-size: 16px;
	line-height: 1.9;
}

.latest-section {
	padding-bottom: 88px;
}

.card-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 28px 22px;
}

.content-card {
	min-width: 0;
}

.content-card > a {
	display: grid;
	grid-template-rows: auto 1fr;
	height: 100%;
	overflow: hidden;
	border: 1px solid var(--line);
	border-radius: var(--radius);
	background: #fff;
	box-shadow: 0 5px 18px rgba(25, 48, 54, 0.045);
	transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
}

.content-card > a:hover {
	transform: translateY(-3px);
	border-color: #a9c9cd;
	box-shadow: var(--shadow);
}

.card-image {
	position: relative;
	overflow: hidden;
	background: var(--cyan-soft);
}

.card-image img {
	width: 100%;
	aspect-ratio: 16 / 9;
	object-fit: cover;
	transition: transform 0.25s;
}

.content-card > a:hover .card-image img {
	transform: scale(1.025);
}

.card-image span {
	position: absolute;
	left: 12px;
	bottom: 12px;
	max-width: calc(100% - 24px);
	padding: 5px 9px;
	border-radius: 999px;
	background: rgba(0, 80, 90, 0.94);
	color: #fff;
	font-size: 11px;
	font-weight: 800;
	line-height: 1.35;
}

.card-copy {
	display: flex;
	flex-direction: column;
	padding: 17px 18px 16px;
}

.card-copy h2 {
	margin: 0;
	overflow-wrap: anywhere;
	font-size: 18px;
	line-height: 1.55;
	letter-spacing: -0.01em;
}

.card-copy p {
	display: -webkit-box;
	margin: 10px 0 14px;
	overflow: hidden;
	color: var(--muted);
	font-size: 13px;
	line-height: 1.7;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 3;
}

.card-copy time {
	margin-top: auto;
	color: #5c666a;
	font-size: 11px;
}

.topic-section {
	padding-block: 76px 84px;
	background: var(--pale);
	border-block: 1px solid var(--line);
}

.topic-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 16px;
}

.topic-grid > a {
	--topic-accent: #007987;
	--topic-surface: #e6f6f7;
	position: relative;
	display: grid;
	grid-template-columns: 76px minmax(0, 1fr) 32px;
	gap: 16px;
	align-items: center;
	min-height: 150px;
	overflow: hidden;
	padding: 24px 20px;
	border: 1px solid var(--line);
	border-radius: 18px;
	background: #fff;
	box-shadow: 0 5px 20px rgba(25, 48, 54, 0.04);
	isolation: isolate;
	transition: transform 0.2s, border-color 0.2s, box-shadow 0.2s;
}

.topic-grid > a:hover {
	transform: translateY(-3px);
	border-color: color-mix(in srgb, var(--topic-accent) 55%, white);
	box-shadow: 0 12px 30px rgba(25, 48, 54, 0.1);
}

.topic-grid > a::after {
	position: absolute;
	z-index: -1;
	right: -45px;
	bottom: -62px;
	width: 150px;
	height: 150px;
	border-radius: 50%;
	background: var(--topic-surface);
	content: "";
	opacity: 0.72;
}

.topic-grid > .topic-card--buy {
	--topic-accent: #367558;
	--topic-surface: #e9f5ed;
}

.topic-grid > .topic-card--sell {
	--topic-accent: #a25c27;
	--topic-surface: #fff0e3;
}

.topic-grid > .topic-card--living {
	--topic-accent: #695891;
	--topic-surface: #f1edfa;
}

.topic-grid > .topic-card--pool {
	--topic-accent: #1878a4;
	--topic-surface: #e7f4fa;
}

.topic-grid > .topic-card--business {
	--topic-accent: #4d6374;
	--topic-surface: #edf2f5;
}

.topic-card__number {
	position: absolute;
	top: 14px;
	right: 16px;
	color: color-mix(in srgb, var(--topic-accent) 68%, white);
	font-size: 12px;
	font-weight: 900;
	letter-spacing: 0.08em;
}

.topic-card__visual {
	display: grid;
	place-items: center;
	width: 76px;
	height: 76px;
	border-radius: 22px;
	background: var(--topic-surface);
	color: var(--topic-accent);
}

.topic-card__visual svg {
	width: 48px;
	height: 48px;
	fill: none;
	stroke: currentColor;
	stroke-linecap: round;
	stroke-linejoin: round;
	stroke-width: 1.8;
}

.topic-grid h3 {
	margin: 0;
	font-size: 19px;
	line-height: 1.45;
}

.topic-grid p {
	margin: 7px 0 0;
	color: var(--muted);
	font-size: 13px;
	line-height: 1.6;
}

.topic-card__arrow {
	display: grid;
	place-items: center;
	width: 32px;
	height: 32px;
	border: 1px solid color-mix(in srgb, var(--topic-accent) 28%, white);
	border-radius: 50%;
	background: #fff;
	color: var(--topic-accent);
	font-size: 18px;
	font-weight: 800;
	transition: transform 0.2s, background-color 0.2s, color 0.2s;
}

.topic-grid > a:hover .topic-card__arrow {
	transform: translateX(3px);
	background: var(--topic-accent);
	color: #fff;
}

.service-cta {
	padding-block: 58px;
	background: var(--cyan-soft);
}

.service-cta > div {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 35px;
}

.service-cta h2 {
	margin: 5px 0 4px;
	font-size: 29px;
	line-height: 1.4;
}

.service-cta p {
	margin: 0;
	color: var(--muted);
	font-size: 13px;
}

.service-cta a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 48px;
	padding: 10px 19px;
	border-radius: 9px;
	background: var(--ink);
	color: #fff;
	font-size: 13px;
	font-weight: 800;
	white-space: nowrap;
}

.policy-detail {
	padding-block: 72px;
}

.policy-detail > div {
	display: grid;
	grid-template-columns: 0.35fr 1fr 0.9fr;
	gap: 38px;
	align-items: start;
}

.policy-detail h2 {
	margin: 0;
	font-size: clamp(27px, 3vw, 36px);
	line-height: 1.55;
}

.policy-detail p {
	margin: 4px 0 0;
	color: var(--muted);
	line-height: 1.9;
}

/* Breadcrumb and listings */
.breadcrumb {
	max-width: 100%;
	margin-bottom: 32px;
	overflow: hidden;
}

.breadcrumb ol {
	display: flex;
	align-items: center;
	gap: 7px;
	min-width: 0;
	margin: 0;
	padding: 0;
	overflow: hidden;
	list-style: none;
	color: var(--muted);
	font-size: 12px;
}

.breadcrumb li {
	flex: 0 0 auto;
	min-width: 0;
	white-space: nowrap;
}

.breadcrumb li[aria-current="page"] {
	flex: 1 1 auto;
	overflow: hidden;
	text-overflow: ellipsis;
}

.breadcrumb li:not(:last-child)::after {
	margin-left: 7px;
	color: #90999c;
	content: "/";
}

.breadcrumb a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 44px;
	min-height: 44px;
	padding-inline: 6px;
	text-decoration: underline;
	text-underline-offset: 3px;
}

.listing-main {
	padding-block: 45px 82px;
}

.listing-header {
	max-width: 840px;
	margin-bottom: 35px;
	padding-bottom: 23px;
	border-bottom: 3px solid var(--ink);
}

.listing-header h1 {
	margin: 6px 0 9px;
	font-size: clamp(32px, 4vw, 46px);
	line-height: 1.35;
	letter-spacing: -0.02em;
}

.listing-header p,
.archive-description p {
	margin: 0;
	color: var(--muted);
}

.listing-main > .search-form {
	max-width: 560px;
}

.search-grid {
	margin-top: 36px;
}

.empty-state {
	padding: 35px;
	border-left: 5px solid var(--cyan);
	background: var(--pale);
}

.empty-state h2 {
	margin-top: 0;
}

.empty-state .search-form {
	max-width: 500px;
}

.navigation.pagination {
	margin-top: 45px;
}

.nav-links {
	display: flex;
	justify-content: center;
	gap: 7px;
	flex-wrap: wrap;
}

.page-numbers {
	display: grid;
	place-items: center;
	min-width: 44px;
	min-height: 44px;
	padding: 6px;
	border: 1px solid var(--line);
	border-radius: 8px;
}

.page-numbers.current {
	border-color: var(--cyan-dark);
	background: var(--cyan-dark);
	color: #fff;
}

/* Article */
.article-hero {
	max-width: 920px;
	padding-top: 42px;
}

.article-meta {
	display: flex;
	align-items: center;
	gap: 15px;
	margin-top: 22px;
	font-size: 12px;
}

.article-meta a {
	display: inline-flex;
	align-items: center;
	min-height: 44px;
	padding: 5px 10px;
	border-radius: 999px;
	background: var(--cyan-dark);
	color: #fff;
	font-weight: 800;
}

.article-hero h1 {
	max-width: 880px;
	margin: 14px 0 14px;
	font-size: clamp(34px, 4.4vw, 52px);
	line-height: 1.38;
	letter-spacing: -0.025em;
}

.article-hero .lead {
	max-width: 780px;
	margin: 0;
	color: var(--muted);
	font-size: 17px;
	line-height: 1.85;
}

.hero-image {
	max-width: 980px;
	margin-top: 38px;
}

.hero-image img {
	width: 100%;
	max-height: 620px;
	border-radius: var(--radius);
	object-fit: cover;
}

.article-body,
.page-main .entry-content {
	width: min(760px, calc(100% - 48px));
	margin: 54px auto 86px;
	color: #262c2f;
	font-size: 17px;
	line-height: 1.95;
}

.entry-content > * {
	max-width: 100%;
}

.entry-content p {
	margin-block: 0 1.45em;
}

.entry-content h2 {
	margin: 3em 0 1em;
	padding: 14px 0 10px;
	border-top: 3px solid var(--ink);
	font-size: 29px;
	line-height: 1.5;
	letter-spacing: -0.015em;
}

.entry-content h3 {
	margin: 2.2em 0 0.8em;
	font-size: 22px;
	line-height: 1.55;
}

.entry-content a {
	color: var(--cyan-dark);
	font-weight: 700;
	text-decoration: underline;
	text-decoration-thickness: 1px;
	text-underline-offset: 4px;
}

.entry-content img {
	margin-inline: auto;
	border-radius: 10px;
}

.entry-content blockquote {
	margin: 2em 0;
	padding: 20px 24px;
	border-left: 5px solid var(--cyan);
	background: var(--cyan-soft);
}

.entry-content li {
	margin: 0.55em 0;
}

.entry-content .wp-block-table {
	max-width: 100%;
	overflow-x: auto;
}

.article-toc {
	margin: 0 0 48px;
	padding: 24px 26px;
	border: 1px solid #b8d7da;
	border-radius: 12px;
	background: #f2fbfb;
}

.entry-content .article-toc h2 {
	margin: 0 0 13px;
	padding: 0;
	border: 0;
	font-size: 20px;
	line-height: 1.45;
}

.article-toc ol {
	margin: 0;
	padding-left: 1.45em;
}

.article-toc li {
	margin: 0;
	border-top: 1px solid #d2e8ea;
}

.article-toc li:first-child {
	border-top: 0;
}

.article-toc li.toc-level-3 {
	padding-left: 1.2em;
	font-size: 14px;
}

.article-toc a {
	display: block;
	min-height: 44px;
	padding: 9px 2px;
	color: var(--ink);
	font-weight: 700;
	text-decoration: none;
}

.article-toc a:hover {
	color: var(--cyan-dark);
	text-decoration: underline;
}

.post-navigation {
	border-block: 1px solid var(--line);
	background: var(--pale);
}

.post-navigation > div {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 1px;
	padding-block: 22px;
}

.post-navigation > div > div {
	min-width: 0;
	padding: 12px 22px;
	background: #fff;
}

.post-navigation__next {
	text-align: right;
}

.post-navigation span {
	display: block;
	color: var(--cyan-dark);
	font-size: 10px;
	font-weight: 800;
}

.post-navigation a {
	display: block;
	margin-top: 4px;
	font-weight: 800;
	line-height: 1.5;
}

.related {
	padding: 58px 0 80px;
}

.related .back-link {
	display: inline-flex;
	align-items: center;
	min-height: 44px;
	margin-top: 30px;
}

.back-link {
	color: var(--cyan-dark);
	font-weight: 800;
}

.page-main {
	padding-top: 45px;
	padding-bottom: 80px;
}

.page-header {
	max-width: 850px;
	margin: auto;
}

.page-kicker {
	display: block;
	margin-top: 30px;
}

.page-header h1 {
	font-size: clamp(32px, 4vw, 46px);
}

.page-image {
	max-width: 900px;
	margin: 30px auto;
}

.not-found {
	padding: 45px 0 90px;
	text-align: center;
}

.not-found > .breadcrumb {
	text-align: left;
}

.error-code {
	margin: 0;
	color: var(--cyan-soft);
	font-size: 150px;
	font-weight: 900;
	line-height: 1;
}

.not-found h1 {
	font-size: 38px;
}

.not-found > p:not(.error-code) {
	color: var(--muted);
}

.not-found > .search-form {
	max-width: 520px;
	margin: 35px auto;
}

.discovery-panel {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(300px, 420px);
	gap: 22px 44px;
	align-items: center;
	margin: 65px 0 0;
	padding: 32px;
	border-top: 5px solid var(--cyan);
	border-radius: 0 0 12px 12px;
	background: var(--pale);
	text-align: left;
}

.discovery-panel h2 {
	margin: 3px 0;
	font-size: 24px;
	line-height: 1.4;
}

.discovery-panel p {
	margin: 0;
	color: var(--muted);
	font-size: 13px;
}

.discovery-links {
	display: flex;
	grid-column: 1 / -1;
	gap: 7px;
	flex-wrap: wrap;
}

.discovery-links a {
	display: inline-flex;
	align-items: center;
	min-height: 44px;
	padding: 7px 11px;
	border: 1px solid var(--line);
	border-radius: 8px;
	background: #fff;
	font-size: 12px;
	font-weight: 800;
}

.related + .wrap .discovery-panel {
	margin-top: 0;
	margin-bottom: 75px;
}

/* Footer */
.footer {
	padding: 52px 0 22px;
	background: #171c1e;
	color: #fff;
}

.footer-top {
	display: grid;
	grid-template-columns: minmax(220px, 1.15fr) 1fr 0.7fr;
	gap: 50px;
}

.footer-logo {
	display: inline-block;
	min-height: 48px;
}

.footer-logo strong {
	display: block;
	color: #5ad3df;
	font-size: 28px;
}

.footer-logo span {
	display: block;
	font-size: 10px;
}

.footer-about p {
	max-width: 290px;
	margin-top: 16px;
	color: #b9c1c3;
	font-size: 12px;
}

.footer-group h2 {
	margin: 0 0 8px;
	color: #5ad3df;
	font-size: 12px;
	letter-spacing: 0.08em;
}

.footer .menu {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 0 12px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.footer nav a {
	display: flex;
	align-items: center;
	min-height: 44px;
	border-bottom: 1px solid #475053;
	font-size: 12px;
}

.footer-policy {
	display: flex;
	gap: 18px;
	margin-top: 38px;
	padding-top: 18px;
	border-top: 1px solid #3f484a;
	color: #abb4b6;
	font-size: 11px;
}

.footer-policy strong {
	color: #fff;
	white-space: nowrap;
}

.footer-bottom {
	display: flex;
	justify-content: flex-end;
	margin-top: 28px;
	color: #99a2a5;
	font-size: 10px;
}

.alignwide,
.alignfull {
	max-width: 100%;
	width: 100%;
	margin-left: 0;
	transform: none;
}

.entry-content .wp-block-button__link {
	text-decoration: none;
}

.entry-content .wp-block-button:not(.is-style-outline) > .wp-block-button__link:not(.has-text-color),
.entry-content .wp-block-button:not(.is-style-outline) > .wp-block-button__link:not(.has-text-color):visited,
.entry-content .wp-block-button:not(.is-style-outline) > .wp-block-button__link:not(.has-text-color):hover,
.entry-content .wp-block-button:not(.is-style-outline) > .wp-block-button__link:not(.has-text-color):focus {
	color: #fff;
}

@media (max-width: 1080px) {
	.category-nav,
	.header-actions {
		display: none;
	}

	.menu-button {
		display: flex;
		margin-left: auto;
	}

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

	.policy-detail > div {
		grid-template-columns: 1fr 1fr;
	}

	.policy-detail > div > span {
		grid-column: 1 / -1;
	}
}

@media (max-width: 760px) {
	html {
		scroll-padding-top: 78px;
	}

	.wrap {
		width: calc(100% - 30px);
	}

	.header-main {
		min-height: 66px;
	}

	.mobile-menu {
		top: 66px;
	}

	.logo strong {
		font-size: 22px;
	}

	.logo span {
		display: none;
	}

	.home-intro {
		display: block;
		padding-block: 46px 38px;
	}

	.home-intro h1 {
		font-size: clamp(37px, 11.5vw, 52px);
	}

	.home-intro > p {
		margin-top: 25px;
		font-size: 15px;
	}

	.latest-section {
		padding-bottom: 62px;
	}

	.section-head {
		display: block;
		margin-bottom: 20px;
	}

	.section-head > a,
	.section-head > p {
		margin-top: 8px;
	}

	.card-grid,
	.topic-grid {
		grid-template-columns: 1fr;
	}

	.card-grid {
		gap: 20px;
	}

	.card-copy {
		padding: 15px 16px;
	}

	.card-copy h2 {
		font-size: 18px;
	}

	.topic-section {
		padding-block: 55px 62px;
	}

	.topic-grid > a {
		grid-template-columns: 68px minmax(0, 1fr) 30px;
		gap: 14px;
		min-height: 118px;
		padding: 18px 14px;
		border-radius: 16px;
	}

	.topic-card__visual {
		width: 68px;
		height: 68px;
		border-radius: 19px;
	}

	.topic-card__visual svg {
		width: 42px;
		height: 42px;
	}

	.topic-grid h3 {
		font-size: 17px;
	}

	.topic-grid p {
		margin-top: 4px;
		font-size: 12px;
	}

	.topic-card__number {
		top: 10px;
		right: 12px;
		font-size: 10px;
	}

	.topic-card__arrow {
		width: 30px;
		height: 30px;
	}

	.service-cta {
		padding-block: 45px;
	}

	.service-cta > div {
		display: block;
	}

	.service-cta h2 {
		font-size: 25px;
	}

	.service-cta a {
		width: 100%;
		margin-top: 22px;
	}

	.policy-detail {
		padding-block: 52px;
	}

	.policy-detail > div {
		display: block;
	}

	.policy-detail h2 {
		margin: 7px 0 17px;
	}

	.breadcrumb {
		margin-bottom: 18px;
	}

	.breadcrumb ol {
		font-size: 11px;
	}

	.listing-main {
		padding-block: 28px 62px;
	}

	.listing-header {
		margin-bottom: 26px;
	}

	.article-hero {
		padding-top: 26px;
	}

	.article-hero h1 {
		font-size: 31px;
	}

	.article-hero .lead {
		font-size: 16px;
	}

	.hero-image {
		margin-top: 27px;
	}

	.hero-image img {
		border-radius: 9px;
	}

	.article-body,
	.page-main .entry-content {
		width: calc(100% - 30px);
		margin-block: 40px 66px;
		font-size: 17px;
		line-height: 1.9;
	}

	.entry-content h2 {
		font-size: 24px;
	}

	.entry-content h3 {
		font-size: 20px;
	}

	.article-toc {
		margin-bottom: 38px;
		padding: 20px 18px;
	}

	.post-navigation > div {
		grid-template-columns: 1fr;
		padding-block: 14px;
	}

	.post-navigation__next {
		text-align: left;
	}

	.related {
		padding-block: 46px 60px;
	}

	.discovery-panel {
		display: block;
		margin-top: 45px;
		padding: 24px 18px;
	}

	.discovery-panel .search-form {
		margin: 18px 0;
	}

	.related + .wrap .discovery-panel {
		margin-bottom: 55px;
	}

	.footer-top {
		display: block;
	}

	.footer-group {
		margin-top: 27px;
	}

	.footer .menu {
		grid-template-columns: 1fr;
	}

	.footer-policy {
		display: block;
	}

	.footer-policy span {
		display: block;
		margin-top: 6px;
	}

	.error-code {
		font-size: 100px;
	}
}

@media (max-width: 390px) {
	.wrap {
		width: calc(100% - 24px);
	}

	.mobile-menu .category-menu {
		grid-template-columns: 1fr;
	}

	.article-body,
	.page-main .entry-content {
		width: calc(100% - 24px);
	}

	.search-form input {
		padding-inline: 10px;
		font-size: 13px;
	}

	.search-form button {
		min-width: 66px;
		padding-inline: 12px;
	}
}

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

	* {
		transition: none !important;
	}
}
