/* Blog Single 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-single {
	font-family: 'Roboto', sans-serif;
	max-width: 100%;
	margin-bottom: 6rem;
	background: #ffffff;
}

/* Entrance Animations */
@keyframes fadeInUp {
	from {
		opacity: 0;
		transform: translateY(30px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes fadeIn {
	from {
		opacity: 0;
	}
	to {
		opacity: 1;
	}
}

/* Initial hidden state */
.euro-event-blog-article,
.euro-event-blog-breadcrumb {
	opacity: 0;
}

/* Animate when visible */
.euro-event-blog-article.animate-in {
	animation: fadeInUp 0.8s ease-out forwards;
}

.euro-event-blog-breadcrumb.animate-in {
	animation: fadeIn 0.6s ease-out forwards;
}

.euro-event-blog-header.animate-in {
	animation: fadeInUp 0.8s ease-out 0.2s forwards;
}

.euro-event-blog-featured-image.animate-in {
	animation: fadeInUp 0.8s ease-out 0.3s forwards;
}

.euro-event-blog-content.animate-in {
	animation: fadeInUp 0.8s ease-out 0.4s forwards;
}

/* Breadcrumb */
.euro-event-blog-breadcrumb {
	background-color: #F3F3F3;
	padding: 20px;
	margin-bottom: 6rem;
	font-family: 'Roboto', sans-serif;
}

.euro-event-blog-breadcrumb-container {
	max-width: 1070px;
	margin: 0 auto;
	padding: 0 20px;
}

.euro-event-blog-breadcrumb .breadcrumb-items {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 8px;
	font-size: 14px;
}

.euro-event-blog-breadcrumb a {
	color: #6F747B;
	text-decoration: none;
	font-weight: 400;
	font-size: 14px;
	transition: color 0.3s ease;
}

.euro-event-blog-breadcrumb a:hover {
	color: #003087;
	text-decoration: underline;
}

.euro-event-blog-breadcrumb .separator {
	color: #6F747B;
	margin: 0 4px;
}

.euro-event-blog-breadcrumb .current-item {
	color: #35393D;
	font-weight: 700;
	font-size: 14px;
}

/* Article */
.euro-event-blog-article {
	padding: 0;
	max-width: 638px;
	margin: 0 auto;
}

/* Header */
.euro-event-blog-header {
	margin-bottom: 30px;
}

.euro-event-blog-title {
	font-size: 25px;
	font-weight: 700;
	line-height: 1.3;
	color: #000000;
	margin: 0 0 20px 0;
	padding: 0;
}

/* Meta Information */
.euro-event-blog-meta {
	display: flex;
	align-items: center;
	gap: 20px;
	flex-wrap: wrap;
	font-size: 14px;
	color: #666666;
}

.euro-event-blog-date {
	display: flex;
    font-size: 11px;
    font-weight: 400;
	align-items: center;
	gap: 6px;
	color: #35393D;
}

.euro-event-blog-date img {
	width: 14px;
	height: 14px;
}

.euro-event-blog-author {
	color: #666666;
}

.euro-event-blog-categories {
	display: flex;
	align-items: center;
	gap: 8px;
}

.euro-event-blog-categories a {
	color: #0066cc;
	text-decoration: none;
	transition: color 0.3s ease;
}

.euro-event-blog-categories a:hover {
	color: #004499;
	text-decoration: underline;
}

.euro-event-blog-categories a:not(:last-child)::after {
	content: ',';
	margin-left: -6px;
	color: #666666;
}

/* Featured Image */
.euro-event-blog-featured-image {
	overflow: hidden;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.euro-event-blog-featured-image img {
	width: 100%;
	height: auto;
	display: block;
	object-fit: cover;
}

/* Content */
.euro-event-blog-content {
	font-size: 12px;
	line-height: 1.8;
	color: #6F747B;
    font-weight: 400;
	margin-top: 30px;
}

.euro-event-blog-content p {
	margin: 0 0 20px 0;
	line-height: 1.8;
}
.euro-event-blog-content h4{
    font-weight: 700;
    font-size: 12px;
	color: #000000;
	margin: 30px 0 20px 0;
	line-height: 1.3;
}

.euro-event-blog-content h1,
.euro-event-blog-content h2,
.euro-event-blog-content h3,
.euro-event-blog-content h5,
.euro-event-blog-content h6 {
	font-weight: 700;
    font-size: 14px;
	color: #000000;
	margin: 30px 0 20px 0;
	line-height: 1.3;
}

.euro-event-blog-content h2 {
	font-size: 28px;
}

.euro-event-blog-content h3 {
	font-size: 24px;
	font-weight: 600;
}

.euro-event-blog-content h4 {
	font-size: 20px;
}

.euro-event-blog-content h5 {
	font-size: 18px;
}

.euro-event-blog-content h6 {
	font-size: 16px;
}

.euro-event-blog-content ul,
.euro-event-blog-content ol {
	margin: 20px 0;
	padding-left: 30px;
}

.euro-event-blog-content li {
	margin-bottom: 10px;
	line-height: 1.8;
}

.euro-event-blog-content a {
	color: #0066cc;
	text-decoration: none;
	transition: color 0.3s ease;
}

.euro-event-blog-content a:hover {
	color: #004499;
	text-decoration: underline;
}

.euro-event-blog-content img {
	max-width: 100%;
	height: auto;
	display: block;
	margin: 20px 0;
	width: 100%;
	border-radius: 8px;
}

.euro-event-blog-content blockquote {
	border-left: 4px solid #0066cc;
	padding: 15px 20px;
	margin: 20px 0;
	background: #f8f9fa;
	font-style: italic;
	color: #555555;
}

.euro-event-blog-content pre {
	background: #f5f5f5;
	border: 1px solid #e5e5e5;
	border-radius: 4px;
	padding: 15px;
	overflow-x: auto;
	margin: 20px 0;
}

.euro-event-blog-content code {
	background: #f5f5f5;
	padding: 2px 6px;
	border-radius: 3px;
	font-family: 'Courier New', monospace;
	font-size: 14px;
}

.euro-event-blog-content pre code {
	background: none;
	padding: 0;
}

.euro-event-blog-content table {
	width: 100%;
	border-collapse: collapse;
	margin: 20px 0;
}

.euro-event-blog-content table th,
.euro-event-blog-content table td {
	border: 1px solid #e5e5e5;
	padding: 12px;
	text-align: left;
}

.euro-event-blog-content table th {
	background: #f5f5f5;
	font-weight: 600;
}

.euro-event-blog-content hr {
	border: none;
	border-top: 1px solid #e5e5e5;
	margin: 30px 0;
}

/* Responsive */
@media (max-width: 768px) {
	.euro-event-blog-article{
		max-width: 335px;
		width: 100%;
	}
	.euro-event-blog-title {
		font-size: 24px;
	}
	
	.euro-event-blog-meta {
		font-size: 13px;
		gap: 15px;
	}
	
	.euro-event-blog-content {
		font-size: 15px;
	}
	
	.euro-event-blog-content h2 {
		font-size: 22px;
	}
	
	.euro-event-blog-content h3 {
		font-size: 20px;
	}
	
	.euro-event-blog-breadcrumb {
		font-size: 13px;
		margin-bottom: 2rem;;
	}
}

@media (max-width: 480px) {
	.euro-event-blog-title {
		font-size: 20px;
	}
	
	.euro-event-blog-meta {
		font-size: 12px;
		gap: 12px;
	}
	
	.euro-event-blog-content {
		font-size: 14px;
	}
	
	.euro-event-blog-content h2 {
		font-size: 20px;
	}
	
	.euro-event-blog-content h3 {
		font-size: 18px;
	}
	
	.euro-event-blog-breadcrumb {
		font-size: 12px;
	}
}
