/* About Page Specific Styles */
.about-image {
	border-radius: 0.5rem;
	overflow: hidden;
	box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.about-image img {
	width: 100%;
	height: auto;
	display: block;
}

.timeline {
	position: relative;
	max-width: 1200px;
	margin: 0 auto;
}

.timeline::after {
	content: '';
	position: absolute;
	width: 6px;
	background-color: var(--slate-200);
	top: 0;
	bottom: 0;
	left: 50%;
	margin-left: -3px;
}

.timeline-item {
	padding: 10px 40px;
	position: relative;
	width: 50%;
	box-sizing: border-box;
}

.timeline-item::after {
	content: '';
	position: absolute;
	width: 25px;
	height: 25px;
	right: -16.5px;
	/* ^ 25/2 + 4 */
	background-color: var(--white);
	border: 4px solid var(--blue-500);
	top: 15px;
	border-radius: 50%;
	z-index: 1;
}

.timeline-item {
	left: 0;
}

.timeline-item:nth-child(even) {
	left: 50%;
}

.timeline-item:nth-child(even):after {
	left: -16.5px;
}

.timeline-content {
	padding: 20px 30px;
	background-color: var(--slate-100);
	position: relative;
	border-radius: 6px;
	box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.timeline-year {
	font-weight: 700;
	color: var(--blue-600);
	margin-bottom: 0.5rem;
}

@media (max-width: 1024px) {
	.timeline-item > .timeline-content {
		background-color: var(--slate-50);
	}
	.timeline-item:nth-child(even) > .timeline-content {
		background-color: var(--slate-200);
	}
	.timeline-item:after,
	.timeline-item:nth-child(even),
	.timeline-item:nth-child(even):after {
		left: 0;
	}
	.timeline-item {
		width: 100%;
	}
	.timeline::after {
		margin-left: 0;
		left: 13.5px;
		/* left =
			(.timeline-item::after->width) / 2            : 25px / 2
			- (.timeline-item::after->border-width) / 2   : 4px / 2
			+ (.timeline::after->width) / 2               : 6px / 2
			= 12.5 - 2 + 3
		*/
	}
}

.value-card {
	background-color: var(--white);
	border-radius: 0.5rem;
	padding: 2rem;
	box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
	height: 100%;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.value-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.value-icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 3.5rem;
	height: 3.5rem;
	margin-bottom: 1.5rem;
	border-radius: 50%;
	background-color: var(--slate-100);
	color: var(--blue-600);
}

.value-title {
	font-size: 1.25rem;
	font-weight: 600;
	margin-bottom: 0.75rem;
}

.value-description {
	color: var(--slate-600);
}

.stat-card {
	background-color: var(--white);
	border-radius: 0.5rem;
	padding: 1.5rem;
	text-align: center;
	box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.stat-number {
	font-size: 2.5rem;
	font-weight: 700;
	color: var(--blue-600);
	margin-bottom: 0.5rem;
}

.stat-label {
	color: var(--slate-500);
	font-size: 0.875rem;
}
