/* 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: #000000;
	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: #000000;
	margin: 0 4px;
}

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

/* Article */
.euro-event-blog-article {
	padding: 0;
	width: 100%;
	margin: 0 auto;
}

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

.euro-event-blog-title {
	font-size: 34px;
	font-weight: 700;
	line-height: 1.2;
	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: 16px;
	line-height: 1.8;
	color: #000;
    font-weight: 400;
	margin-top: 30px;
	text-align: justify;
}

.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 {
		width: 100%;
	}
	.euro-event-blog-title {
		font-size: 24px;
	}
	
	.euro-event-blog-meta {
		font-size: 13px;
		gap: 15px;
	}
	
	.euro-event-blog-content {
		font-size: 14px;
	}
	
	.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;
	}
}

/* ==========================================================================
   Two-column layout: article main + sidebar
   ========================================================================== */

.euro-event-blog-layout {
	display: flex;
	align-items: stretch;
	gap: 48px;
	max-width: 1340px;
	margin: 0 auto;
	padding: 0 20px;
}

.euro-event-blog-main {
	flex: 1;
	min-width: 0;
}

/* Sidebar column */
.euro-event-blog-sidebar {
	width: 320px;
	flex-shrink: 0;
}

.euro-event-blog-sidebar-inner {
	position: sticky;
	top: 100px;
	display: flex;
	flex-direction: column;
	gap: 24px;
}

/* Widget card shell */
.euro-event-sidebar-widget {
	background: #ffffff;
	border: 1px solid #e8e8e8;
	border-radius: 12px;
	overflow: hidden;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.euro-event-sidebar-widget-title {
	font-family: 'Roboto', sans-serif;
	font-size: 14px;
	font-weight: 700;
	color: #ffffff;
	margin: 0;
	padding: 14px 20px;
	background: #0B4F9F;
	letter-spacing: 0.3px;
	text-transform: uppercase;
}

/* ---- Recent Posts ---- */
.euro-event-sidebar-post-list {
	list-style: none;
	margin: 0;
	padding: 0;
}

.euro-event-sidebar-post-item {
	border-bottom: 1px solid #f0f0f0;
}

.euro-event-sidebar-post-item:last-child {
	border-bottom: none;
}

.euro-event-sidebar-post-link {
	display: flex;
	align-items: flex-start;
	gap: 12px;
	padding: 14px 16px;
	text-decoration: none;
	color: inherit;
	transition: background 0.2s;
}

.euro-event-sidebar-post-link:hover {
	background: #f7f9fc;
}

.euro-event-sidebar-post-thumb {
	width: 68px;
	height: 68px;
	flex-shrink: 0;
	border-radius: 6px;
	overflow: hidden;
	background: #f0f0f0;
}

.euro-event-sidebar-post-thumb img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.euro-event-sidebar-post-info {
	display: flex;
	flex-direction: column;
	gap: 5px;
	min-width: 0;
}

.euro-event-sidebar-post-title {
	font-family: 'Roboto', sans-serif;
	font-size: 13px;
	font-weight: 600;
	color: #1a1a1a;
	line-height: 1.4;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
	transition: color 0.2s;
}

.euro-event-sidebar-post-link:hover .euro-event-sidebar-post-title {
	color: #0B4F9F;
}

.euro-event-sidebar-post-date {
	font-family: 'Roboto', sans-serif;
	font-size: 11px;
	color: #999999;
}

/* ---- Featured Products (2 × 2 grid) ---- */
.euro-event-sidebar-product-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 1px;
	background: #eeeeee;
}

.euro-event-sidebar-product-item {
	display: flex;
	flex-direction: column;
	background: #ffffff;
	text-decoration: none;
	color: inherit;
	padding: 12px;
	gap: 8px;
	transition: background 0.2s;
}

.euro-event-sidebar-product-item:hover {
	background: #f7f9fc;
}

.euro-event-sidebar-product-thumb {
	width: 100%;
	aspect-ratio: 1 / 1;
	border-radius: 6px;
	overflow: hidden;
	background: #f5f5f5;
}

.euro-event-sidebar-product-thumb img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.euro-event-sidebar-product-placeholder {
	width: 100%;
	height: 100%;
	background: #e8edf3;
}

.euro-event-sidebar-product-title {
	font-family: 'Roboto', sans-serif;
	font-size: 12px;
	font-weight: 600;
	color: #1a1a1a;
	line-height: 1.4;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
	transition: color 0.2s;
}

.euro-event-sidebar-product-item:hover .euro-event-sidebar-product-title {
	color: #0B4F9F;
}

/* ==========================================================================
   Sidebar responsive behaviour
   ========================================================================== */

/* Tablet / iPad: stack sidebar below article, widgets in a single column */
@media (max-width: 1100px) {
	.euro-event-blog-layout {
		flex-direction: column;
		max-width: 720px;
	}

	.euro-event-blog-sidebar {
		width: 100%;
	}

	.euro-event-blog-sidebar-inner {
		position: static;
		flex-direction: column;
	}

	.euro-event-sidebar-widget {
		flex: 1 1 auto;
	}
}

/* Mobile: single-column, no sticky */
@media (max-width: 768px) {
	.euro-event-blog-layout {
		padding: 0 16px;
		gap: 24px;
	}

	.euro-event-blog-sidebar-inner {
		flex-direction: column;
	}

	.euro-event-sidebar-widget {
		flex: 1 1 auto;
	}
}
