.images-section {
	padding: 80px 0;
	position: relative;
}

/* Header Styles */
.images-section .images-header {
	align-items: center;
	display: flex;
	justify-content: space-between;
}

.images-section {
	background: #E5E5E5;
	background: linear-gradient(180deg, rgba(229, 202, 0, 0.05) 0%, var(--categories-eikones-primary, rgba(191, 169, 0, 0.10)) 100%), var(--main-100, #E5E5E5);
}

.images-section .arrow-link h2 {
	font-size: var(--heading-font-size-large);
}

.images-section .arrow-link.start:hover h2 {
	color: #BFA900 !important;
}

.images-section .arrow-link svg {
	position: relative;
	top: 8px;
	width: 44px;
}

.images-section .section-date {
	color: var(--main-900, #1A1A1A);
	font-family: var(--font-family-stag), serif;
	font-size: var(--font-size-h-2);
	font-weight: 400;
	line-height: 1.2;
	white-space: nowrap;
}

/* Main Content Layout */
.images-section .images-content {
	display: grid;
	gap: 25px;
	grid-template-columns: 1fr 345px;
}

/* Featured Image Styles */
.images-section .featured-image {
	aspect-ratio: 16 / 9;
	max-width:100%;
	height: 600px;
	overflow: hidden;
	position: relative;
}

.images-section .featured-image img {
	height: 100%;
	object-fit: cover;
	width: 100%;
}

.images-section .image-overlay {
	background: linear-gradient(180deg, rgba(26, 26, 26, 0) 50%, rgba(26, 26, 26, 0.8) 100%);
	border-radius: 0 0 2px 2px;
	bottom: 0;
	left: 0;
	padding:40px 60px;
	position: absolute;
	right: 0;
}

.images-section .image-content {
	display: flex;
	flex-direction: column;
	gap: 6px;
}

.images-section .image-year {
	color: var(--main-0, #FFFFFF);
	font-family: var(--font-family-stag), serif;
	font-size: 16px;
	font-weight: 400;
	letter-spacing: 0.32px;
	line-height: 1.2;
}

.images-section .image-text {
	color: var(--main-0, #FFFFFF);
	font-family: var(--font-family-stag), serif;
	font-size: var(--font-size-h-2);
	font-weight: 400;
	line-height: 1.2;
	margin: 0;
}

/* Timeline Sidebar Styles */
.images-section .timeline-sidebar {
	background-color: var(--main-0, #FFFFFF);
	border-radius: 2px;
	height: 600px;
	overflow: hidden;
	position: relative;
}

.images-section .timeline-scroll {
	box-sizing: border-box;
	display: flex;
	flex-direction: column;
	gap: 30px;
	height: 100%;
	overflow-y: auto;
	padding: 30px;
}

.images-section .timeline-sidebar::after {
	background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 1) 100%);
	border-radius: 0 0 2px 2px;
	bottom: 0;
	content: '';
	height: 60px;
	left: 0;
	pointer-events: none;
	position: absolute;
	right: 0;
}

.images-section .timeline-item {
	align-items: flex-start;
	display: flex;
	gap: 14px;
  padding-left:20px;position:relative;
}

.images-section .timeline-marker {
	flex-shrink: 0;
	position: relative;
	top: -1px;
}

.images-section .timeline-marker svg {
	height: 10px;
	width: 6px;
}

.images-section .timeline-content {
	display: flex;
	flex-direction: column;
	gap: 6px;
}

.images-section .timeline-year {
	color: var(--main-900, #1A1A1A);
	font-family: var(--font-family-stag), serif;
	font-size: 16px;
	font-weight: 400;
	letter-spacing: 0.32px;
	line-height: 1.2;
}

.images-section .timeline-description {
	color: var(--main-900, #1A1A1A);
	font-family: var(--font-family-inter), sans-serif;
	font-size: 16px;
	font-weight: 400;
	line-height: 1.4;
	margin: 0;
	max-width: 271px;
}

.timeline-item:before {
    content: "";
    background:url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="6" height="10" viewBox="0 0 6 10" fill="none"><path d="M0 1L4 5L0 9" stroke="%23BFA900" stroke-width="2"></path></svg>');
    width: 20px;
    height: 20px;
    background-repeat: no-repeat;
    position: absolute;
    top: 4px;
    left: 0;
}

/* Responsive */
@media (max-width: 1023px) {
	.images-section .images-content {
		grid-template-columns: 1fr;
	}

	.images-section .timeline-sidebar {
		height: auto;
	}
	.images-section .featured-image .section-date {
			color: #fff;
			position: absolute;
			font-size: 28px;
			padding: 20px 0px 0 20px;
			font-weight: 400;
			line-height: 1;
	}
}

@media (max-width:480px) {
.home .images-section {padding:40px 0}	
.images-section .images-content{gap:10px}
.images-section .timeline-scroll {padding: 20px}
}