/* Event calendar */

#event_calendar {
}

	.body_title {
		margin-bottom: 30px;
	}
	
	@media screen and (min-width : 994px) {
		.body_title { margin-bottom: 60px; }
	}

	#event_calendar_cont {
		position: relative;
		display: flex;
		flex-direction: column;
		row-gap: 30px;
	}
	
	@media screen and (min-width : 994px) {
		#event_calendar_cont { flex-direction: row; column-gap: 30px; }
	}
	
		.event_calendar_item {
			border-radius: 10px;
			box-shadow: 0px 0px 7px 0px rgba(0,0,0,0.30);
		}
		
			.event_img {
				position: relative;
			}
			
			.event_img img {
				display: block;
				width: 100%;
				border-radius: 10px 10px 0 0;
			}
			
			.event_tag {
				position: absolute;
				bottom: 20px;
				left: 20px;
			}
	
				.tag {
					background: var(--cherry);
					border-radius: 4px;
					color: var(--white);
					font-weight: 700;
					font-size: 14px;
					text-transform: uppercase;
					padding: 3px 10px;
				}
				
			.event_info {
				padding: 20px;
			}
					
				.event_title {
					font-size: 18px;
					font-weight: 700;
				}
			
					.event_title a {
						color: var(--grey);
						transition: color 0.3s linear;
						-webkit-transition: color 0.3s linear;
						-moz-transition: color 0.3s linear;
					}
			
					.event_title a:hover {
						color: var(--cherry);
					}
			
				.event_date {
					display: flex;
					margin-top: 10px;
					color: #6c6c6c;
				}
				
					.event_date svg {
						margin-top: 1px;
						margin-right: 10px;
					}
			
				.event_text {
					margin-top: 10px;
					overflow: hidden;
					display: -webkit-box;
					-webkit-line-clamp: 3;
					-webkit-box-orient: vertical;
				}
	
/* Notizie */

#news_edizioni {
	position: relative;
	display: flex;
	flex-direction: column;
	margin-top: 60px;
	padding-top: 60px;
	border-top: 1px solid #d9d9d9;
}
	
@media screen and (min-width : 994px) {
	#news_edizioni { padding-right: 50px; flex-direction: row; }
}

	#news_body {
		position: relative;
		width: 100%;
	}
	
	@media screen and (min-width : 994px) {
		#news_body { width: 50%; padding-right: 50px; }
	}
	
		#news_cont {
			position: relative;
			display: flex;
			flex-direction: column;
			row-gap: 30px;
		}
	
		@media screen and (min-width : 994px) {
			#news_cont { flex-direction: row; column-gap: 30px; }
		}
		
			.news_item {
				border-radius: 10px;
				box-shadow: 0px 0px 7px 0px rgba(0,0,0,0.30);
				min-height: 157px;
				padding: 20px 28px;
				display: flex;
  				justify-content: center;
  				align-items: center;
			}
			
				.news_date {
					display: flex;
					color: #6c6c6c;
				}
			
					.news_date svg {
						margin-top: 1px;
						margin-right: 10px;
					}
				
				.news_title {
					font-size: 18px;
					font-weight: 700;
					margin-top: 10px;
				}
		
					.news_title a {
						color: var(--grey);
						transition: color 0.3s linear;
						-webkit-transition: color 0.3s linear;
						-moz-transition: color 0.3s linear;
					}
		
					.news_title a:hover {
						color: var(--cherry);
					}
	
/* Edizioni precedenti */

	#edizioni_body {
		position: relative;
		width: 100%;
		margin-top: 60px;
		padding-top: 60px;
		border-top: 2px dotted #d9d9d9;
	}
	
	@media screen and (min-width : 994px) {
		#edizioni_body { width: 50%; margin-top: 0; padding-top: 0; border-top: 0; padding-left: 50px; border-left: 2px dotted #d9d9d9; }
	}
	
		#edizioni_cont {
			position: relative;
			display: flex;
			flex-direction: column;
			row-gap: 30px;
		}
	
		@media screen and (min-width : 994px) {
			#edizioni_cont { flex-direction: row; column-gap: 30px; }
		}
		
			.edizioni_item {
				border-radius: 10px;
				box-shadow: 0px 0px 7px 0px rgba(0,0,0,0.30);
				min-height: 157px;
			}
			
				.edizioni_item img {
					width: 100%;
					border-radius: 10px;
				}
				

.arrow_left, .arrow_right {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 40px;
	height: 40px;
	line-height: 48px;
	text-align: center;
	border-radius: 50%;
	background-color: var(--white);
	box-shadow: 0px 0px 7px 0px rgba(0,0,0,0.30);
	z-index: 3;
	
	display: none;
}

@media screen and (min-width : 994px) {
	.arrow_left, .arrow_right { display: block; }
}

.arrow_left {
	left: -20px;
}

.arrow_right {
	right: -20px;
}
				
.btt_viewall {
	position: relative;
	width: 200px;
	height: 48px;
	line-height: 48px;
	font-weight: 700;
	font-size: 18px;
	text-align: center;
	background-color: var(--white);
	border-radius: 10px;
	border: 1px solid #d9d9d9;
	transition: box-shadow 0.3s linear;
	-webkit-transition: box-shadow 0.3s linear;
	-moz-transition: box-shadow 0.3s linear;
	margin-bottom: 30px;
}

@media screen and (min-width : 994px) {
	.btt_viewall { position: absolute; top: 45px; right: 50px; margin-bottom: 0; }
	#news_body .btt_viewall { top: -16px; }
	#edizioni_body .btt_viewall { top: -16px; right: 0; }
}
			
.btt_viewall:hover {
	box-shadow: 0px 0px 7px 0px rgba(0,0,0,0.30);
}

	.btt_viewall a {
		color: var(--grey);
	}