/* ============================================================
   About Section
   ============================================================ */

.about-section {
	background-color: var(--color-white);
}

.about-grid {
	display: flex;
	flex-direction: column;
	gap: 50px;
}

.about-block-title {
	font-size: 22px;
	font-weight: 700;
	margin-bottom: 24px;
	color: var(--color-text);
	text-align: center;
}

/* --- Team --- */
.team-grid {
	display: flex;
	justify-content: center;
	gap: 40px;
	flex-wrap: wrap;
}

.team-member {
	text-align: center;
	max-width: 180px;
}

.team-name {
	font-size: 16px;
	font-weight: 600;
	margin-top: 10px;
}

.team-role {
	font-size: 13px;
	color: var(--color-text-light);
}

/* --- Certificates --- */
.certificates-grid {
	display: flex;
	justify-content: center;
	gap: 30px;
	flex-wrap: wrap;
}

.certificate-placeholder {
	width: 200px;
	height: 140px;
}

/* --- Company Timeline --- */
.company-timeline {
	display: flex;
	justify-content: center;
	gap: 40px;
	flex-wrap: wrap;
}

.company-milestone {
	text-align: center;
	padding: 20px 24px;
	background: var(--color-bg-light);
	border-radius: var(--radius-md);
	border-left: 3px solid var(--color-primary);
}

.milestone-year {
	display: block;
	font-size: 28px;
	font-weight: 800;
	color: var(--color-primary);
}

.milestone-desc {
	display: block;
	font-size: 13px;
	color: var(--color-text-light);
	margin-top: 4px;
}
