.growth_year {
	list-style: none;
	padding: 0;
	margin: 0;
}

.growth_year li {
	padding: 12px 20px;
	margin-bottom: 5px;
	border-radius: 4px;
	cursor: pointer;
	transition: all 0.3s ease;
	background-color: #f8f8f8;
}

.growth_year li:hover {
	background-color: #e8e8e8;
}

.growth_year li.current {
	background-color: #1e87f0;
	color: white;
}

.growth_year label {
	cursor: pointer;
	display: block;
	width: 100%;
	margin: 0;
	font-weight: 500;
}

.growth_list {
	list-style: none;
	padding: 0;
	margin: 0;
}

.growth_list>div {
	margin-bottom: 40px;
	position: relative;
}

.growth_list h3 {
	padding: 15px 20px;
	color: white;
	border-radius: 4px;
	margin-top: 0;
	margin-bottom: 25px;
}

.growth_list li {
	display: flex;
	margin-bottom: 25px;
	position: relative;
	min-height: 60px;
}

.date {
	width: 120px;
	padding-right: 20px;
	text-align: right;
	font-weight: bold;
	color: #333;
	position: relative;
	flex-shrink: 0;
}

.event {
	flex: 1;
	position: relative;
	padding-left: 20px;
}

.event span {
	display: block;
	padding: 15px;
	background-color: white;
	border-radius: 4px;
	border-left: 3px solid #1e87f0;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.growth_list>div:not(:last-child):before {
	content: '';
	position: absolute;
	left: 135px;
	top: 70px;
	bottom: 0;
	width: 2px;
	background-color: #e0e0e0;
	z-index: 1;
}

.growth_list li:before {
	content: '';
	position: absolute;
	left: 127px;
	top: 5px;
	width: 12px;
	height: 12px;
	background-color: #1e87f0;
	border-radius: 50%;
	border: 3px solid white;
	box-shadow: 0 0 0 2px #1e87f0;
	z-index: 2;
}

.growth_list li:after {
	content: '';
	position: absolute;
	left: 127px;
	top: 10px;
	width: 8px;
	height: 2px;
	background-color: #1e87f0;
	z-index: 1;
}

@media (max-width: 960px) {
	.growth_list li {
		flex-direction: column;
	}
.growth_year li {
    float: left;
    margin: 5px;
}
.uk-grid-medium.uk-flex-middle.uk-grid {
    text-align: center;
}
.uk-width-auto.uk-first-column {
    width: 100%;
}
.logo-img {
    margin-right: 0px; 
}
	.date {
		width: 100%;
		text-align: left;
		padding-right: 0;
		padding-left: 10px;
		margin-bottom: 10px;
	}

	.event {
		padding-left: 10px;
	}

	.growth_list li:before {
		/*left: 22px;*/
		display: none;
	}

	.growth_list li:after {
		/*left: 27px;*/
		display: none;
	}

	.growth_list>div:not(:last-child):before {
		left: 0px;
	}
}

.page-header {
	padding: 60px 0;
	margin-bottom: 40px;
}

.logo-img {
	max-height: 60px;
	margin-right: 15px;
}

.no-events {
	padding: 20px;
	text-align: center;
	color: #666;
	font-style: italic;
	background-color: #f9f9f9;
	border-radius: 4px;
	border: 1px dashed #ddd;
}

.year-stats {
	display: flex;
	justify-content: space-around;
	margin-top: 20px;
	padding: 15px;
	background-color: #f8f9fa;
	border-radius: 4px;
	border-left: 4px solid #1e87f0;
}

.stat-item {
	text-align: center;
}

.stat-number {
    font-size: 14px;
	color: #1e87f0;
}

.stat-label {
	font-size: 14px;
	color: #666;
}

.event a {
	color: #1e87f0;
	text-decoration: none;
	font-weight: 500;
}

.event a:hover {
	text-decoration: underline;
}

.event strong {
	color: #333;
	font-size: 16px;
	display: block;
	margin-bottom: 8px;
}