/* Blog Cards Shortcode Styles */

@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');

.euro-event-blog-cards {
	margin: 0;
	font-family: 'Roboto', sans-serif;
}

.euro-event-blog-swiper {
	width: 100%;
	padding: 0;
}

.euro-event-blog-swiper .swiper-wrapper {
	display: flex;
}

.euro-event-blog-swiper .swiper-slide {
	height: auto;
	display: flex;
	padding: 1rem;
}


.euro-event-blog-card {
	background: #ffffff;
	border-radius: 8px;
	overflow: hidden;
	box-shadow: 0px 4px 4px 0px #6C757D4D;
	transition: transform 0.3s ease;
	display: flex;
	flex-direction: column;
	height: 100%;
	width: 100%;
	cursor: pointer;
}

.euro-event-blog-card:hover {
	transform: translateY(-5px);
}

.euro-event-blog-image {
	position: relative;
	width: 100%;
	height: 310px;
	overflow: hidden;
	background: #f5f5f5;
}

.euro-event-blog-image a {
	display: block;
	width: 100%;
	height: 100%;
}

.euro-event-blog-image img {
	width: 100%;
	height: 100% !important;
	object-fit: cover;
	transition: transform 0.4s ease;
}

.euro-event-blog-card:hover .euro-event-blog-image img {
	transform: scale(1.08);
}

.euro-event-blog-placeholder {
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	color: white;
	font-size: 14px;
	font-weight: 500;
}

.euro-event-blog-content {
	padding: 24px;
	display: flex;
	flex-direction: column;
	flex: 1;
}

.euro-event-blog-meta {
	display: flex;
	align-items: center;
	gap: 8px;
	margin-bottom: 14px;
	color: #35393D;
	font-size: 12px;
}

.euro-event-calendar-icon {
	width: 12px;
	height: 12px;
	flex-shrink: 0;
}

.euro-event-blog-date {
	font-weight: 400;
	line-height: 1;
}

.euro-event-blog-title {
	margin: 0 0 14px 0;
	font-size: 16px;
	font-weight: 700;
	line-height: 1.4;
	color: #0B4F9F;
}

.euro-event-blog-title a {
	color: inherit;
	text-decoration: none;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
	transition: color 0.2s ease;
}

.euro-event-blog-title a:hover {
	color: #0066cc;
}

.euro-event-blog-excerpt {
	margin: 0 0 20px 0;
	font-size: 12px;
	line-height: 1.6;
	color: #35393D;
	display: -webkit-box;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
	overflow: hidden;
	flex: 1;
}

.euro-event-blog-footer {
	margin-top: auto;
	padding-top: 16px;
	text-align: right;
}

/* Responsive Design */
@media (max-width: 992px) {
	.euro-event-blog-title {
		font-size: 18px;
	}
}

@media (max-width: 768px) {
	.euro-event-blog-image {
		height: 220px;
	}
	
	.euro-event-blog-content {
		padding: 20px;
	}
	
	.euro-event-blog-title {
		font-size: 18px;
		margin-bottom: 12px;
	}
	
	.euro-event-blog-meta {
		font-size: 13px;
		margin-bottom: 12px;
	}
	
	.euro-event-calendar-icon {
		width: 16px;
		height: 16px;
	}
	
	.euro-event-blog-excerpt {
		font-size: 13px;
		margin-bottom: 16px;
	}
}

@media (max-width: 480px) {
	.euro-event-blog-image {
		height: 200px;
	}
	
	.euro-event-blog-content {
		padding: 18px;
	}
	
	.euro-event-blog-title {
		font-size: 17px;
	}
	
	.euro-event-blog-meta {
		font-size: 12px;
	}
	
	.euro-event-blog-excerpt {
		font-size: 13px;
	}
	
	.euro-event-blog-link {
		font-size: 13px;
	}
}

/* Timeline Navigation for Mobile Sliders */
.euro-event-blog-cards .timeline-navigation {
	display: none;
	gap: 10px;
	justify-content: center;
	margin-top: 20px;
}

@media (max-width: 768px) {
	.euro-event-blog-cards .timeline-navigation {
		display: flex;
	}
}

.timeline-prev,
.timeline-next {
	background: #f3f4f6;
	border: 2px solid #7BCEF4;
	border-radius: 13px;
	width: 40px;
	height: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	transition: all 0.3s ease;
	color: #6b7280;
}

.timeline-prev:hover,
.timeline-next:hover {
	background: #2563eb;
	color: white;
}

.timeline-prev:disabled,
.timeline-next:disabled {
	opacity: 0.3;
	cursor: not-allowed;
}
