/* Process Section - minimální CSS, zbývající je v theme */

/* Styling pro process timeline */
.process-timeline {
	display: flex;
	flex-direction: column;
	position: relative;
}

.process-step {
	display: flex;
	margin-bottom: 2rem;
	position: relative;
}

.step-number {
	background-color: #003380;
	color: white;
	width: 60px;
	height: 60px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.5rem;
	font-weight: bold;
	margin-right: 1.5rem;
	flex-shrink: 0;
}

.step-content {
	flex: 1;
}

.step-content h4 {
	margin-top: 0.5rem;
	margin-bottom: 0.5rem;
	font-size: 1.25rem;
	color: #333;
}

.step-content p {
	color: #666;
	margin: 0;
}

/* Responsive design */
@media (max-width: 768px) {
	.process-step {
		margin-bottom: 1.5rem;
	}

	.step-number {
		width: 50px;
		height: 50px;
		font-size: 1.25rem;
		margin-right: 1rem;
	}

	.step-content h4 {
		font-size: 1.1rem;
	}
}
