#socarTimeline {
	position: relative;
	overflow: hidden;
	isolation: isolate;
	width: 100%;
	min-height: 100vh;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	background-attachment: fixed;
	transition: background-image 0.8s ease-in-out;
	display: flex;
	align-items: center;
}

#socarTimeline::before {
	content: "";
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.55);
	pointer-events: none;
	z-index: 1;
}

.socar-container {
	position: relative;
	width: 1200px;
	margin: auto;
	z-index: 2;
	color: #ffffff;
}

.socar-title {
	text-align: center;
	font-size: 48px;
	font-weight: 700;
	margin-top: 25px;
	margin-bottom: 60px;
}

.socar-timeline {
	position: relative;
}

.socar-line {
	position: absolute;
	left: 50%;
	top: 0;
	bottom: 0;
	width: 2px;
	background: rgba(255, 255, 255, 0.25);
}

.socar-block {
	display: flex;
	align-items: center;
	justify-content: space-between;
	min-height: 65vh;
	position: relative;
	opacity: 0.35;
	filter: blur(4px);
	transform: translateY(40px);
	transition:
		opacity 0.7s cubic-bezier(.2, .6, .2, 1),
		filter 0.7s cubic-bezier(.2, .6, .2, 1),
		transform 0.7s cubic-bezier(.2, .6, .2, 1);
}

.socar-block.active {
	opacity: 1;
	filter: blur(0);
	transform: translateY(0);
}

.socar-left {
	width: 45%;
	text-align: right;
}

.socar-right {
	width: 45%;
	text-align: left;
}

.socar-year {
	font-size: 42px;
	font-weight: 700;
	opacity: 0.95;
}

.socar-image {
	overflow: hidden;
}

.socar-image img {
	width: 400px;
	max-width: 100%;
	transform: scale(0.9);
	filter: blur(2px);
	transition:
		transform 0.7s cubic-bezier(.2, .6, .2, 1),
		filter 0.7s cubic-bezier(.2, .6, .2, 1);
}

.socar-block.active .socar-image img {
	transform: scale(1);
	filter: blur(0);
}

.socar-text {
	margin-top: 20px;
	font-size: 16px;
	line-height: 1.6;
	opacity: 0.95;
}

.socar-block::before {
	content: "";
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
	width: 14px;
	height: 14px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.4);
	transition: all 0.4s ease;
	z-index: 3;
}

.socar-block.active::before {
	width: 0;
	height: 0;
	background: #ffffff;
	box-shadow:
		0 0 0 4px rgba(255, 255, 255, 0.2),
		0 0 12px rgba(255, 255, 255, 0.6);
}

.socar-block::after {
	content: "";
	position: absolute;
	left: calc(50% - 1px);
	top: 0;
	height: 100%;
	width: 1px;
	background: transparent;
	transition: background 0.4s ease;
}

.socar-block.active::after {
	background: #ffffff;
}

@media (max-width: 1024px) {
	.socar-container {
		width: 90%;
	}

	.socar-title {
		font-size: 34px;
	}

	.socar-year {
		font-size: 28px;
	}

	.socar-image img {
		width: 220px;
	}

	.socar-block {
		min-height: 50vh;
	}
}

@media (max-width: 767px) {
	#socarTimeline {
		display: block;
		padding: 60px 0;
	}

	.socar-block::after {
		visibility: hidden;
	}

	.socar-line {
		left: 18px;
	}

	.socar-block {
		flex-direction: column;
		align-items: flex-start;
		padding-left: 50px;
		margin-bottom: 50px;
		min-height: auto;
		opacity: 1;
		filter: none;
		transform: none;
	}

	.socar-left,
	.socar-right {
		display: contents;
		width: 100%;
		text-align: left;
	}

	.socar-year {
		order: 1;
		margin-bottom: 15px;
	}

	.socar-image {
		order: 2;
	}

	.socar-text {
		order: 3;
	}
}
