.news-archive__grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 40px 20px;
}

@media (max-width: 575px) {
	.news-archive__grid {
		grid-template-columns: 100%;
	}
}

.news-archive__column {
}

.news-archive__column:hover .news-archive__thumbnail::after {
	opacity: 1;
	visibility: visible;
}

.news-archive__column:hover .news-archive__title {
	color: #ed1c24;
}

.news-archive__thumbnail {
	position: relative;
	display: block;
}

.news-archive__thumbnail::before {
	content: '';
	display: block;
	padding-bottom: 100%;
}

.news-archive__thumbnail::after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, .75);
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512'%3E%3Cpath fill='%23fff' d='M502.6 278.6c12.5-12.5 12.5-32.8 0-45.3l-128-128c-12.5-12.5-32.8-12.5-45.3 0s-12.5 32.8 0 45.3L402.7 224 32 224c-17.7 0-32 14.3-32 32s14.3 32 32 32l370.7 0-73.4 73.4c-12.5 12.5-12.5 32.8 0 45.3s32.8 12.5 45.3 0l128-128z'/%3E%3C/svg%3E");
	background-position: center;
	background-size: 20px;
	background-repeat: no-repeat;
	transition: 0.3s;
	opacity: 0;
	visibility: hidden;
}

.news-archive__thumbnail img {
	position: absolute;
	top: 0;
	left: 0;
	object-fit: cover;
	width: 100%;
	height: 100%;
}

.news-archive__title {
	display: inline-block;
	margin-top: 20px;
	font-size: 20px;
	line-height: 24px;
	font-weight: 700;
	transition: 0.3s;
}

.news-archive__pagination {
	display: flex;
	justify-content: center;
}

.news-single__content {
}

.news-single__inner {
	padding: 35px 40px;
	background-color: #fff;
	border-radius: 0 0 3px 3px;
}

@media (max-width: 575px) {
	.news-single__inner {
		padding: 30px 15px;
	}
}