/* Wrapper */
.em-6140-wrapper {
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
	color: #111;
	background: #fff;
	max-width: 1400px;
	margin: 0 auto;
}

/* Header */
.em-6140-header {
	display: flex;
	align-items: flex-end;
	margin-bottom: 40px;
	border-bottom: 2px solid #111;
	padding-bottom: 10px;
}

.em-6140-logo-date {
	writing-mode: vertical-rl;
	transform: rotate(180deg);
	font-size: 0.75rem;
	text-transform: uppercase;
	letter-spacing: 1px;
	color: #e32636; /* Default accent */
	font-weight: 600;
	margin-right: 20px;
	padding-bottom: 10px;
}

.em-6140-logo {
	flex-grow: 1;
}

.em-6140-logo-text {
	font-family: "Playfair Display", Georgia, serif;
	font-size: clamp(4rem, 10vw, 8rem);
	line-height: 0.8;
	margin: 0;
	color: #e32636;
	letter-spacing: -2px;
	font-weight: 900;
}

.em-6140-logo img {
	max-height: 120px;
	width: auto;
	display: block;
}

/* Layout */
.em-6140-layout {
	display: grid;
	grid-template-columns: 6fr 4fr;
	gap: 60px;
}

@media (max-width: 991px) {
	.em-6140-layout {
		grid-template-columns: 1fr;
		gap: 40px;
	}
	.em-6140-header {
		flex-direction: column;
		align-items: flex-start;
	}
	.em-6140-logo-date {
		writing-mode: horizontal-tb;
		transform: none;
		margin-bottom: 10px;
		margin-right: 0;
		padding-bottom: 0;
	}
}

/* Links */
.em-6140-featured-link,
.em-6140-list-item {
	text-decoration: none;
	color: inherit;
	display: block;
	transition: opacity 0.3s ease;
}

.em-6140-featured-link:hover,
.em-6140-list-item:hover {
	opacity: 0.9;
}

/* Typography Hierarchy */
.em-6140-category {
	display: block;
	font-size: 0.7rem;
	text-transform: uppercase;
	letter-spacing: 1px;
	font-weight: 700;
	color: #e32636;
	margin-bottom: 10px;
}

.em-6140-featured-title,
.em-6140-list-title {
	margin: 0 0 15px 0;
	line-height: 1.2;
}

.em-6140-featured-title {
	font-size: clamp(2rem, 4vw, 3.5rem);
	font-weight: 700;
}

.em-6140-list-title {
	font-size: 1.4rem;
	font-weight: 600;
	margin-bottom: 5px;
}

.em-6140-excerpt {
	font-size: 1.1rem;
	line-height: 1.5;
	color: #444;
	margin-bottom: 20px;
}

.em-6140-author {
	font-size: 0.8rem;
	font-weight: 700;
	text-transform: uppercase;
	color: #111;
}

/* Featured Media */
.em-6140-featured-media-wrapper {
	overflow: hidden;
	margin-bottom: 20px;
	position: relative;
	aspect-ratio: 3/4;
	background: #f5f5f5;
}

.em-6140-featured-img,
.em-6140-featured-video {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.6s ease;
	display: block;
}

.em-6140-featured-link:hover .em-6140-featured-img,
.em-6140-featured-link:hover .em-6140-featured-video {
	transform: scale(1.03);
}

/* Article List */
.em-6140-list {
	display: flex;
	flex-direction: column;
}

.em-6140-article {
	padding: 25px 0;
	border-bottom: 1px solid #eaeaea;
}

.em-6140-list-item:first-child .em-6140-article {
	padding-top: 0;
}

.em-6140-list-item:last-child .em-6140-article {
	border-bottom: none;
}

.em-6140-article.em-6140-has-thumb {
	display: grid;
	grid-template-columns: 100px 1fr;
	gap: 20px;
}

.em-6140-list-thumb img {
	width: 100%;
	height: auto;
	aspect-ratio: 1/1;
	object-fit: cover;
}

/* Hover effects */
.em-6140-featured-link:hover .em-6140-featured-title,
.em-6140-list-item:hover .em-6140-list-title {
	text-decoration: underline;
	text-decoration-thickness: 2px;
	text-underline-offset: 4px;
}