/*************************************
 ** - Case Studies Section CSS
 *************************************/

.case-studies-section {
	background: #ffffff;
}

.case-study-card-link {
	text-decoration: none;
	display: block;
}

.case-study-card {
	background: #ffffff;
	border-radius: 8px;
	overflow: hidden;
	transition: all 0.3s ease;
	margin-bottom: 30px;
	box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
}

.case-study-card-link:hover .case-study-card {
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
	transform: translateY(-3px);
}

.case-study-image {
	position: relative;
	overflow: hidden;
	/* background: #000000; */
}

.case-study-image img {
	width: 100%;
	object-fit: cover;
	transition: opacity 0.3s ease;
	opacity: 0.9;
}

.case-study-card:hover .case-study-image img {
	opacity: 1;
}

.case-study-content {
	padding: 30px;
	display: flex;
	flex-direction: column;
}

.case-category {
	font-size: 14px;
	font-weight: 900;
	color: #D90010;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	margin-bottom: 12px;
}

.case-title {
	font-size: 22px;
	font-weight: 700;
	color: #1a1a2e;
	margin: 0 0 20px 0;
	line-height: 1.3;
}

.case-description {
	font-size: 16px;
	color: #666666;
	line-height: 1.6;
	margin: 0 0 25px 0;
	flex-grow: 1;
}

.case-cta {
	font-size: 16px;
	font-weight: 900;
	color: #D90010;
	margin-top: auto;
	transition: color 0.3s ease;
}

.case-study-card-link:hover .case-cta {
	/* color: #004499; */
}

.case-show-wrapper .article-content h3 {
	font-size: 32px;
	font-weight: 700;
	color: #1a1a2e;
	margin: 0 0 25px 0;
	line-height: 1.3;
}

/*************************************
 ** - Platform Mapping Section CSS
 *************************************/

.platform-mapping-section {
	background: #ffffff;
}

.platform-mapping-header {
	text-align: left;
	margin-bottom: 50px;
}

.platform-mapping-title {
	font-size: 48px;
	font-weight: 700;
	color: #1a1a2e;
	margin: 0;
	line-height: 1.2;
}

.platform-card {
	background: #f5f7fa;
	border-radius: 8px;
	padding: 30px;
	height: 100%;
	position: relative;
	overflow: hidden;
}

.platform-card::before {
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	bottom: 0;
	width: 4px;
}

.platform-card-1::before {
	background: #0056b3;
}

.platform-card-2::before {
	background: #28a745;
}

.platform-card-3::before {
	background: #d39e00;
}

.platform-card-4::before {
	background: #343a40;
}

.platform-card h3 {
	font-size: 22px;
	font-weight: 700;
	color: #1a1a2e;
	margin: 0 0 15px 0;
	line-height: 1.3;
}

.platform-card p {
	font-size: 16px;
	color: #666666;
	line-height: 1.6;
	margin: 0;
}

.platform-card-link {
	text-decoration: none;
	display: block;
	height: 100%;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.platform-card-link:hover {
	transform: translateY(-5px);
}

.platform-card-link:hover .platform-card {
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/*************************************
 ** - Case Show Page CSS
 *************************************/

.case-show-wrapper {
	margin-top: 30px;
}

.case-show-wrapper > .row {
	/*align-items: center;*/
}

.case-show-results {
	background: #ffffff;
	border-radius: 8px;
	padding: 30px;
	/* height: 100%; */
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.case-section-title {
	font-size: 20px;
	font-weight: 700;
	color: #1a1a2e;
	margin: 0 0 25px 0;
}

.case-results-list {
	display: flex;
	flex-direction: column;
	gap: 0;
	position: relative;
}

.case-result-item {
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 18px 20px;
	background: #f5f7fa;
	border: 1px solid #dde3eb;
	border-radius: 8px;
	font-size: 16px;
	font-weight: 700;
	color: #555555;
	transition: all 0.3s ease;
	text-align: center;
	position: relative;
	margin-bottom: 20px;
}

.case-result-item:not(:last-child)::after {
	content: '';
	position: absolute;
	left: 50%;
	bottom: -21px;
	transform: translateX(-50%);
	width: 2px;
	height: 20px;
	background: #dde3eb;
}

.case-result-item:nth-child(3) {
	background: #1E2736;
	color: #ffffff;
	font-weight: 700;
	border-color: #1E2736;
}

.case-result-item:last-child {
	margin-bottom: 0;
}

.case-result-item i {
	display: none;
}

/* 响应式 */
@media screen and (max-width: 992px) {
	.case-show-wrapper .row > div {
		margin-bottom: 20px;
	}
}

@media screen and (max-width: 576px) {
	.case-show-details,
	.case-show-results {
		padding: 20px;
	}
}
