.newsletter_row {
	position: relative;
	cursor: pointer;
	padding: 20px 10px;
	border-bottom: 1px solid rgba(0, 0, 0, 0.1);
	transition: background-color 0.2s ease, padding-left 0.2s ease;
}

.newsletter_row:hover {
	background-color: #ffffff;
}

.stretched_link::after {
	content: "";
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: 1;
	pointer-events: auto;
}

.newsletter_row_main {
	gap: 25px;
	flex: 1;
}

.newsletter_thumb {
	width: 80px;
	height: 60px;
	min-width: 80px;
	overflow: hidden;
	background: #dfdfdf;
	display: block;
}

.newsletter_thumb img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: transform 0.3s ease;
}

.newsletter_info {
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.newsletter_date {
	display: block;
	font-family: 'museo_sans500', sans-serif;
	font-size: 13px;
	line-height: 18px;
	color: #F45656;
	margin-bottom: 4px;
}

.newsletter_title {
	font-family: "Droid Serif", serif;
	font-size: clamp(16px, 1.5vw, 20px);
	line-height: clamp(22px, 1.5vw, 26px);
	font-weight: 400;
	margin: 0;
}

.newsletter_title a {
	color: #000000;
	transition: color 0.2s ease;
}

.newsletter_row:hover .newsletter_title a {
	color: #F45656;
}

.newsletter_action {
	margin-left: 20px;
}

.newsletter_action .btn_newsletter_circle {
	width: 34px;
	height: 34px;
	border-radius: 50%;
	background-color: #000000;
	color: #ffffff;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border: 1px solid transparent;
	transition: background-color 0.2s ease, transform 0.2s ease;
}

.newsletter_action .btn_newsletter_circle .material-symbols-outlined {
	font-size: 18px;
	transition: transform 0.2s ease;
}

.newsletter_row:hover .newsletter_action .btn_newsletter_circle {
	background-color: #F45656;
}

@media (max-width: 650px) {
	.newsletter_row {
		flex-direction: column;
		align-items: flex-start !important;
		gap: 15px;
	}

	.newsletter_row_main {
		gap: 15px;
		width: 100%;
	}

	.newsletter_thumb {
		width: 65px;
		height: 50px;
		min-width: 65px;
	}

	.newsletter_action {
		margin-left: 80px;
	}
}

.newsletter_nav_bar {
	padding: clamp(20px, 3vw, 40px) 0 20px 0;
	margin-bottom: 20px;
	border-bottom: 1px solid rgba(0, 0, 0, 0.10);
	display: flex;
	align-items: center;
	justify-content: flex-start;
}

.back_to_archive_btn {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	color: #000000;
	font-family: 'museo_sans500', sans-serif;
	font-size: 14px;
	line-height: 20px;
	text-decoration: none;
	transition: color 0.2s ease, gap 0.2s ease;
}

.back_to_archive_btn .material-symbols-outlined {
	font-size: 18px;
	transition: transform 0.2s ease;
}

.back_to_archive_btn:hover {
	color: #F45656;
}

.newsletter_view_container {
	margin: 0 auto;
	padding-top:20px;
	margin-bottom: 20px;
}

@media (max-width: 768px) {
	.newsletter_nav_bar {
		padding-top: 20px;
		margin-bottom: 15px;
	}
	
	.newsletter_view_container {
		padding: 15px;
		margin-bottom: 40px;
		box-shadow: none;
	}
}