.side-list {
	margin-bottom: 0;
	padding: 40px 0;
}

@media (min-width:1400px) {
	.side-list {
		margin-bottom: 40px;
		padding: 60px 0 80px;
	}
}

.side-list .arrow-link {
	gap: 10px;
}

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

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

.side-list__container {
	margin: 0 auto;
	max-width: 1200px;
	padding: 0 20px;
}

.side-list__title {
	align-items: center;
	color: var(--main-900, #1A1A1A);
	display: flex;
	font-family: 'Stag LCG', serif;
	font-size: 32px;
	font-weight: 400;
	gap: 10px;
	line-height: 120%;
	margin-bottom: 30px;
}

.side-list__arrow {
	color: var(--secondary-blue-1000, #009EFF);
	font-size: 40px;
	line-height: 1;
}

.side-list__content {
	display: grid;
	gap: 20px;
	grid-template-columns: 1fr 380px;
}

/* Main Article */
.side-list__main {
/* 	aspect-ratio: 16 / 9; */
	background-color: var(--main-0, #FFFFFF);
	border-radius: 2px;
	height: 100%;
	overflow: hidden;
}

.side-list__main-link {
	color: inherit;
	display: block;
	text-decoration: none;
}

.side-list__main img {
	height: 100%;
	object-fit: cover;
	width: 100%;
}

.side-list__main-content {
	padding: 20px 30px 30px;
}

.side-list__main-title {
	bottom: 20px;
	color: var(--main-0, #FFFFFF);
	font-family: 'Stag LCG', serif;
	font-size: 24px;
	font-weight: 400;
	left: 30px;
	line-height: 120%;
	margin-bottom: 15px;
	position: absolute;
	right: 30px;
	z-index: 2;
}

.side-list__main-image::after {
	background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, transparent 100%);
	bottom: 0;
	content: '';
	height: 60%;
	left: 0;
	position: absolute;
	right: 0;
	z-index: 1;
}

.side-list__main-meta {
	align-items: flex-start;
	display: flex;
	flex-wrap: wrap;
	gap: 15px;
}

.side-list__main-category {
	color: var(--main-600, #666666);
	font-family: Inter, sans-serif;
	font-size: 12px;
	font-weight: 400;
	line-height: 120%;
	text-transform: uppercase;
}

.side-list__main-excerpt {
	color: var(--main-900, #1A1A1A);
	font-family: Inter, sans-serif;
	font-size: 14px;
	font-weight: 400;
	line-height: 140%;
	margin: 0;
}

/* Side Articles */
.side-list__aside {
	background-color: transparent;
}

.side-list__items {
	display: flex;
	flex-direction: column;
	gap: 20px;
	height: 100%;
	justify-content: space-between;
	list-style: none;
}

.side-list__item {
	background-color: var(--main-0, #FFFFFF);
	border-radius: 2px;
	transition: transform 0.2s ease;
}

.side-list__item-link {
	color: inherit;
	display: block;
	padding: 20px;
	text-decoration: none;
}

.side-list__item-category {
	color: var(--main-500, #808080);
	font-size: 10px;
	font-style: normal;
	font-weight: 500;
	line-height: 120%;
	/* 12px */
	text-transform: uppercase;
}

.side-list__item-title {
	color: var(--main-900, #1A1A1A);
	font-family: var(--font-family-stag), serif;
	font-size: 20px;
	font-style: normal;
	font-weight: 400;
	line-height: 120%;
	transition: all 0.3s ease;
}


@media (min-width:1023px) {
	.side-list__item{min-height:130px}
}

.side-list__item {
    position: relative;
}
.side-list__item * {
    position: relative;
    z-index: 1;
}
.side-list__item:after {
    content: "";
    height: 0;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 0;
    transition: all 0.3s ease;
}

.side-list__item:focus:after {
    height: 100%;
}

.viral-section .side-list__item:after{
background: linear-gradient(180deg, rgba(191, 0, 229, 0.00) 50%, rgba(191, 0, 229, 0.10) 100%), var(--main-0, #FFF)
}

.empisteftika-section .side-list__item:after{
background: linear-gradient(180deg, rgba(0, 187, 204, 0.00) 50%, rgba(0, 187, 204, 0.10) 100%), var(--main-0, #FFF);
}

@media (max-width:1023px) {
.side-list__content {
    grid-template-columns: 1fr 300px;
}
}

@media (max-width:480px) {
.side-list__content {grid-template-columns: 1fr;gap:20px}	
.side-list__item {min-height:136px}	
.side-list__items{gap:10px}
}