.newsletter_row {
	position: relative;
	cursor: pointer;
	display: flex;
	flex-direction: row;
	flex-wrap: nowrap;
	align-items: center;
	justify-content: space-between;
	padding: 24px 12px;
	border-bottom: 1px solid rgba(0, 0, 0, 0.10);
	transition: background-color 0.2s ease, padding-left 0.2s ease;
	gap: 20px;
}

.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 {
	display: flex;
	flex-direction: row;
	flex-wrap: nowrap;
	align-items: flex-start;
	gap: 25px;
	flex: 1 1 auto;
	min-width: 0;
}

.newsletter_thumb {
	width: 110px;
	height: 80px;
	min-width: 110px;
	flex-shrink: 0;
	border-radius: 4px;
	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: flex-start;
	flex: 1 1 auto;
	min-width: 0;
}

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

.newsletter_title {
	font-family: "Droid Serif", serif;
	font-size: clamp(17px, 1.5vw, 21px);
	line-height: clamp(23px, 1.5vw, 28px);
	font-weight: 400;
	margin: 0 0 6px 0;
	white-space: normal;
	word-break: break-word;
}

.newsletter_title a {
	color: #000000;
	text-decoration: none;
	transition: color 0.2s ease;
}

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

.newsletter_preview {
	font-family: 'museo_sans300', sans-serif;
	font-size: 14px;
	line-height: 22px;
	color: #636363;
	margin: 0;
	white-space: normal;
	word-break: break-word;
}

.newsletter_action {
	flex: 0 0 auto;
	margin-left: 10px;
}

.btn_newsletter_circle {
	width: 36px;
	height: 36px;
	border-radius: 50%;
	background-color: #000000;
	color: #ffffff;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	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;
		padding: 18px 0;
		gap: 15px;
	}
	
	.newsletter_row:hover {
		padding-left: 0;
		background-color: transparent;
	}
	
	.newsletter_row_main {
		flex-direction: column;
		align-items: flex-start;
		width: 100%;
		gap: 12px;
	}
	
	.newsletter_thumb {
		width: 100%;
		height: 160px;
		min-width: 100%;
	}
	
	.newsletter_action {
		display: none;
	}
}

.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;
}

.pagination {
	padding-top: 30px;
	font-size: 14px;
}

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