/* Текст истории и временная шкала. */

.history-section {
	padding: 25px 0;
	background: var(--color-bg-v2);
	color: #252525;
}


.history-grid {
	display: grid;
	grid-template-columns: 0.9fr 1.1fr;
	align-items: center;
	gap: 30px;
}

.history-text {
	font-family: var(--font-montserrat);
	color: #454545;
	margin-bottom: 30px;
}

.history-text p {
	margin: 0 0 15px;
}

.history-text p:last-child {
	margin-bottom: 0;
}

/* Временная шкала */

.history-timeline {
	position: relative;

	padding: 28px 34px 27px 59px;
	background: var(--color-surface);
	border: 1px solid var(--color-border);
	border-radius: var(--radius);
	box-shadow: var(--shadow-dark)
}

.history-timeline-item:not(:last-child)::before {
	content: "";

	position: absolute;
	z-index: 0;

	top: 7px;
	bottom: -7px;
	left: -28px;

	width: 1px;

	background: #b8d7a7;
}

.history-timeline-item {
	position: relative;

	min-height: 69px;
	padding-bottom: 18px;
}

.history-timeline-item:last-child {
	min-height: 0;
	padding-bottom: 0;
}

.history-timeline-dot {
	position: absolute;
	z-index: 1;

	top: 0;
	left: -35px;

	width: 14px;
	height: 14px;

	border-radius: 50%;
	background: #78b348;
}

.history-timeline-content {
	position: relative;
	top: -2px;
}

.history-timeline-year {
	margin-bottom: 4px;
	font-size: 13px;
	font-weight: 700;
	line-height: 1.2;
	font-family: var(--font-montserrat);
	color: #3f934c;
}

.history-timeline-content h3 {
	margin: 0 0 4px;
	font-size: 16px;
	font-weight: 700;
	line-height: 1.25;
	font-family: var(--font-montserrat);
	color: #272727;
}

.history-timeline-content p {
	margin: 0;
	font-size: 13px;
	font-weight: 400;
	line-height: 1.45;
	font-family: var(--font-montserrat);
	color: #848484;
}

@media (max-width: 820px) {
	.history-grid {
		grid-template-columns: 1fr;
	}

	.history-timeline {
		padding-right: 22px;
	}
}
