@font-face {
	font-family: "CatVillage Xiaowei";
	src: url("../assets/fonts/zcool-xiaowei-logo.otf") format("opentype");
	font-style: normal;
	font-weight: 400;
	font-display: swap;
}

:root {
	--ink: #262729;
	--muted: #82847e;
	--paper: #fffdf4;
	--cream: #fff8e9;
	--mint: #caf6df;
	--mint-deep: #68c691;
	--orange: #ff9a37;
	--orange-deep: #ef7f19;
	--green: #004a24;
	--white: #fff;
	--line: #eee9dc;
	--main: 1200px;
	--shadow: 0 14px 28px rgba(79, 55, 23, 0.09);
	--radius: 22px;
	--font: "CatVillage Xiaowei", sans-serif;
}

* {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	color: var(--ink);
	background: var(--paper);
	font: 15px/1.7 var(--font);
	overflow-x: hidden;
}

a {
	color: inherit;
	text-decoration: none;
}

img {
	display: block;
	max-width: 100%;
}

button {
	font: inherit;
	cursor: pointer;
	border: 0;
}

.main {
	width: min(var(--main), 90%);
	margin: 0 auto;
}

.img_100 {
	overflow: hidden;
}

.img_100 img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.line-clamp2,
.line-clamp3 {
	display: -webkit-box;
	overflow: hidden;
	-webkit-box-orient: vertical;
}

.line-clamp2 {
	-webkit-line-clamp: 2;
}

.line-clamp3 {
	-webkit-line-clamp: 3;
}

.SiteHeader {
	height: 68px;
	background: rgba(255, 253, 244, 0.96);
	position: relative;
	z-index: 10;
}

.headerInner {
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.brand {
	width: 114px;
	height: 44px;
	display: flex;
	align-items: center;
}

.brand img {
	width: 110px;
	height: 42px;
	object-fit: contain;
}

.siteNav {
	display: flex;
	align-items: stretch;
	height: 100%;
	gap: 34px;
}

.siteNav a {
	display: flex;
	align-items: center;
	position: relative;
	color: #333;
	font-size: 13px;
}

.siteNav a.active {
	color: var(--orange-deep);
}

.siteNav a.active:after {
	content: "";
	position: absolute;
	bottom: 13px;
	left: 50%;
	width: 18px;
	height: 2px;
	background: var(--orange);
	transform: translateX(-50%);
}

.menuButton {
	display: none;
	background: transparent;
	padding: 8px;
}

.menuButton span {
	display: block;
	width: 24px;
	height: 2px;
	background: var(--green);
	margin: 5px 0;
}

.PageHero,
.HomeHero {
	height: 450px;
	background-position: center;
	background-size: cover;
}

.HomeHero {
	background-image:
		linear-gradient(90deg, rgba(18, 17, 9, 0.38), rgba(18, 17, 9, 0.05)),
		url("../assets/images/home-hero.png");
}

.PageHero {
	height: 420px;
	background-image:
		linear-gradient(90deg, rgba(15, 15, 10, 0.38), rgba(15, 15, 10, 0.05)),
		url("../assets/images/inner-hero.png");
}

.heroCopy {
	padding-top: 102px;
	color: #fff;
	max-width: 1200px;
}

.HomeHero .heroCopy {
	padding-top: 86px;
}

.heroCopy .eyebrow {
	font-size: 12px;
	letter-spacing: 2px;
	margin: 0 0 8px;
}

.heroCopy h1 {
	font-size: 46px;
	line-height: 1.3;
	letter-spacing: 2px;
	margin: 0 0 10px;
	font-weight: 700;
}

.PageHero h1 {
	font-size: 38px;
}

.heroCopy > p {
	font-size: 20px;
	letter-spacing: 1px;
	margin: 0 0 14px;
}

.heroCopy > span {
	display: block;
	width: 450px;
	max-width: 100%;
	font-size: 13px;
	line-height: 1.8;
}

.heroActions {
	display: flex;
	gap: 12px;
	margin-top: 20px;
}

.orangeButton,
.outlineButton {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 42px;
	padding: 0 26px;
	border-radius: 23px;
	font-size: 13px;
	font-weight: 700;
	transition:
		transform 0.25s ease,
		box-shadow 0.25s ease,
		background 0.25s ease;
}

.orangeButton {
	background: var(--orange);
	color: #fff;
	box-shadow: 0 5px 14px rgba(239, 127, 25, 0.24);
}

.outlineButton {
	color: #fff;
	border: 1px solid rgba(255, 255, 255, 0.7);
	background: rgba(41, 39, 33, 0.22);
}

.orangeButton:hover,
.outlineButton:hover {
	transform: translateY(-3px);
	box-shadow: 0 10px 18px rgba(70, 43, 14, 0.2);
}

.sectionHeading {
	text-align: center;
	margin-bottom: 38px;
}

.sectionHeading p,
.sectionKicker {
	margin: 0 0 5px;
	color: #9b9e88;
	font-size: 11px;
	letter-spacing: 2px;
}

.sectionHeading h2,
.AboutVillage h2 {
	font-size: 28px;
	line-height: 1.3;
	letter-spacing: 2px;
	margin: 0 0 9px;
}

.sectionHeading span {
	color: var(--muted);
	font-size: 13px;
}

.AboutVillage {
	padding: 90px 0 70px;
	background: #fff;
}

.aboutGrid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 80px;
	align-items: center;
}

.aboutText h2 {
	color: #2c6045;
}

.aboutText > p {
	max-width: 530px;
	color: #666;
	margin: 20px 0 25px;
}

.aboutImage {
	height: 360px;
}

.numberList {
	display: flex;
	gap: 16px;
}

.numberList div {
	flex: 1;
	text-align: center;
	background: #fff5e9;
	padding: 17px 8px;
}

.numberList b {
	display: block;
	color: var(--orange-deep);
	font-size: 24px;
}

.numberList span {
	color: #6f6d64;
	font-size: 12px;
}

.HomeCats {
	padding: 75px 0;
	background: #fff5eb;
}

.homeCatGrid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 18px;
}

.homeCatGrid .item,
.homeDiaryGrid .item {
	display: block;
	background: #fff;
	border-radius: 10px;
	overflow: hidden;
	box-shadow: 0 6px 18px rgba(77, 49, 25, 0.08);
	transition:
		transform 0.25s ease,
		box-shadow 0.25s ease;
}

.homeCatGrid .item:hover,
.homeDiaryGrid .item:hover {
	transform: translateY(-6px);
	box-shadow: var(--shadow);
}

.homeCatGrid .img_100 {
	height: 180px;
}

.homeCatGrid .img_100 img,
.homeDiaryGrid .img_100 img,
.archiveGrid .img_100 img,
.diaryList .img_100 img {
	transition: transform 0.35s ease;
}

.homeCatGrid .item:hover .img_100 img,
.homeDiaryGrid .item:hover .img_100 img,
.archiveGrid .item:hover .img_100 img,
.diaryList .item:hover .img_100 img {
	transform: scale(1.04);
}

.homeCatGrid .body {
	padding: 15px 18px 17px;
}

.homeCatGrid b {
	font-size: 17px;
}

.homeCatGrid .body p {
	margin: 5px 0 0;
	color: #777;
	font-size: 12px;
}

.tag {
	float: right;
	padding: 2px 8px;
	border-radius: 10px;
	font-size: 11px;
}

.tag.peach {
	background: #fff0df;
	color: #ed9b47;
}

.tag.green {
	background: #def7e8;
	color: #4ea978;
}

.HomePeople {
	padding: 75px 0;
	background: #fff;
}

.peopleGrid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 22px;
}

.peopleGrid .item {
	text-align: center;
	padding: 8px 13px 15px;
	border-right: 1px solid var(--line);
	transition: transform 0.25s ease;
}

.peopleGrid .item:hover {
	transform: translateY(-4px);
}

.avatar {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 86px;
	height: 86px;
	border-radius: 50%;
	margin: 0 auto 10px;
	background: #f4d4b4;
	color: #6d4330;
	font-size: 28px;
	font-weight: 700;
	box-shadow: inset 0 0 0 6px #fff;
}

.peopleGrid b,
.peopleGrid em {
	display: block;
}

.peopleGrid em {
	font-style: normal;
	color: var(--orange-deep);
	font-size: 12px;
}

.peopleGrid p {
	color: #777;
	margin: 7px 0 0;
	font-size: 12px;
}

.HomeDiary {
	padding: 76px 0;
	background: #eafff3;
}

.homeDiaryGrid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
}

.homeDiaryGrid .img_100 {
	height: 174px;
}

.homeDiaryGrid .body {
	padding: 16px 18px 18px;
}

.homeDiaryGrid small {
	display: block;
	color: #9c9b8e;
	font-size: 11px;
}

.homeDiaryGrid b {
	display: block;
	margin: 4px 0;
	font-size: 17px;
}

.homeDiaryGrid p {
	color: #777;
	font-size: 12px;
	margin: 0 0 10px;
}

.homeDiaryGrid .body span {
	color: var(--orange-deep);
	font-size: 12px;
}

.HomeShop {
	padding: 76px 0 94px;
	background: #fff;
}

.homeProductGrid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 20px;
}

.homeProductGrid .item {
	text-align: center;
	transition: transform 0.25s ease;
}

.homeProductGrid .item:hover {
	transform: translateY(-5px);
}

.homeProductGrid img {
	width: 100%;
	height: 165px;
	object-fit: cover;
	margin-bottom: 9px;
}

.homeProductGrid b,
.homeProductGrid span {
	display: block;
}

.homeProductGrid b {
	font-size: 15px;
}

.homeProductGrid span {
	font-size: 12px;
	color: #888;
}

.crumb {
	margin: 0 0 28px;
	color: #8b887d;
	font-size: 12px;
}

.CatArchive,
.DiaryArchive,
.PeopleArchive,
.ShopPage,
.VolunteerPage,
.DetailPage {
	min-height: 800px;
	padding: 54px 0 90px;
	background:
		radial-gradient(
			circle at 12% 28%,
			rgba(255, 234, 190, 0.25),
			transparent 21%
		),
		var(--paper);
}

.archiveGrid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 34px 27px;
}

.archiveGrid .item {
	display: block;
	overflow: hidden;
	background: #fff;
	border-radius: 24px;
	box-shadow: var(--shadow);
	transition:
		transform 0.25s ease,
		box-shadow 0.25s ease;
}

.archiveGrid .item:hover {
	transform: translateY(-6px);
	box-shadow: 0 20px 30px rgba(83, 62, 38, 0.15);
}

.archiveGrid .img_100 {
	height: 235px;
}

.archiveGrid .body {
	padding: 13px 18px 18px;
	position: relative;
}

.archiveGrid small {
	display: block;
	color: #a5a199;
	font-size: 12px;
}

.archiveGrid b {
	display: block;
	font-size: 18px;
	line-height: 1.5;
}

.orangeSmall {
	position: absolute;
	right: 16px;
	bottom: 18px;
	border-radius: 16px;
	background: #fff1d4;
	color: #d99744;
	padding: 3px 10px;
	font-size: 11px;
}

.catFilter {
	grid-column: span 2;
	border-radius: 25px;
	background: linear-gradient(135deg, #d5f8e6, #b8f2d2);
	padding: 30px;
}

.catFilter h3 {
	font-size: 28px;
	margin: 0 0 8px;
}

.catFilter p {
	margin: 0 0 10px;
	color: #557968;
}

.filterList {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin-bottom: 32px;
}

.filterList button {
	min-width: 100px;
	padding: 8px 15px;
	border-radius: 20px;
	background: #edfff3;
	color: #5b866e;
}

.filterList button.active {
	background: var(--mint-deep);
	color: #fff;
}

.catFilter .orangeButton {
	width: 100%;
}

.detailLayout,
.peopleLayout {
	display: grid;
	grid-template-columns: 220px minmax(0, 1fr);
	gap: 45px;
	align-items: start;
}

.DetailPage .main > h1 {
	font-size: 28px;
	text-align: center;
	margin: 0 0 44px;
}

.sideMenu {
	padding: 30px 17px;
	border-radius: 18px;
	background: rgba(255, 247, 228, 0.72);
	display: flex;
	flex-direction: column;
	gap: 2px;
}

.sideMenu a {
	padding: 15px 17px;
	font-size: 17px;
	font-weight: 700;
	text-align: center;
	border-bottom: 1px solid #f0eadc;
}

.sideMenu a:last-child {
	border: 0;
}

.sideMenu a.active {
	border-radius: 20px;
	background: var(--orange);
	color: #fff;
	box-shadow: 0 7px 14px rgba(239, 127, 25, 0.2);
}

.detailCard {
	background: #fff;
	border-radius: 26px;
	overflow: hidden;
	box-shadow: var(--shadow);
}

.detailImage {
	/* height: 342px; */
	margin: 14px;
	border-radius: 16px;
}

.detailBody {
	padding: 8px 38px 36px;
	position: relative;
}

.labelBadge {
	display: inline-block;
	padding: 6px 14px;
	border-radius: 20px;
	color: #d69a4b;
	background: #fff3d7;
	font-size: 12px;
}

.detailBody > .labelBadge {
	position: absolute;
	right: 38px;
	top: 18px;
}

.detailBody h2 {
	margin: 14px 0 0;
	font-size: 24px;
}

.detailBody small {
	color: #9d9b91;
	font-size: 12px;
}

.detailBody dl {
	margin: 28px 0 18px;
}

.detailBody dt,
.detailBody dd {
	margin: 0 0 8px;
	font-size: 17px;
}

.detailBody dd {
	font-weight: 700;
}

.detailBody p {
	color: #74716b;
	margin: 0 0 16px;
}

.detailBody > a {
	color: #d39a48;
	font-weight: 700;
}

.careCard {
	margin-top: 42px;
	padding: 35px 42px;
	background: linear-gradient(135deg, #ddfaeb, #bdf4d9);
	border-radius: 26px;
	box-shadow: var(--shadow);
}

.careCard > span {
	color: #788a7f;
	font-size: 17px;
}

.careCard h2 {
	font-size: 21px;
	margin: 5px 0 19px;
}

.careCard p {
	color: #63736a;
	margin: 4px 0 26px;
}

.careCard .orangeButton {
	width: 100%;
	font-size: 18px;
}

.CoreValues {
	padding-top: 80px;
}

.CoreValues h2 {
	font-size: 28px;
	margin: 0 0 26px;
}

.valueGrid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 20px;
}

.valueGrid a {
	display: block;
	border-radius: 16px;
	overflow: hidden;
	background: #fff;
	box-shadow: var(--shadow);
	text-align: center;
	transition: transform 0.25s ease;
}

.valueGrid a:hover {
	transform: translateY(-5px);
}

.valueGrid img {
	width: 100%;
	height: 170px;
	object-fit: cover;
}

.valueGrid b,
.valueGrid span {
	display: block;
}

.valueGrid b {
	padding-top: 12px;
	font-size: 17px;
}

.valueGrid span {
	padding: 3px 0 14px;
	color: #899288;
	font-size: 12px;
}

.diaryList {
	display: flex;
	flex-direction: column;
	gap: 30px;
	width: min(900px, 100%);
	margin: auto;
}

.diaryList .item {
	display: grid;
	grid-template-columns: 340px 1fr;
	gap: 28px;
	padding: 20px;
	background: #fff;
	border-radius: 25px;
	box-shadow: var(--shadow);
	transition:
		transform 0.25s ease,
		box-shadow 0.25s ease;
}

.diaryList .item:hover {
	transform: translateY(-5px);
	box-shadow: 0 20px 30px rgba(83, 62, 38, 0.15);
}

.diaryList .item.mint {
	background: linear-gradient(135deg, #e1faec, #c4f5db);
}

.diaryList .img_100 {
	height: 235px;
	border-radius: 18px;
}

.diaryList .body {
	padding: 5px 10px 4px 0;
	position: relative;
}

.diaryList small {
	color: #9c9a93;
	font-size: 16px;
}

.diaryList .labelBadge {
	float: right;
}

.diaryList h2 {
	font-size: 24px;
	line-height: 1.35;
	margin: 13px 0 8px;
}

.diaryList h3 {
	margin: 5px 0;
	font-size: 17px;
}

.diaryList p {
	margin: 0 0 18px;
	color: #75736d;
}

.diaryList b {
	display: block;
	padding: 9px 15px;
	border-radius: 22px;
	background: var(--orange);
	color: #fff;
	text-align: center;
	font-size: 16px;
}

.memberList {
	margin-top: 50px;
	display: flex;
	flex-direction: column;
	gap: 24px;
}

.memberList .item {
	display: grid;
	grid-template-columns: 120px 1fr;
	gap: 23px;
	padding: 26px;
	background: #fff;
	border-radius: 23px;
	box-shadow: var(--shadow);
}

.memberList .item.mint {
	background: linear-gradient(135deg, #e0f9eb, #c7f6df);
}

.memberList .avatar {
	width: 110px;
	height: 110px;
	margin: 0;
	font-size: 35px;
}

.memberList h2 {
	margin: 0;
	font-size: 28px;
}

.memberList small {
	color: #96938a;
}

.memberList h3 {
	font-size: 18px;
	margin: 10px 0;
}

.memberList p {
	color: #74716b;
	margin: 0 0 12px;
}

.memberList a {
	float: right;
	background: var(--orange);
	color: #fff;
	padding: 7px 35px;
	border-radius: 18px;
	font-weight: 700;
}

.shopPanel {
	padding: 32px;
	border-radius: 30px;
	background: linear-gradient(135deg, #dff8e9, #b8f0d1);
}

.shopTabs {
	display: flex;
	justify-content: space-around;
	gap: 15px;
	margin: 0 0 26px;
}

.shopTabs button {
	padding: 8px 22px;
	border-radius: 20px;
	background: transparent;
	color: #4f765f;
	font-size: 17px;
}

.shopTabs button.active {
	color: #fff;
	background: var(--mint-deep);
}

.shopGrid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 22px;
}

.shopGrid .item {
	overflow: hidden;
	border-radius: 18px;
	background: #fff;
	box-shadow: 0 8px 16px rgba(64, 87, 72, 0.1);
	transition: transform 0.25s ease;
}

.shopGrid .item:hover {
	transform: translateY(-5px);
}

.shopGrid .item.is-hidden {
	display: none;
}

.shopGrid .item > img {
	width: 100%;
	height: 220px;
	object-fit: cover;
}

.shopGrid .body {
	padding: 13px 15px 16px;
}

.shopGrid h3 {
	font-size: 20px;
	margin: 0;
}

.shopGrid small {
	display: block;
	color: #aaa79e;
}

.shopGrid b {
	color: #d99744;
}

.shopGrid button {
	float: right;
	padding: 7px 14px;
	border-radius: 17px;
	background: var(--orange);
	color: #fff;
	font-size: 12px;
}

.SiteFooter {
	padding: 55px 0 15px;
	background: var(--green);
	color: #fff;
}

.footerInner {
	display: flex;
	justify-content: space-between;
	gap: 30px;
	padding-bottom: 34px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.footerInner b {
	font-size: 14px;
}

.footerInner p {
	margin: 6px 0;
	color: #d4e4d9;
	font-size: 12px;
}

.footerLinks {
	display: flex;
	gap: 70px;
}

.footerLinks div {
	display: flex;
	flex-direction: column;
	gap: 5px;
}

.footerLinks a {
	color: #d4e4d9;
	font-size: 12px;
}

.footerLinks a:hover {
	color: #ffbd78;
}

.footerCopy {
	margin: 16px 0 0;
	color: rgba(255, 255, 255, 0.45);
	font-size: 11px;
	text-align: center;
}

@media only screen and (min-width: 768px) and (max-width: 1199px) {
	:root {
		--main: 92%;
	}

	.aboutbanner {
		height: 70vh !important;
	}

	.homeCatGrid,
	.homeDiaryGrid {
		gap: 15px;
	}

	.archiveGrid {
		gap: 20px;
	}

	.detailLayout,
	.peopleLayout {
		gap: 25px;
	}

	.sideMenu {
		padding: 18px 10px;
	}

	.detailImage {
		/* height: 280px; */
	}
}

@media only screen and (max-width: 767px) {
	.main {
		width: 92%;
	}

	.SiteHeader {
		height: 60px;
	}

	.brand {
		width: 96px;
	}

	.brand img {
		width: 95px;
		height: 36px;
	}

	.menuButton {
		display: block;
	}

	.siteNav {
		display: none;
		position: absolute;
		top: 60px;
		left: 0;
		right: 0;
		height: auto;
		padding: 10px 4%;
		background: #fffdf4;
		box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
		flex-direction: column;
		gap: 0;
	}

	.siteNav a {
		padding: 11px 0;
	}

	.siteNav a.active:after {
		display: none;
	}

	.HomeHero,
	.PageHero {
		height: 370px;
	}

	.HomeHero .heroCopy,
	.heroCopy {
		padding-top: 70px;
	}

	.heroCopy h1,
	.PageHero h1 {
		font-size: 30px;
	}

	.heroCopy > p {
		font-size: 16px;
	}

	.heroCopy > span {
		font-size: 12px;
	}

	.orangeButton,
	.outlineButton {
		min-height: 39px;
		padding: 0 15px;
		font-size: 12px;
	}

	.AboutVillage,
	.HomeCats,
	.HomePeople,
	.HomeDiary,
	.HomeShop {
		padding: 50px 0;
	}

	.aboutGrid {
		grid-template-columns: 1fr;
		gap: 28px;
	}

	.aboutImage {
		height: 245px;
	}

	.sectionHeading {
		margin-bottom: 25px;
	}

	.sectionHeading h2,
	.AboutVillage h2 {
		font-size: 23px;
	}

	.homeCatGrid,
	.homeDiaryGrid {
		grid-template-columns: 1fr 1fr;
		gap: 12px;
	}

	.homeCatGrid .img_100,
	.homeDiaryGrid .img_100 {
		height: 135px;
	}

	.homeCatGrid .body,
	.homeDiaryGrid .body {
		padding: 11px;
	}

	.homeCatGrid b,
	.homeDiaryGrid b {
		font-size: 15px;
	}

	.homeCatGrid .body p,
	.homeDiaryGrid p {
		font-size: 11px;
	}

	.peopleGrid {
		grid-template-columns: 1fr 1fr;
		gap: 20px;
	}

	.peopleGrid .item {
		border: 0;
	}

	.homeProductGrid {
		grid-template-columns: 1fr 1fr;
		gap: 18px;
	}

	.homeProductGrid img {
		height: 135px;
	}

	.CatArchive,
	.DiaryArchive,
	.PeopleArchive,
	.ShopPage,
	.VolunteerPage,
	.DetailPage {
		padding: 35px 0 55px;
	}

	.crumb {
		margin-bottom: 20px;
	}

	.archiveGrid {
		grid-template-columns: 1fr 1fr;
		gap: 15px;
	}

	.archiveGrid .img_100 {
		height: 155px;
	}

	.archiveGrid .body {
		padding: 10px 12px 14px;
	}

	.archiveGrid b {
		font-size: 15px;
	}

	.orangeSmall {
		display: none;
	}

	.catFilter {
		grid-column: span 2;
		padding: 22px;
	}

	.detailLayout,
	.peopleLayout {
		grid-template-columns: 1fr;
		gap: 22px;
	}

	.DetailPage .main > h1 {
		font-size: 23px;
		margin-bottom: 26px;
	}

	.sideMenu {
		display: grid;
		grid-template-columns: repeat(3, 1fr);
		padding: 10px;
		gap: 5px;
	}

	.sideMenu a {
		padding: 8px 4px;
		font-size: 12px;
		border: 0;
	}

	.detailImage {
		/* height: 220px; */
		margin: 10px;
	}

	.detailBody {
		padding: 8px 22px 25px;
	}

	.detailBody > .labelBadge {
		right: 22px;
		top: 13px;
	}

	.detailBody h2 {
		font-size: 19px;
	}

	.detailBody dt,
	.detailBody dd {
		font-size: 15px;
	}

	.careCard {
		margin-top: 24px;
		padding: 25px;
	}

	.careCard h2 {
		font-size: 18px;
	}

	.valueGrid {
		grid-template-columns: 1fr 1fr;
		gap: 12px;
	}

	.valueGrid img {
		height: 125px;
	}

	.diaryList {
		gap: 16px;
	}

	.diaryList .item {
		grid-template-columns: 1fr;
		gap: 14px;
		padding: 13px;
	}

	.diaryList .img_100 {
		height: 200px;
	}

	.diaryList .body {
		padding: 0;
	}

	.diaryList h2 {
		font-size: 19px;
	}

	.memberList {
		gap: 15px;
	}

	.memberList .item {
		grid-template-columns: 74px 1fr;
		gap: 15px;
		padding: 18px;
	}

	.memberList .avatar {
		width: 70px;
		height: 70px;
		font-size: 24px;
	}

	.memberList h2 {
		font-size: 21px;
	}

	.memberList h3 {
		font-size: 16px;
	}

	.memberList a {
		float: none;
		display: inline-block;
		padding: 5px 18px;
		font-size: 12px;
	}

	.shopPanel {
		padding: 15px;
	}

	.shopTabs {
		justify-content: flex-start;
		overflow-x: auto;
		margin-bottom: 18px;
	}

	.shopTabs button {
		flex: 0 0 auto;
		padding: 7px 15px;
		font-size: 14px;
	}

	.shopGrid {
		grid-template-columns: 1fr 1fr;
		gap: 12px;
	}

	.shopGrid .item > img {
		height: 150px;
	}

	.shopGrid .body {
		padding: 10px;
	}

	.shopGrid h3 {
		font-size: 16px;
	}

	.shopGrid button {
		float: none;
		margin-top: 8px;
	}

	.footerInner {
		display: block;
	}

	.footerLinks {
		margin-top: 22px;
		gap: 45px;
	}

	.SiteFooter {
		padding-top: 38px;
	}

	.HomeCats .item:hover,
	.homeDiaryGrid .item:hover,
	.archiveGrid .item:hover,
	.diaryList .item:hover,
	.shopGrid .item:hover,
	.valueGrid a:hover {
		transform: none;
	}
}

.brand {
	width: 148px;
	gap: 6px;
}

.brand img {
	width: 42px;
	height: 42px;
}

.brand:after {
	content: "";
	display: block;
	width: 82px;
	height: 31px;
	background: url("../assets/images/logo-wordmark.png") center/contain
		no-repeat;
}

@media only screen and (max-width: 767px) {
	.aboutbanner {
		height: 70vh !important;
	}
	.brand {
		width: 127px;
	}

	.brand img {
		width: 34px;
		height: 35px;
	}

	.brand:after {
		width: 72px;
		height: 26px;
	}
}

.PageHero {
	background-image:
		linear-gradient(90deg, rgba(15, 15, 10, 0.34), rgba(15, 15, 10, 0.06)),
		url("../assets/images/inner-hero-cats.png");
	background-position: center 48%;
}

.VolunteerPage .volunteerCare {
	width: calc((100% - 265px) / 2 + 265px);
	margin-left: auto;
}

.shopGrid .item button.is-added {
	background: var(--mint-deep);
}

.externalTag,
.purchasePending {
	display: inline-block;
	float: right;
	padding: 7px 14px;
	border-radius: 17px;
	background: var(--mint-deep);
	color: #fff;
	font-size: 12px;
}

.purchasePending {
	background: #aaa79e;
}

.VolunteerApply {
	min-height: 0;
	padding: 72px 0 110px;
	background:
		radial-gradient(
			circle at 12% 28%,
			rgba(255, 234, 190, 0.25),
			transparent 21%
		),
		var(--paper);
}

.applicationCard {
	width: min(760px, 100%);
	margin: auto;
	padding: 38px;
	background: #fff;
	border-radius: 26px;
	box-shadow: var(--shadow);
}

.applicationCard h2 {
	margin: 0 0 7px;
	font-size: 30px;
}

.applicationCard > p {
	margin: 0 0 26px;
	color: var(--muted);
}

.volunteerSubmit {
	width: 100%;
	border: 0;
}

.detailNav {
	display: flex;
	justify-content: space-between;
	gap: 18px;
	margin-top: 30px;
	padding: 20px 0;
	border-top: 1px solid var(--line);
}

.detailNav a {
	color: var(--orange-deep);
}

.contactLayout {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 45px;
	align-items: start;
}

.contactInfo,
.contactForm {
	padding: 34px;
	background: #fff;
	border-radius: 22px;
	box-shadow: var(--shadow);
}

.contactInfo h2,
.contactForm h2 {
	margin: 0 0 20px;
	font-size: 25px;
}

.contactInfo p {
	margin: 8px 0;
	color: var(--muted);
}

.contactInfo img {
	width: 100%;
	height: 260px;
	object-fit: cover;
	border-radius: 14px;
	margin-bottom: 25px;
}

.contactFields {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 18px;
}

.contactField {
	display: flex;
	flex-direction: column;
	gap: 7px;
}

.contactField.full {
	grid-column: 1/-1;
}

.contactField label {
	font-size: 14px;
}

.contactField input,
.contactField select,
.contactField textarea {
	width: 100%;
	padding: 11px 13px;
	border: 1px solid var(--line);
	border-radius: 8px;
	background: #fffdf4;
	color: var(--ink);
	font: inherit;
}

.contactField textarea {
	min-height: 132px;
	resize: vertical;
}

.contactSubmit {
	width: 100%;
	border: 0;
}

.formNotice {
	min-height: 24px;
	margin: 12px 0 0;
	text-align: center;
	color: var(--muted);
}

.formNotice.error {
	color: #c75c4b;
}

.NotFound {
	min-height: 100vh;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	background: var(--paper);
}

.NotFound h1 {
	font-size: 80px;
	color: var(--orange);
	margin: 0 0 10px;
}

.NotFound p {
	color: var(--muted);
	margin: 0 0 30px;
}

.NotFound .orangeButton {
	display: inline-flex;
}

.avatar {
	overflow: hidden;
}

.avatar img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

@media only screen and (max-width: 767px) {
	.VolunteerPage .volunteerCare {
		width: 100%;
	}
}

@media only screen and (max-width: 767px) {
	.detailNav {
		flex-wrap: wrap;
		font-size: 12px;
	}

	.contactLayout {
		grid-template-columns: 1fr;
		gap: 20px;
	}

	.contactInfo,
	.contactForm {
		padding: 22px;
	}

	.contactFields {
		grid-template-columns: 1fr;
	}

	.contactField.full {
		grid-column: auto;
	}
}

@media only screen and (max-width: 767px) {
	.VolunteerApply {
		padding: 42px 0 60px;
	}

	.applicationCard {
		padding: 24px;
	}

	.applicationCard h2 {
		font-size: 24px;
	}
}

/* PC dimensions calibrated against the 1920px final artwork. */
@media only screen and (min-width: 1200px) {
	:root {
		--main: 1540px;
		--radius: 28px;
	}

	.SiteHeader {
		height: 76px;
	}

	.siteNav {
		gap: 48px;
	}

	.siteNav a {
		font-size: 15px;
	}

	.HomeHero,
	.PageHero {
		height: 720px;
	}

	.HomeHero .heroCopy,
	.PageHero .heroCopy {
		padding-top: 190px;
	}

	.heroCopy {
		max-width: 1540px;
	}

	.heroCopy h1 {
		font-size: 58px;
	}

	.PageHero h1 {
		font-size: 54px;
	}

	.heroCopy > p {
		font-size: 26px;
	}

	.heroCopy > span {
		width: 690px;
		font-size: 16px;
	}

	.heroActions {
		margin-top: 28px;
		gap: 18px;
	}

	.orangeButton,
	.outlineButton {
		min-height: 54px;
		padding: 0 34px;
		font-size: 15px;
	}

	.AboutVillage {
		padding: 150px 0 120px;
	}

	.aboutGrid {
		gap: 120px;
	}

	.aboutImage {
		height: 560px;
	}

	.AboutVillage h2,
	.sectionHeading h2 {
		font-size: 38px;
	}

	.aboutText > p {
		font-size: 17px;
		max-width: 690px;
	}

	.numberList div {
		padding: 25px 10px;
	}

	.numberList b {
		font-size: 30px;
	}

	.HomeCats,
	.HomePeople,
	.HomeDiary,
	.HomeShop {
		padding: 120px 0;
	}

	.sectionHeading {
		margin-bottom: 55px;
	}

	.sectionHeading span {
		font-size: 15px;
	}

	.homeCatGrid,
	.homeDiaryGrid {
		gap: 28px;
	}

	.homeCatGrid .img_100 {
		height: 280px;
	}

	.homeCatGrid .body {
		padding: 22px 25px 25px;
	}

	.HomePeople {
		padding-top: 135px;
		padding-bottom: 135px;
	}

	.avatar {
		width: 110px;
		height: 110px;
	}

	.homeDiaryGrid .img_100 {
		height: 270px;
	}

	.homeDiaryGrid .body {
		padding: 22px 25px 27px;
	}

	.homeProductGrid {
		gap: 28px;
	}

	.homeProductGrid img {
		height: 260px;
	}

	.CatArchive,
	.DiaryArchive,
	.PeopleArchive,
	.ShopPage,
	.VolunteerPage,
	.DetailPage {
		padding: 105px 0 150px;
	}

	.crumb {
		margin-bottom: 65px;
		font-size: 14px;
	}

	.CatArchive .sectionHeading,
	.DiaryArchive .sectionHeading {
		margin-bottom: 75px;
	}

	.archiveGrid {
		gap: 80px 38px;
	}

	.archiveGrid .item {
		border-radius: 30px;
	}

	.archiveGrid .img_100 {
		height: 720px;
	}

	.archiveGrid .body {
		min-height: 120px;
		padding: 24px 28px 28px;
	}

	.archiveGrid small {
		font-size: 16px;
	}

	.archiveGrid b {
		font-size: 25px;
	}

	.orangeSmall {
		right: 24px;
		bottom: 32px;
		font-size: 14px;
		padding: 6px 15px;
	}

	.catFilter {
		min-height: 840px;
		padding: 52px;
		border-radius: 34px;
	}

	.catFilter h3 {
		font-size: 38px;
	}

	.catFilter p {
		font-size: 18px;
	}

	.filterList {
		gap: 18px;
		margin-bottom: 55px;
	}

	.filterList button {
		min-width: 145px;
		padding: 13px 20px;
		font-size: 17px;
	}

	.detailLayout,
	.peopleLayout {
		grid-template-columns: 340px minmax(0, 1fr);
		gap: 70px;
	}

	.DetailPage .main > h1 {
		font-size: 38px;
		margin-bottom: 75px;
	}

	.sideMenu {
		padding: 45px 25px;
	}

	.sideMenu a {
		padding: 24px 20px;
		font-size: 23px;
	}

	.detailImage {
		/* height: 610px; */
		margin: 24px;
	}

	.detailBody {
		padding: 15px 55px 55px;
	}

	.detailBody h2 {
		font-size: 32px;
	}

	.detailBody dt,
	.detailBody dd {
		font-size: 22px;
	}

	.detailBody p {
		font-size: 17px;
	}

	.careCard {
		margin-top: 65px;
		padding: 55px 60px;
	}

	.careCard > span {
		font-size: 22px;
	}

	.careCard h2 {
		font-size: 28px;
	}

	.careCard p {
		font-size: 17px;
	}

	.memberList {
		gap: 38px;
	}

	.memberList .item {
		grid-template-columns: 170px 1fr;
		gap: 35px;
		padding: 38px;
	}

	.memberList .avatar {
		width: 160px;
		height: 160px;
	}

	.memberList h2 {
		font-size: 36px;
	}

	.memberList h3 {
		font-size: 24px;
	}

	.diaryList {
		width: min(1540px, 100%);
		gap: 58px;
	}

	.diaryList .item {
		grid-template-columns: 600px 1fr;
		gap: 45px;
		padding: 32px;
	}

	.diaryList .img_100 {
		height: 500px;
	}

	.diaryList h2 {
		font-size: 32px;
	}

	.diaryList p {
		font-size: 17px;
	}

	.CoreValues {
		padding-top: 130px;
	}

	.CoreValues h2 {
		font-size: 38px;
	}

	.valueGrid {
		gap: 28px;
	}

	.valueGrid img {
		height: 270px;
	}

	.valueGrid b {
		font-size: 24px;
	}

	.shopPanel {
		padding: 55px;
	}

	.shopTabs {
		margin-bottom: 45px;
	}

	.shopTabs button {
		font-size: 22px;
	}

	.shopGrid {
		gap: 42px 34px;
	}

	.shopGrid .item > img {
		height: 500px;
	}

	.shopGrid .body {
		min-height: 150px;
		padding: 22px 24px 28px;
	}

	.shopGrid h3 {
		font-size: 27px;
	}

	.shopGrid button {
		padding: 10px 20px;
		font-size: 15px;
	}

	.SiteFooter {
		padding-top: 75px;
		min-height: 330px;
	}

	.homePage .AboutVillage,
	.homePage .HomeCats,
	.homePage .HomePeople,
	.homePage .HomeDiary,
	.homePage .HomeShop {
		padding-top: 150px;
		padding-bottom: 150px;
	}

	.DetailPage .detailBody {
		min-height: 1340px;
	}

	.DetailPage .careCard {
		min-height: 1000px;
		margin-top: 125px;
	}

	.DetailPage {
		padding-bottom: 220px;
	}

	.PeopleArchive .memberList .item {
		min-height: 560px;
		align-items: center;
	}

	.PeopleArchive .memberList .item:first-child {
		min-height: 760px;
	}

	.VolunteerPage .detailBody {
		min-height: 650px;
	}

	.VolunteerPage .careCard {
		min-height: 820px;
		padding-top: 90px;
	}

	.VolunteerPage {
		padding-bottom: 220px;
	}

	.DiaryArchive .diaryList .img_100 {
		height: 610px;
	}

	.DiaryArchive .diaryList {
		gap: 70px;
	}

	.ShopPage .shopGrid .item > img {
		height: 650px;
	}

	.ShopPage .shopGrid .body {
		min-height: 180px;
	}

	.ShopPage .shopGrid {
		row-gap: 55px;
	}

	.ShopPage {
		padding-bottom: 220px;
	}

	.homePage .HomeShop {
		padding-bottom: 485px;
	}

	.CatArchive {
		padding-bottom: 325px;
	}

	.PeopleArchive {
		padding-bottom: 728px;
	}

	.DiaryArchive {
		padding-bottom: 332px;
	}

	.VolunteerPage {
		padding-bottom: 654px;
	}
}

.VolunteerApply {
	position: relative;
	padding: 88px 0 132px;
	background: linear-gradient(180deg, #fff9ec 0, #fffdf4 52%, #effcef 100%);
}

.VolunteerApply > .main {
	position: relative;
	z-index: 1;
}

.VolunteerApply .crumb {
	width: min(920px, 100%);
	margin: 0 auto 24px;
}

.applicationCard {
	width: min(920px, 100%);
	margin: auto;
	padding: 0;
	overflow: hidden;
	border: 1px solid rgba(85, 115, 83, 0.12);
	border-radius: 30px;
	background: #fff;
	box-shadow: 0 22px 54px rgba(74, 72, 43, 0.12);
}

.applicationCardHeader {
	padding: 42px 56px 36px;
	background: linear-gradient(128deg, #e8faee 0%, #d5f5e2 56%, #fff2d9 100%);
	border-bottom: 1px solid rgba(85, 115, 83, 0.12);
}

.applicationCardHeader h2 {
	margin: 5px 0 8px;
	color: var(--green);
	font-size: 34px;
	letter-spacing: 1px;
}

.applicationCardHeader > p:last-child {
	max-width: 560px;
	margin: 0;
	color: #63816d;
	font-size: 15px;
}

.applicationKicker {
	margin: 0;
	color: var(--orange-deep);
	font-size: 11px;
	letter-spacing: 2.4px;
}

.applicationFormBody {
	padding: 38px 56px 46px;
}

.applicationCard .contactFields {
	gap: 23px 26px;
}

.applicationCard .contactField {
	gap: 9px;
}

.applicationCard .contactField label {
	color: #45604d;
	font-size: 15px;
}

.applicationCard .contactField input,
.applicationCard .contactField select,
.applicationCard .contactField textarea {
	padding: 14px 15px;
	border: 1px solid #dfe8df;
	border-radius: 12px;
	background: #fffefa;
	box-shadow: inset 0 1px 1px rgba(30, 78, 47, 0.03);
	transition:
		border-color 0.2s ease,
		box-shadow 0.2s ease,
		background 0.2s ease;
}

.applicationCard .contactField textarea {
	min-height: 155px;
}

.applicationCard .contactField input:focus,
.applicationCard .contactField select:focus,
.applicationCard .contactField textarea:focus {
	outline: 0;
	border-color: var(--mint-deep);
	background: #fff;
	box-shadow: 0 0 0 4px rgba(104, 198, 145, 0.14);
}

.applicationCard .volunteerSubmit {
	min-height: 52px;
	margin-top: 32px;
	font-size: 16px;
	letter-spacing: 1px;
}

.applicationCard .formNotice {
	margin: 12px 0 0;
}

@media only screen and (max-width: 767px) {
	.VolunteerApply {
		padding: 42px 0 62px;
	}

	.VolunteerApply .crumb {
		margin-bottom: 18px;
	}

	.applicationCard {
		border-radius: 22px;
	}

	.applicationCardHeader {
		padding: 28px 23px 25px;
	}

	.applicationCardHeader h2 {
		font-size: 27px;
	}

	.applicationCardHeader > p:last-child {
		font-size: 13px;
	}

	.applicationFormBody {
		padding: 26px 23px 30px;
	}

	.applicationCard .contactFields {
		gap: 17px;
	}

	.applicationCard .contactField input,
	.applicationCard .contactField select,
	.applicationCard .contactField textarea {
		padding: 12px;
	}

	.applicationCard .volunteerSubmit {
		min-height: 48px;
		margin-top: 25px;
	}
}

.filterList a {
	min-width: 100px;
	padding: 8px 15px;
	border-radius: 20px;
	background: #edfff3;
	color: #5b866e;
	text-align: center;
}

.filterList a.active {
	background: var(--mint-deep);
	color: #fff;
}

@media only screen and (min-width: 1200px) {
	.filterList a {
		min-width: 145px;
		padding: 13px 20px;
		font-size: 17px;
	}
}

/* Friendly motion and the supplied font's original light stroke weight. */
body *,
body *::before,
body *::after {
	font-weight: 400 !important;
}

.orangeButton,
.outlineButton,
.shopGrid button,
.diaryList b,
.memberList a {
	cursor: pointer;
	position: relative;
	overflow: hidden;
}

.orangeButton::after,
.outlineButton::after,
.shopGrid button::after,
.diaryList b::after,
.memberList a::after {
	content: "";
	position: absolute;
	top: -60%;
	left: -45%;
	width: 28%;
	height: 220%;
	opacity: 0;
	background: rgba(255, 255, 255, 0.42);
	transform: rotate(22deg);
	transition:
		left 0.65s ease,
		opacity 0.25s ease;
}

.orangeButton:hover::after,
.outlineButton:hover::after,
.shopGrid button:hover::after,
.diaryList b:hover::after,
.memberList a:hover::after {
	left: 120%;
	opacity: 1;
}

.CatArchive::before,
.DiaryArchive::before,
.PeopleArchive::before,
.ShopPage::before,
.VolunteerPage::before,
.DetailPage::before {
	animation: catFloat 7s ease-in-out infinite alternate;
}

.archiveGrid .item:nth-child(3n + 2),
.shopGrid .item:nth-child(3n + 2),
.homeCatGrid .item:nth-child(3n + 2) {
	animation-delay: -1.4s;
}

.archiveGrid .item:hover img,
.shopGrid .item:hover > img,
.homeCatGrid .item:hover img {
	transform: scale(1.035) rotate(0.35deg);
}

.is-reveal {
	opacity: 0;
	transform: translateY(16px);
	transition:
		opacity 0.65s ease,
		transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
}

.is-reveal.is-visible {
	opacity: 1;
	transform: translateY(0);
}

@keyframes catFloat {
	from {
		transform: translate3d(0, -4px, 0);
	}

	to {
		transform: translate3d(0, 10px, 0);
	}
}

@media (prefers-reduced-motion: reduce) {
	html {
		scroll-behavior: auto;
	}

	.CatArchive::before,
	.DiaryArchive::before,
	.PeopleArchive::before,
	.ShopPage::before,
	.VolunteerPage::before,
	.DetailPage::before {
		animation: none;
	}

	.is-reveal,
	.is-reveal.is-visible {
		opacity: 1;
		transform: none;
		transition: none;
	}

	.orangeButton::after,
	.outlineButton::after,
	.shopGrid button::after,
	.diaryList b::after,
	.memberList a::after {
		display: none;
	}
}

@media only screen and (max-width: 767px) {
	.is-reveal,
	.is-reveal.is-visible {
		transform: none;
	}

	.CatArchive::before,
	.DiaryArchive::before,
	.PeopleArchive::before,
	.ShopPage::before,
	.VolunteerPage::before,
	.DetailPage::before {
		animation: none;
	}
}

.buttonCatFollower {
	position: fixed;
	z-index: 9999;
	width: 54px;
	height: 48px;
	pointer-events: none;
	opacity: 0;
	visibility: hidden;
	background: url("../assets/fig-source/902b6c81df8c7f4a119bba63f8aed4a72b84db27")
		center/contain no-repeat;
	transform: translate(8px, 10px) scale(0.7) rotate(-7deg);
	transition:
		opacity 0.18s ease,
		transform 0.24s cubic-bezier(0.22, 1, 0.36, 1),
		visibility 0.18s ease;
	filter: drop-shadow(0 5px 7px rgba(91, 57, 23, 0.18));
}

.buttonCatFollower.is-visible {
	opacity: 1;
	visibility: visible;
	transform: translate(14px, 14px) scale(1) rotate(4deg);
}

@media (hover: none), (pointer: coarse) {
	.buttonCatFollower {
		display: none;
	}
}

@media (prefers-reduced-motion: reduce) {
	.buttonCatFollower {
		transition: none;
		transform: translate(14px, 14px);
	}
}

/* Final-artwork correction: natural content flow and extracted Figma textures. */
.CatArchive,
.DiaryArchive,
.PeopleArchive,
.ShopPage,
.VolunteerPage,
.DetailPage {
	position: relative;
	min-height: 0;
	overflow: hidden;
	background-color: #fffdf4;
	background-image: url("../assets/fig-source/fa90dd1d32c1b42765aba00e3450a794240e901d");
	background-repeat: repeat-y;
	background-position: center top;
	background-size: 100% auto;
}

.CatArchive::before,
.DiaryArchive::before,
.PeopleArchive::before,
.ShopPage::before,
.VolunteerPage::before,
.DetailPage::before {
	content: "";
	position: absolute;
	inset: 0;
	pointer-events: none;
	opacity: 0.22;
	background-image:
		url("../assets/fig-source/1390c01a27fd68643fbf0115b3a54718bef5f08a"),
		url("../assets/fig-source/055aa7bef1583d7c0106359716bba3a7f0270cc8"),
		url("../assets/fig-source/1390c01a27fd68643fbf0115b3a54718bef5f08a"),
		url("../assets/fig-source/055aa7bef1583d7c0106359716bba3a7f0270cc8"),
		url("../assets/fig-source/1390c01a27fd68643fbf0115b3a54718bef5f08a");
	background-repeat: no-repeat;
	background-position:
		8% 18%,
		92% 31%,
		13% 54%,
		88% 70%,
		22% 88%;
	background-size:
		84px auto,
		48px auto,
		72px auto,
		42px auto,
		92px auto;
}

.CatArchive > .main,
.DiaryArchive > .main,
.PeopleArchive > .main,
.ShopPage > .main,
.VolunteerPage > .main,
.DetailPage > .main {
	position: relative;
	z-index: 1;
}

@media only screen and (min-width: 1200px) {
	.CatArchive,
	.DiaryArchive,
	.PeopleArchive,
	.ShopPage,
	.VolunteerPage,
	.DetailPage {
		padding: 105px 0 160px;
	}

	.homePage .AboutVillage,
	.homePage .HomeCats,
	.homePage .HomePeople,
	.homePage .HomeDiary,
	.homePage .HomeShop {
		padding: 120px 0;
	}

	.homePage .HomeShop {
		padding-bottom: 140px;
	}

	.archiveGrid .img_100 {
		height: auto;
		aspect-ratio: 1/1.12;
	}

	.archiveGrid .body {
		min-height: 0;
		padding: 24px 28px 30px;
	}

	.catFilter {
		min-height: 0;
		align-self: stretch;
	}

	.detailLayout,
	.peopleLayout {
		grid-template-columns: 420px minmax(0, 1fr);
		gap: 80px;
	}

	.detailImage {
		height: auto;
		/* aspect-ratio: 1.29/1 */
	}

	.DetailPage .detailBody,
	.VolunteerPage .detailBody {
		min-height: 0;
		padding: 20px 55px 60px;
	}

	.DetailPage .careCard,
	.VolunteerPage .careCard {
		min-height: 0;
		margin-top: 65px;
		padding: 55px 60px;
	}

	.PeopleArchive .memberList .item,
	.PeopleArchive .memberList .item:first-child {
		min-height: 0;
		align-items: start;
	}

	.diaryList .img_100,
	.DiaryArchive .diaryList .img_100 {
		height: auto;
		aspect-ratio: 1.28/1;
	}

	.shopGrid .item > img,
	.ShopPage .shopGrid .item > img {
		height: auto;
		aspect-ratio: 1/1.02;
	}

	.shopGrid .body,
	.ShopPage .shopGrid .body {
		min-height: 0;
	}

	.SiteFooter {
		min-height: 0;
	}
}

@media only screen and (min-width: 768px) {
	.detailLayout > .sideMenu {
		position: sticky;
		top: 24px;
	}

	.sideMenu a:not(.active):hover {
		border-radius: 14px;
		background: #fff;
		color: var(--orange-deep);
	}
}

.CatArchive .catFilter {
	min-height: 0;
	margin-bottom: 42px;
	padding: 25px 30px;
}

.CatArchive .catFilter h3 {
	font-size: 25px;
	margin-bottom: 3px;
}

.CatArchive .catFilter p {
	margin-bottom: 8px;
}

.CatArchive .filterList {
	margin-bottom: 0;
}

.ShopPage .externalTag {
	display: block;
	float: none;
	margin-top: 14px;
	padding: 10px 12px;
	border-radius: 10px;
	background: var(--orange);
	color: #fff;
	text-align: center;
	transition:
		background 0.2s ease,
		transform 0.2s ease;
}

.ShopPage .item[href]:hover .externalTag {
	background: var(--orange-deep);
	transform: translateY(-1px);
}

.ShopPage .purchasePending {
	display: block;
	float: none;
	margin-top: 14px;
	padding: 0;
	background: transparent;
	color: #9a988f;
	font-size: 12px;
	text-align: left;
}

@media only screen and (max-width: 767px) {
	.CatArchive .catFilter {
		margin-bottom: 24px;
		padding: 20px;
	}

	.sideMenu a:not(.active):hover {
		background: transparent;
		color: inherit;
	}

	.ShopPage .externalTag {
		margin-top: 10px;
		padding: 8px 10px;
	}
}

@media only screen and (min-width: 768px) and (max-width: 999px) {
	.DiaryArchive .detailLayout {
		grid-template-columns: 170px minmax(0, 1fr);
		gap: 20px;
	}

	.DiaryArchive .sideMenu {
		padding: 15px 7px;
	}

	.DiaryArchive .sideMenu a {
		padding: 10px 4px;
		font-size: 13px;
	}

	.DiaryArchive .diaryList {
		width: 100%;
		gap: 20px;
	}

	.DiaryArchive .diaryList .item {
		grid-template-columns: 180px minmax(0, 1fr);
		gap: 16px;
		padding: 14px;
	}

	.DiaryArchive .diaryList .img_100 {
		height: auto;
		aspect-ratio: 1/1;
	}

	.DiaryArchive .diaryList h2 {
		margin: 8px 0 5px;
		font-size: 19px;
	}

	.DiaryArchive .diaryList p {
		margin-bottom: 12px;
		font-size: 13px;
	}

	.DiaryArchive .diaryList b {
		padding: 7px 11px;
		font-size: 13px;
	}
}

@media only screen and (min-width: 1000px) and (max-width: 1599px) {
	.DiaryArchive .detailLayout {
		grid-template-columns: 220px minmax(0, 1fr);
		gap: 32px;
	}

	.DiaryArchive .sideMenu {
		padding: 20px 10px;
	}

	.DiaryArchive .sideMenu a {
		padding: 13px 8px;
		font-size: 15px;
	}

	.DiaryArchive .diaryList {
		width: 100%;
		gap: 30px;
	}

	.DiaryArchive .diaryList .item {
		grid-template-columns: 300px minmax(0, 1fr);
		gap: 26px;
		padding: 20px;
	}

	.DiaryArchive .diaryList .img_100 {
		height: auto;
		aspect-ratio: 1.22/1;
	}

	.DiaryArchive .diaryList h2 {
		font-size: 25px;
	}

	.DiaryArchive .diaryList p {
		font-size: 15px;
	}
}

@media only screen and (min-width: 1600px) {
	.DiaryArchive .detailLayout {
		grid-template-columns: 260px minmax(0, 1fr);
		gap: 56px;
	}

	.DiaryArchive .sideMenu {
		padding: 28px 16px;
	}

	.DiaryArchive .sideMenu a {
		padding: 17px 10px;
		font-size: 18px;
	}
}

@media only screen and (min-width: 768px) and (max-width: 999px) {
	.detailLayout,
	.peopleLayout {
		grid-template-columns: 170px minmax(0, 1fr);
		gap: 20px;
	}

	.sideMenu {
		padding: 15px 7px;
	}

	.sideMenu a {
		padding: 10px 4px;
		font-size: 13px;
	}
}

@media only screen and (min-width: 1000px) and (max-width: 1599px) {
	.detailLayout,
	.peopleLayout {
		grid-template-columns: 220px minmax(0, 1fr);
		gap: 32px;
	}

	.sideMenu {
		padding: 20px 10px;
	}

	.sideMenu a {
		padding: 13px 8px;
		font-size: 15px;
	}
}

@media only screen and (min-width: 1600px) {
	.detailLayout,
	.peopleLayout {
		grid-template-columns: 260px minmax(0, 1fr);
		gap: 56px;
	}

	.sideMenu {
		padding: 28px 16px;
	}

	.sideMenu a {
		padding: 17px 10px;
		font-size: 18px;
	}
}

.HomeHero,
.PageHero {
	position: relative;
	overflow: hidden;
	isolation: isolate;
}

.heroVideo {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	z-index: 0;
}

.hasBannerVideo:after {
	content: "";
	position: absolute;
	inset: 0;
	z-index: 1;
	background: linear-gradient(
		90deg,
		rgba(18, 17, 9, 0.42),
		rgba(18, 17, 9, 0.08)
	);
}

.PageHero.hasBannerVideo:after {
	background: linear-gradient(
		90deg,
		rgba(15, 15, 10, 0.42),
		rgba(15, 15, 10, 0.08)
	);
}

.heroCopy {
	position: relative;
	z-index: 2;
}

@media only screen and (max-width: 767px) {
	.heroVideo {
		display: none;
	}

	.hasBannerVideo:after {
		display: none;
	}
}

.homePage .SiteHeader {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	background: transparent;
	z-index: 10;
}

.homePage .siteNav a {
	color: #fff;
	text-shadow: 0 1px 5px rgba(0, 0, 0, 0.2);
}

.homePage .siteNav a.active {
	color: #fff;
}

.homePage .siteNav a.active:after {
	background: #fff;
}

.homePage .menuButton span {
	background: #fff;
}

.homePage .HomeHero {
	height: 100vh;
	min-height: 680px;
}

.homePage .HomeHero .heroCopy {
	padding-top: 190px;
}

@media only screen and (max-width: 767px) {
	.homePage .HomeHero {
		height: 100svh;
		min-height: 560px;
	}

	.homePage .HomeHero .heroCopy {
		padding-top: 136px;
	}

	.homePage .siteNav {
		background: #fffdf4;
	}

	.homePage .siteNav a {
		color: var(--ink);
		text-shadow: none;
	}

	.homePage .siteNav a.active {
		color: var(--orange-deep);
	}

	.homePage .menuButton.is-open span {
		background: var(--green);
	}
}

@media (hover: hover) {
	.siteNav a:hover {
		color: var(--orange-deep);
	}

	.siteNav a:hover:after {
		content: "";
		position: absolute;
		bottom: 13px;
		left: 50%;
		width: 18px;
		height: 2px;
		background: var(--orange);
		transform: translateX(-50%);
	}

	.homePage .siteNav a:hover {
		color: #ffe0b4;
	}

	.homePage .siteNav a:hover:after {
		background: #ffe0b4;
	}
}

body {
	color: #3d342d;
	line-height: 1.8;
}

.sectionHeading p,
.sectionKicker {
	color: #d9934c;
	letter-spacing: 2px;
}

.sectionHeading h2,
.AboutVillage h2 {
	font-size: 32px;
	color: #3d342d;
	font-weight: 700;
}

.AboutVillage h2 {
	color: #3d342d;
}

.AboutVillage,
.HomePeople,
.HomeShop {
	background: #fffdf8;
}

.HomeCats {
	background: #fff5e9;
}

.HomeDiary {
	background: #fff9ef;
}

.aboutText > p,
.sectionHeading span {
	font-size: 15px;
	line-height: 1.8;
}

.sectionTextLink {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	margin-top: 20px;
	color: var(--orange-deep);
	font-size: 14px;
	font-weight: 700;
}

.sectionTextLink span {
	color: inherit;
	font-size: 18px;
	transition: transform 0.3s ease;
}

.sectionTextLink:hover span {
	transform: translateX(5px);
}

.tag.green,
.tag.peach {
	background: #fff1dc;
	color: #a86227;
}

.homeCatGrid .item,
.homeDiaryGrid .item,
.archiveGrid .item,
.diaryList .item,
.shopGrid .item,
.homeProductGrid .item,
.peopleGrid .item {
	transition:
		transform 0.32s cubic-bezier(0.34, 1.56, 0.64, 1),
		box-shadow 0.32s ease;
}

.homeCatGrid .item:hover,
.homeDiaryGrid .item:hover,
.archiveGrid .item:hover,
.diaryList .item:hover,
.shopGrid .item:hover,
.homeProductGrid .item:hover {
	transform: translateY(-4px);
	box-shadow: 0 18px 32px rgba(92, 62, 38, 0.16);
}

.homeCatGrid .item:hover img,
.homeDiaryGrid .item:hover img,
.archiveGrid .item:hover img,
.diaryList .item:hover img,
.shopGrid .item:hover > img {
	transform: scale(1.03);
}

.HomeDiary small,
.diaryList small {
	color: var(--orange-deep);
	font-weight: 700;
}

.homeDiaryGrid .body span {
	color: var(--orange-deep);
}

.homeProductGrid .productPrice {
	display: block;
	margin: 3px 0;
	color: var(--orange-deep);
	font-size: 14px;
	font-style: normal;
	font-weight: 700;
}

.homeProductGrid .productPrice p {
	margin: 0;
}

.shopPanel {
	background: #fff;
	border: 1px solid #f0e4d3;
	box-shadow: 0 12px 28px rgba(105, 73, 39, 0.06);
}

.shopTabs {
	justify-content: flex-start;
	border-bottom: 1px solid #f0e4d3;
	padding-bottom: 18px;
}

.shopTabs button {
	background: #fff5e9;
	color: #8d5a31;
	transition:
		background 0.25s ease,
		color 0.25s ease,
		transform 0.25s ease;
}

.shopTabs button.active,
.shopTabs button:hover {
	background: var(--orange);
	color: #fff;
	transform: translateY(-1px);
}

.shopGrid .body small {
	display: inline-block;
	margin: 6px 0;
	padding: 2px 8px;
	border-radius: 10px;
	background: #fff1dc;
	color: #a86227;
}

.sideMenu {
	border: 1px solid #f0e4d3;
	border-radius: 8px;
	background: #fffdf8;
}

.sideMenu a {
	border-bottom-color: #f1e6d8;
}

.sideMenu a.active {
	border-radius: 8px;
}

.PeopleArchive .memberList {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 24px;
}

.PeopleArchive .memberList .item {
	grid-template-columns: 94px minmax(0, 1fr);
	gap: 18px;
	height: 100%;
	transition:
		transform 0.32s cubic-bezier(0.34, 1.56, 0.64, 1),
		box-shadow 0.32s ease;
}

.PeopleArchive .memberList .item:hover {
	transform: translateY(-4px);
	box-shadow: 0 18px 32px rgba(92, 62, 38, 0.16);
}

.PeopleArchive .memberList .avatar {
	width: 88px;
	height: 88px;
	background: #f7dfbd;
}

.PeopleArchive .memberList h2 {
	font-size: 23px;
}

.PeopleArchive .memberList h3 {
	margin: 5px 0 8px;
	color: var(--orange-deep);
	font-size: 14px;
	font-weight: 700;
}

.SiteFooter {
	background: #5d4037;
}

.footerInner {
	border-bottom-color: rgba(255, 239, 216, 0.2);
}

.footerInner p,
.footerLinks a {
	color: #f4dfc7;
}

.footerLinks a:hover {
	color: #ffbd78;
}

.footerCopy {
	color: rgba(255, 239, 216, 0.58);
}

@media only screen and (max-width: 767px) {
	.sectionHeading h2,
	.AboutVillage h2 {
		font-size: 26px;
	}

	.sectionTextLink {
		margin-top: 14px;
	}

	.PeopleArchive .memberList {
		grid-template-columns: 1fr;
	}

	.PeopleArchive .memberList .item {
		grid-template-columns: 74px minmax(0, 1fr);
	}

	.PeopleArchive .memberList .avatar {
		width: 70px;
		height: 70px;
	}

	.homeProductGrid .productPrice {
		font-size: 13px;
	}
}

.peopleCta {
	margin: 44px 0 0;
	padding: 34px 40px;
	border-radius: 16px;
	background: #eafff3;
	text-align: center;
}

.peopleCta p {
	margin: 0 0 16px;
	color: #4f765f;
	font-size: 17px;
}

.diaryFilters {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 10px;
	margin: -12px 0 38px;
}

.diaryFilters a {
	padding: 8px 16px;
	border-radius: 18px;
	background: #f6f1e9;
	color: #76523a;
	font-size: 14px;
	transition:
		background 0.25s ease,
		color 0.25s ease,
		transform 0.25s ease;
}

.diaryFilters a:hover,
.diaryFilters a.active {
	background: var(--orange);
	color: #fff;
	transform: translateY(-1px);
}

.orangeButton:hover {
	background: var(--orange-deep);
	transform: scale(1.02);
	box-shadow: 0 10px 20px rgba(180, 88, 21, 0.26);
}

@media only screen and (max-width: 767px) {
	.peopleCta {
		margin-top: 28px;
		padding: 28px 20px;
	}

	.peopleCta p {
		font-size: 15px;
	}

	.diaryFilters {
		justify-content: flex-start;
		margin: -8px 0 24px;
		overflow-x: auto;
		flex-wrap: nowrap;
		padding-bottom: 4px;
	}

	.diaryFilters a {
		flex: 0 0 auto;
	}

	.orangeButton:hover {
		transform: none;
	}
}

.menuButton span {
	background: var(--orange);
}

.crumb {
	padding: 9px 14px;
	border-radius: 6px;
	background: #f7f2ea;
	color: #756b62;
	font-size: 13px;
}

.crumb a:hover {
	color: var(--orange-deep);
}

.catFilter,
.CatArchive .catFilter {
	padding: 22px 24px;
	border: 1px solid #f0e2d1;
	border-radius: 12px;
	background: #fff;
	box-shadow: 0 8px 18px rgba(105, 73, 39, 0.05);
}

.catFilterTop {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	margin-bottom: 16px;
}

.CatArchive .catFilter h3 {
	margin: 0;
	color: #4b3a2d;
	font-size: 22px;
}

.filterList {
	gap: 9px;
}

.filterList a {
	min-width: 82px;
	padding: 7px 14px;
	background: #f5f1eb;
	color: #6e6259;
}

.filterList a:hover,
.filterList a.active {
	background: var(--orange);
	color: #fff;
}

.catSearch {
	display: flex;
	width: min(360px, 100%);
}

.catSearch input {
	min-width: 0;
	flex: 1;
	padding: 9px 12px;
	border: 1px solid #eadac7;
	border-radius: 8px 0 0 8px;
	background: #fffdf9;
	font: inherit;
}

.catSearch input:focus {
	outline: 0;
	border-color: var(--orange);
	box-shadow: 0 0 0 3px rgba(255, 154, 55, 0.12);
}

.catSearch button {
	padding: 0 18px;
	border-radius: 0 8px 8px 0;
	background: var(--orange);
	color: #fff;
}

.catSearch button:hover {
	background: var(--orange-deep);
}

.careCard,
.diaryList .item.mint,
.memberList .item.mint {
	background: linear-gradient(135deg, #fff6e8, #ffe5c4);
}

.careCard > span,
.careCard p {
	color: #765f4d;
}

.applicationCardHeader {
	background: linear-gradient(128deg, #fff6e8 0%, #ffe9cc 60%, #fffaf2 100%);
	border-bottom-color: #f0dfcc;
}

.applicationCardHeader h2 {
	color: #4a382b;
}

.applicationCardHeader > p:last-child,
.applicationCard .contactField label {
	color: #765f4d;
}

.applicationCard .contactField input:focus,
.applicationCard .contactField select:focus,
.applicationCard .contactField textarea:focus {
	border-color: var(--orange);
	box-shadow: 0 0 0 4px rgba(255, 154, 55, 0.13);
}

.homePage .outlineButton {
	border-color: rgba(255, 255, 255, 0.9);
	background: rgba(255, 255, 255, 0.9);
	color: #6a4025;
}

.homePage .outlineButton:hover {
	background: #fff;
	color: var(--orange-deep);
}

.hasBannerVideo:after {
	background:
		linear-gradient(
			180deg,
			rgba(0, 0, 0, 0.2) 0%,
			rgba(0, 0, 0, 0.16) 70%,
			rgba(32, 21, 12, 0.4) 100%
		),
		linear-gradient(90deg, rgba(18, 17, 9, 0.38), rgba(18, 17, 9, 0.04));
}

.PageHero.hasBannerVideo:after {
	background: linear-gradient(
		90deg,
		rgba(15, 15, 10, 0.42),
		rgba(15, 15, 10, 0.08)
	);
}

.labelBadge {
	background: #fff1dc;
	color: #995c27;
}

@media only screen and (max-width: 767px) {
	.catFilterTop {
		display: block;
	}

	.CatArchive .catFilter h3 {
		margin-bottom: 12px;
	}

	.catSearch {
		width: 100%;
	}

	.filterList {
		margin-top: 14px;
	}

	.filterList a {
		min-width: auto;
	}

	.homePage .outlineButton:hover {
		transform: none;
	}
}

.VolunteerApply {
	background: linear-gradient(180deg, #fff8ec 0%, #fffdf8 55%, #fff2df 100%);
}

.applicationCard {
	border-color: #f0dfcc;
}

.homePage .menuButton.is-open span {
	background: var(--orange);
}

.homeCatGrid img,
.homeDiaryGrid img,
.archiveGrid img,
.diaryList img,
.shopGrid .item > img,
.homeProductGrid img,
.peopleGrid img,
.memberList img {
	filter: saturate(0.94) contrast(0.99) sepia(0.035);
}

#main-content {
	scroll-margin-top: 24px;
}

.SiteFooter {
	background: var(--green);
}

.footerInner {
	border-bottom-color: rgba(255, 255, 255, 0.12);
}

.footerInner p,
.footerLinks a {
	color: #d4e4d9;
}

.footerCopy {
	color: rgba(255, 255, 255, 0.45);
}

.shopPanel {
	border: 0;
	background: linear-gradient(135deg, #dff8e9, #b8f0d1);
	box-shadow: none;
}

.shopTabs {
	justify-content: space-around;
	padding-bottom: 0;
	border-bottom: 0;
}

.shopTabs button {
	background: transparent;
	color: #4f765f;
}

.shopTabs button.active,
.shopTabs button:hover {
	background: var(--mint-deep);
	color: #fff;
}

@media only screen and (max-width: 767px) {
	.shopTabs {
		justify-content: flex-start;
	}
}

.CatArchive,
.DiaryArchive,
.PeopleArchive,
.VolunteerPage {
	overflow: visible;
}

@media only screen and (min-width: 768px) {
	.detailLayout > .sideMenu,
	.peopleLayout > .sideMenu {
		position: sticky;
		top: 24px;
		align-self: start;
		height: max-content;
		z-index: 2;
	}
}

.careCard {
	background: linear-gradient(135deg, #ddfaeb, #bdf4d9);
}

.careCard > span {
	color: #788a7f;
}

.careCard p {
	color: #63736a;
}

.sideMenu {
	border: 0;
	border-radius: 18px;
	background: rgba(255, 247, 228, 0.72);
}

.sideMenu a {
	border-bottom-color: #f0eadc;
}

.sideMenu a.active {
	border-radius: 20px;
	background: var(--orange);
	color: #fff;
}

.catFilter,
.CatArchive .catFilter {
	border: 0;
	border-radius: 18px;
	background: rgba(255, 247, 228, 0.72);
	box-shadow: none;
}

.filterList a {
	background: #fffaf0;
	color: #6e6259;
}

.filterList a:hover,
.filterList a.active {
	background: var(--orange);
	color: #fff;
}

.catFilter,
.CatArchive .catFilter {
	background: linear-gradient(135deg, #d5f8e6, #b8f2d2);
}

.filterList a {
	background: #edfff3;
	color: #4f765f;
}

.filterList a:hover,
.filterList a.active {
	background: var(--mint-deep);
	color: #fff;
}

.catSearch button {
	background: var(--mint-deep);
}

.catSearch button:hover {
	background: #4fae78;
}

.catSearch input:focus {
	border-color: var(--mint-deep);
	box-shadow: 0 0 0 3px rgba(104, 198, 145, 0.14);
}

/* Inner-page artwork alignment and support content. */
.pagePagination {
	margin-top: 40px;
	text-align: center;
}

.catArchiveCard .body {
	display: flex;
	min-height: 128px;
	flex-direction: column;
	align-items: flex-start;
}

.catArchiveCard .catCardAction {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 132px;
	margin-top: auto;
	padding: 8px 22px;
	border-radius: 20px;
	background: var(--orange);
	color: #fff;
	font-size: 14px;
}

.CatArchive .catFilter {
	align-self: stretch;
	margin: 0;
}

.DiaryArchive .diaryList {
	width: min(1200px, 100%);
}

.DiaryArchive .diaryMeta {
	margin: 7px 0 0;
	color: #9c9a93;
	font-size: 13px;
}

.PeopleArchive .memberList {
	grid-template-columns: 1fr;
}

.PeopleArchive .memberList .item {
	min-height: 0;
}

.PeopleArchive .memberList .item.mint {
	background: linear-gradient(135deg, #e0f9eb, #c7f6df);
}

.detailRichText,
.supportRichText {
	color: #74716b;
}

.detailRichText p,
.supportRichText p {
	margin: 0 0 14px;
}

.sharePageButton {
	width: 100%;
	border: 0;
	font-size: 18px;
}

.DetailPage .detailBody,
.DetailPage .careCard,
.VolunteerPage .detailBody,
.VolunteerPage .careCard {
	min-height: 0;
}

.DetailPage .detailLayout {
	align-items: start;
}

.DetailPage .detailCard + .careCard {
	margin-top: 54px;
}

.VolunteerPage .volunteerCare {
	width: 100%;
	margin-left: 0;
}

.volunteerApplyLayout {
	display: grid;
	grid-template-columns: 220px minmax(0, 1fr);
	gap: 45px;
	align-items: start;
}

.VolunteerApply .crumb {
	width: 100%;
}

.volunteerApplyLayout .applicationCard {
	width: 100%;
	margin: 0;
}

.SupportPage {
	position: relative;
	min-height: 800px;
	padding: 54px 0 100px;
	background:
		radial-gradient(
			circle at 12% 28%,
			rgba(255, 234, 190, 0.25),
			transparent 21%
		),
		var(--paper);
}

.supportLayout {
	display: grid;
	grid-template-columns: 220px minmax(0, 1fr);
	gap: 45px;
	align-items: start;
}

.supportContent {
	display: flex;
	min-width: 0;
	flex-direction: column;
	gap: 28px;
}

.supportArticle {
	display: grid;
	grid-template-columns: 260px minmax(0, 1fr);
	gap: 30px;
	align-items: center;
	padding: 24px;
	border-radius: 24px;
	background: #fff;
	box-shadow: var(--shadow);
	scroll-margin-top: 24px;
}

.supportArticle.mint {
	background: linear-gradient(135deg, #e6fbef, #caf5dc);
}

.supportArticleImage {
	height: 210px;
	overflow: hidden;
	border-radius: 16px;
}

.supportArticleImage img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.supportArticle h3,
.donationHeading h3 {
	margin: 2px 0 8px;
	font-size: 28px;
}

.supportArticle > div > p {
	margin: 0 0 10px;
	color: #667069;
}

.supportTextLink {
	display: inline-block;
	margin-top: 4px;
	color: var(--orange-deep);
}

.donationSection {
	padding-top: 26px;
	scroll-margin-top: 24px;
}

.donationHeading {
	display: flex;
	align-items: end;
	justify-content: space-between;
	gap: 20px;
	margin-bottom: 22px;
}

.donationHeading p {
	margin: 0;
	color: var(--muted);
}

.donationGrid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 20px;
}

.donationItem {
	overflow: hidden;
	border-radius: 18px;
	background: #fff;
	box-shadow: var(--shadow);
}

.donationItem > img {
	width: 100%;
	height: 190px;
	object-fit: cover;
}

.donationBody {
	padding: 18px;
}

.donationBody h4 {
	margin: 0 0 5px;
	font-size: 21px;
}

.donationBody > p {
	min-height: 51px;
	margin: 0 0 16px;
	color: #777;
	font-size: 13px;
}

.donationNumbers {
	display: flex;
	justify-content: space-between;
	gap: 10px;
	color: #4f765f;
	font-size: 12px;
}

.donationNumbers b {
	color: #4f765f;
}

.donationProgress {
	height: 10px;
	margin: 9px 0 6px;
	overflow: hidden;
	border-radius: 6px;
	background: #e4f2e9;
}

.donationProgress i {
	display: block;
	height: 100%;
	border-radius: inherit;
	background: var(--mint-deep);
}

.donationBody small {
	display: block;
	color: #6d8b79;
}

.donationAction {
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 42px;
	margin-top: 16px;
	border-radius: 21px;
	background: var(--orange);
	color: #fff;
}

.donationAction.is-disabled {
	background: #ece9df;
	color: #98948b;
}

.supportVolunteerCta {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	margin: 45px 0 0 265px;
	padding: 30px 34px;
	border-radius: 18px;
	background: #eafff3;
}

.supportVolunteerCta p {
	margin: 0;
	color: #4f765f;
}

.supportLayout > .sideMenu,
.volunteerApplyLayout > .sideMenu {
	position: sticky;
	top: 24px;
	align-self: start;
	height: max-content;
	z-index: 2;
}

#rescue,
#care,
#adoption,
#donation-guide,
#donation-items {
	scroll-margin-top: 24px;
}

@media only screen and (min-width: 1200px) {
	.CatArchive .archiveGrid {
		grid-template-columns: repeat(3, minmax(0, 1fr));
		gap: 54px 38px;
	}

	.CatArchive .archiveGrid .img_100 {
		height: auto;
		aspect-ratio: 1/1.08;
	}

	.CatArchive .catFilter {
		min-height: 0;
		padding: 46px;
	}

	.PeopleArchive .memberList .item,
	.PeopleArchive .memberList .item:first-child {
		min-height: 0;
	}

	.PeopleArchive .memberList .item {
		grid-template-columns: 170px minmax(0, 1fr);
		padding: 38px;
	}

	.DetailPage .detailBody,
	.DetailPage .careCard,
	.VolunteerPage .detailBody,
	.VolunteerPage .careCard {
		min-height: 0;
	}

	.DetailPage .careCard {
		margin-top: 65px;
	}

	.ShopPage .shopGrid .item > img {
		height: 470px;
	}

	.SupportPage {
		padding: 105px 0 150px;
	}

	.supportLayout,
	.volunteerApplyLayout {
		grid-template-columns: 340px minmax(0, 1fr);
		gap: 70px;
	}

	.supportArticle {
		grid-template-columns: 380px minmax(0, 1fr);
		padding: 32px;
	}

	.supportArticleImage {
		height: 270px;
	}

	.supportArticle h3,
	.donationHeading h3 {
		font-size: 34px;
	}

	.donationItem > img {
		height: 270px;
	}

	.supportVolunteerCta {
		margin-left: 410px;
	}
}

@media only screen and (min-width: 768px) and (max-width: 1199px) {
	.supportLayout,
	.volunteerApplyLayout {
		grid-template-columns: 180px minmax(0, 1fr);
		gap: 24px;
	}

	.supportVolunteerCta {
		margin-left: 204px;
	}
}

@media only screen and (max-width: 1199px) {
	.donationGrid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media only screen and (max-width: 767px) {
	.pagePagination {
		margin-top: 28px;
	}

	.catArchiveCard .body {
		min-height: 105px;
	}

	.catArchiveCard .catCardAction {
		min-width: 0;
		width: 100%;
		margin-top: 12px;
		padding: 7px 10px;
		font-size: 12px;
	}

	.CatArchive .catFilter {
		grid-column: 1/-1;
	}

	.DiaryArchive .diaryMeta {
		font-size: 12px;
	}

	.volunteerApplyLayout,
	.supportLayout {
		grid-template-columns: 1fr;
		gap: 22px;
	}

	.supportLayout > .sideMenu,
	.volunteerApplyLayout > .sideMenu {
		position: static;
	}

	.supportArticle {
		grid-template-columns: 1fr;
		gap: 18px;
		padding: 16px;
		border-radius: 18px;
	}

	.supportArticleImage {
		height: auto;
		aspect-ratio: 16/9;
	}

	.supportArticle h3,
	.donationHeading h3 {
		font-size: 23px;
	}

	.donationHeading {
		display: block;
	}

	.donationHeading p {
		margin-top: 4px;
	}

	.donationGrid {
		grid-template-columns: 1fr;
	}

	.donationItem > img {
		height: auto;
		aspect-ratio: 16/9;
	}

	.donationBody > p {
		min-height: 0;
	}

	.supportVolunteerCta {
		display: block;
		margin: 30px 0 0;
		padding: 24px;
		text-align: center;
	}

	.supportVolunteerCta .orangeButton {
		width: 100%;
		margin-top: 16px;
	}

	.donationItem:hover,
	.supportArticle:hover {
		transform: none;
	}

	.sharePageButton {
		font-size: 15px;
	}
}

.supportNavGrid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 26px;
}

.supportNavCard {
	overflow: hidden;
	border-radius: 20px;
	background: #fff;
	box-shadow: var(--shadow);
	transition:
		transform 0.25s ease,
		box-shadow 0.25s ease;
}

.supportNavCard:hover {
	transform: translateY(-4px);
	box-shadow: 0 18px 32px rgba(92, 62, 38, 0.16);
}

.supportNavCard > img {
	width: 100%;
	height: 220px;
	object-fit: cover;
}

.supportNavCard > div {
	padding: 22px;
}

.supportNavCard h3 {
	margin: 2px 0 8px;
	font-size: 25px;
}

.supportNavCard p {
	min-height: 52px;
	margin: 0 0 18px;
	color: #737169;
}

.supportNavCard b {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 120px;
	padding: 8px 20px;
	border-radius: 20px;
	background: var(--orange);
	color: #fff;
}

.supportSingleContent {
	min-width: 0;
}

.supportSingleCard {
	overflow: hidden;
	border-radius: 26px;
	background: #fff;
	box-shadow: var(--shadow);
}

.supportSingleImage {
	height: 390px;
	margin: 18px;
	overflow: hidden;
	border-radius: 18px;
}

.supportSingleImage img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.supportSingleBody {
	padding: 18px 42px 45px;
}

.supportSingleBody h3 {
	margin: 3px 0 8px;
	font-size: 31px;
}

.supportLead {
	margin: 0 0 24px;
	color: #667069;
	font-size: 17px;
}

.supportSingleBody .supportRichText {
	font-size: 16px;
	line-height: 2;
}

.supportCareList {
	width: 100%;
	margin: 0;
}

.supportCareList .pagePagination,
.donationItemsPage .pagePagination {
	grid-column: 1/-1;
	width: 100%;
}

.donationItemsPage .donationGrid {
	align-items: start;
}

@media only screen and (min-width: 1200px) {
	.supportNavGrid {
		gap: 38px;
	}

	.supportNavCard > img {
		height: 320px;
	}

	.supportNavCard > div {
		padding: 30px;
	}

	.supportNavCard h3 {
		font-size: 31px;
	}

	.supportSingleImage {
		height: 560px;
		margin: 24px;
	}

	.supportSingleBody {
		padding: 24px 55px 60px;
	}

	.supportSingleBody h3 {
		font-size: 38px;
	}

	.supportSingleBody .supportRichText {
		font-size: 18px;
	}

	.donationItemsPage .donationGrid {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}
}

@media only screen and (max-width: 767px) {
	.supportNavGrid {
		grid-template-columns: 1fr;
		gap: 16px;
	}

	.supportNavCard:hover {
		transform: none;
		-webkit-transform: none;
		-moz-transform: none;
		-ms-transform: none;
		-o-transform: none;
	}

	.supportNavCard > img {
		height: auto;
		aspect-ratio: 16/9;
	}

	.supportNavCard > div {
		padding: 18px;
	}

	.supportNavCard h3 {
		font-size: 22px;
	}

	.supportNavCard p {
		min-height: 0;
	}

	.supportSingleImage {
		height: auto;
		aspect-ratio: 16/9;
		margin: 10px;
	}

	.supportSingleBody {
		padding: 16px 22px 28px;
	}

	.supportSingleBody h3 {
		font-size: 25px;
	}

	.supportLead,
	.supportSingleBody .supportRichText {
		font-size: 14px;
	}

	.supportCareList .item {
		grid-template-columns: 1fr;
	}
}

.memberTags {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-top: 15px;
}

.memberTags span {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 82px;
	padding: 5px 14px;
	border-radius: 18px;
	background: var(--mint-deep);
	color: #fff;
	font-size: 12px;
}

.PeopleArchive .memberList .item.featured {
	background: #fff;
}

.valueGrid article {
	overflow: hidden;
	border-radius: 16px;
	background: #fff;
	box-shadow: var(--shadow);
	text-align: center;
}

.valueGrid article img {
	width: 100%;
	height: 170px;
	object-fit: cover;
}

.valueGrid article b,
.valueGrid article span {
	display: block;
}

.valueGrid article b {
	padding-top: 12px;
	font-size: 17px;
}

.valueGrid article span {
	padding: 3px 10px 14px;
	color: #899288;
	font-size: 12px;
}

.VolunteerPage .CoreValues {
	width: 100%;
}

@media only screen and (min-width: 1200px) {
	.PeopleArchive .memberList .item.featured {
		grid-template-columns: 210px minmax(0, 1fr);
		padding: 46px;
	}

	.PeopleArchive .memberList .item.featured .avatar {
		width: 200px;
		height: 200px;
	}

	.PeopleArchive .memberList .item.featured h2 {
		font-size: 39px;
	}

	.memberTags span {
		min-width: 105px;
		padding: 7px 18px;
		font-size: 14px;
	}

	.valueGrid article img {
		height: 270px;
	}

	.valueGrid article b {
		font-size: 24px;
	}
}

@media only screen and (max-width: 767px) {
	.memberTags {
		gap: 6px;
		margin-top: 10px;
	}

	.memberTags span {
		min-width: 0;
		padding: 4px 10px;
		font-size: 11px;
	}

	.PeopleArchive .memberList .item.featured {
		grid-template-columns: 74px minmax(0, 1fr);
	}

	.PeopleArchive .memberList .item.featured .avatar {
		width: 70px;
		height: 70px;
	}

	.valueGrid article img {
		height: 125px;
	}
}
.VolunteerPage .detailLayout {
	display: block;
}
