.wh1 {
	padding: 120px 0;
}
.wh1-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap:82px;
}
.wh1-images {
	position: relative;
	width: 534px;
	height: 515px;
	flex-shrink: 0;
}
.wh1-images img {
	width:100%;
	height:100%;
	position: absolute;
	object-fit: cover;
	border-radius: 4px;
	transition: transform 0.35s cubic-bezier(0.2, 0.9, 0.3, 1.1), z-index 0s;
	will-change: transform, z-index;
}
.wh1-images:hover img {
	z-index: 10;
	transform: scale(1.03) translate(-6px, -6px);
}
.wh1-content {
	flex: 1;
	padding:80px 0;
	border-bottom: 1px solid #e5e5e5;
	border-top: 1px solid #e5e5e5;
}
.wh1-title {
	font-family: 'Noto Serif SC', 'Songti SC', serif;
	font-size: 40px;
	font-weight: 600;
	color: #222222;
	margin-bottom: 40px;
}
.wh1-content p {
	color: #222222;
	font-size: 1rem;
	margin-bottom: 24px;
	text-align: justify;
	line-height:1.6;
}
.wh1-link {
	display: inline-flex;
	align-items: center;
	margin-top: 48px;
	text-decoration: none;
	color: #222222;
	font-size: 18px;
	font-weight: 500;
	transition: opacity 0.3s;
	padding-right:30px;
	background:url(../images/icon_all.svg) no-repeat right center;
	background-size:20px 20px;
}
.wh1-link:hover {
	opacity: 0.6;
}
.wh2 {
	padding: 100px 0;
}
.wh2-title {
	font-family: 'Noto Serif SC', 'Songti SC', serif;
	font-size: 40px;
	font-weight: 600;
	color: #222222;
	margin-bottom:48px;
	text-align: left;
}
.cards-grid {
	display: flex;
	gap: 24px;
}
.card {
	flex: 1;
	padding:40px;
	border-radius: 8px;
	display: flex;
	flex-direction: column;
	transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
	cursor: default;
	background: #D7E3EB;
}
.card:hover {
	color: #fff;
	background: #6B5E43;
	transform: translateY(-12px);
	box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
	color:#ffffff;
}
.card-num {
	font-family: 'Noto Serif SC', serif;
	font-size: 40px;
	font-weight: 400;
	margin-bottom: 24px;
	color: #222222;
}
.card:hover .card-num {
	color: #fff;
}
.card-text {
	font-size:1rem;
	color:#222222;
	line-height: 1.8;
	margin-bottom: 40px;
	flex-grow: 1;
}
.card:hover .card-text {
	color: rgba(255, 255, 255, 0.85);
}
.card-icon {
	width:80px;
	height:80px;
}
.card-icon img {
	width:100%
}
.card-icon img:nth-child(2) {
	display:none
}
.card:hover .card-icon {
	transform: scale(1.1);
	transition: transform 0.3s ease;
}
.card:hover .card-icon img:first-child {
	display:none
}
.card:hover .card-icon img:nth-child(2) {
	display:block
}
.wh3 {
	padding: 120px 0 160px;
}
.wh3 .container {
	display: flex;
	flex-direction: column;
	gap: 160px;
}
.wh3 .section {
	display: flex;
	align-items: center;
	justify-content:space-between;
	gap: 80px;
	opacity: 0;
	transform: translateY(40px);
	/*transition: opacity 0.8s ease-out, transform 0.8s ease-out;*/
}
.wh3 .section.visible {
	opacity: 1;
	transform: translateY(0);
}
.wh3 .section.left {
	flex-direction: row;
}
.wh3 .section.right {
	flex-direction: row-reverse;
}
.wh3 .text-content {
	flex: 1;
	max-width: 500px;
}
.wh3 .image-content {
	flex: 1;
	max-width: 776px;
	height: 582px;
	overflow: hidden;
	border-radius: 4px;
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
	transition: transform 0.4s, box-shadow 0.4s;
}
.wh3 .image-content img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: transform 0.8s ease;
}
.wh3 .image-content:hover img {
	transform: scale(1.02);
}
.wh3 h2.section-title {
	font-size: 40px;
	font-weight: 500;
	margin-bottom: 104px;
	color: #222222;
	font-family: Noto Serif SC, Noto Serif SC;
}
.wh3 .brand-list-wrapper {
	height: 420px;
	overflow: hidden;
	position: relative;
}
.wh3 .brand-list {
	list-style: none;
	border-left: 1px solid #e0e0e0;
	padding-left: 0;
	transition: border-color 0.3s ease;
	position: relative;
}
.wh3 .brand-list > li {
	margin-bottom: 48px;
	padding-left: 24px;
	position: relative;
	cursor: default;
	min-height: 40px;
	border-left: none;
}
.wh3 .brand-list > li::before {
	content: '';
	position: absolute;
	left: -1px;
	top: 0;
	bottom: 0;
	width: 1px;
	background-color: transparent;
	transition: background-color 0.3s ease;
	pointer-events: none;
	z-index: 1;
}
.wh3 .brand-list > li.active::before,
.wh3 .brand-list > li:hover::before {
	background-color: #222222;
}
.wh3 .brand-list > li.active p,
.wh3 .brand-list > li:hover p {
	max-height: 180px;
	opacity: 1;
	margin-top: 6px;
}
.wh3 .brand-list > li .item-content {
	display: flex;
	flex-direction: column;
	gap: 6px;
}
.wh3 .brand-list h3 {
	font-size: 20px;
	font-weight: 500;
	color: #222222;
	margin: 0;
	line-height: 1.4;
	transition: color 0.2s;
}
.wh3 .brand-list p {
	font-size: 12px;
	color: rgba(0, 0, 0, 0.72);
	line-height: 1.7;
	text-align: justify;
	margin: 0;
	max-height: 0;
	opacity: 0;
	overflow: hidden;
	transition: max-height 0.45s cubic-bezier(0.23, 1, 0.32, 1), opacity 0.55s ease, margin 0.5s ease;
	will-change: max-height, opacity;
}
.wh3 .brand-list > li:last-child {
	margin-bottom: 0;
}

@media (max-width: 960px) {
	.wh1-inner {
		flex-direction: column;
		align-items: flex-start;
		display:block;
	}
	.wh1-images {
		width: 100%;
		height: auto;
		max-width: 600px;
		
		margin-bottom: 60px;
	}
	.wh1-images img {
	position: relative;
}
	
	
	.wh2-title {

	font-size: 1.5rem;


}

.wh3 .brand-list h3 {
	font-size: 1rem;
}	
	
	
	
	.cards-grid {
		flex-direction: column;
	}

	.wh3 .section,
	.wh3 .section.left,
	.wh3 .section.right {
		flex-direction: column;
		gap: 50px;
	}
	.wh3 .image-content {
		width: 100%;
		max-width: 100%;
		height: 300px;
	}
	.wh3 .text-content {
		width: 100%;
		max-width: 100%;
	}
	.wh3 h2.section-title {
		font-size: 30px;
		margin-bottom: 60px;
	}
	.wh3 .brand-list-wrapper {
		height: 380px;
	}
	.wh3 .brand-list > li {
		padding-left: 20px;
		margin-bottom: 28px;
	}
}

@media (max-width: 600px) {
	.wh1 {
		padding: 60px 0 40px;
	}
	.wh1-title {
		font-size: 1.5rem;
	}
	.card {
		padding: 32px 24px;
	}
	.wh2 {
		padding: 30px 0;
	}
	.card-text{
	    font-size: .8rem;
	}
	.wh1-content p {
	font-size: .8rem;
}

.wh1-link {
	font-size: 1.1rem;
	padding-right: 30px;
	background: url(../images/icon_all.svg) no-repeat right center;
	background-size: 18px 18px;
}


	
}

@media (max-width: 480px) {
	.wh3 .container {
		padding: 0 16px;
		gap: 80px;
	}
	.wh3 .brand-list-wrapper {
		height: 350px;
	}
	.wh3 .brand-list > li {
		padding-left: 16px;
		margin-bottom: 24px;
	}
	.wh3 h2.section-title {
		font-size: 1.5rem;
		margin-bottom: 40px;
	}
	.wh3 {
		padding: 80px 0;
	}
}