.site-main-articles.articles {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 20px;
}

.articles-item {
	position: relative;
	overflow: hidden;
	height: 100%;
	min-height: 320px;
}

.articles-item--overlay,
.articles-item--text-only {
	display: none;
	width: 100%;
	height: 100%;
}

@media (min-width: 1421px) {
	.site-main-articles.articles {
		grid-template-columns: repeat(4, 1fr);
	}

	.articles-item .articles-item--overlay,
	.articles-item .articles-item--text-only {
		display: none;
	}

	.articles-item:nth-child(8n + 1) .articles-item--overlay,
	.articles-item:nth-child(8n + 3) .articles-item--overlay,
	.articles-item:nth-child(8n + 6) .articles-item--overlay,
	.articles-item:nth-child(8n + 8) .articles-item--overlay {
		display: block;
	}

	.articles-item:nth-child(8n + 2) .articles-item--text-only,
	.articles-item:nth-child(8n + 4) .articles-item--text-only,
	.articles-item:nth-child(8n + 5) .articles-item--text-only,
	.articles-item:nth-child(8n + 7) .articles-item--text-only {
		display: block;
	}
}

@media (min-width: 992px) and (max-width: 1420px) {
	.site-main-articles.articles {
		grid-template-columns: repeat(3, 1fr);
	}

	.articles-item .articles-item--overlay,
	.articles-item .articles-item--text-only {
		display: none;
	}

	.articles-item:nth-child(odd) .articles-item--overlay {
		display: block;
	}

	.articles-item:nth-child(even) .articles-item--text-only {
		display: block;
	}
}

@media (min-width: 577px) and (max-width: 991px) {
	.site-main-articles.articles {
		grid-template-columns: repeat(2, 1fr);
	}

	.articles-item .articles-item--overlay,
	.articles-item .articles-item--text-only {
		display: none;
	}

	.articles-item:nth-child(4n + 1) .articles-item--overlay,
	.articles-item:nth-child(4n + 4) .articles-item--overlay {
		display: block;
	}

	.articles-item:nth-child(4n + 2) .articles-item--text-only,
	.articles-item:nth-child(4n + 3) .articles-item--text-only {
		display: block;
	}
}

@media (max-width: 576px) {
	.site-main-articles.articles {
		grid-template-columns: 1fr;
	}

	.articles-item .articles-item--overlay,
	.articles-item .articles-item--text-only {
		display: none;
	}

	.articles-item:nth-child(odd) .articles-item--overlay {
		display: block;
	}

	.articles-item:nth-child(even) .articles-item--text-only {
		display: block;
	}
}

.articles-item--overlay {
	background: #000;
}

.articles-item-card-link {
	display: block;
	position: relative;
	width: 100%;
	height: 100%;
	text-decoration: none;
}

.articles-item--overlay .articles-item-pic {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 1;
}

.articles-item--overlay .articles-item-img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.4s ease;
	object-position: right;
}

.articles-item-card-link:hover .articles-item-img {
	transform: scale(1.05);
}

.articles-item-overlay-content {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	z-index: 2;
	padding: 24px;
	background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.85) 100%);
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 15px;
}

.articles-item-hover-arrow {
	flex-shrink: 0;
	opacity: 0;
	transform: translateX(-10px);
	transition: opacity 0.3s ease, transform 0.3s ease;
}

.articles-item-hover-arrow img {
	display: block;
}

.articles-item-card-link:hover .articles-item-hover-arrow {
	opacity: 1;
	transform: translateX(0);
}

.articles-item--text-only .articles-item-info {
	height: 100%;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	background-color: var(--green);
	padding: 25px;
}

.articles-item-info-top {
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.articles-item-info-top a {
	text-decoration: none;
	color: inherit;
}

.articles-item-title {
	font-weight: 600;
	font-size: 18px;
	color: #fff;
	text-transform: uppercase;
	line-height: 1.2;
}

.articles-item-title--black {
	color: #111;
}

.articles-item-title--overlay {
	color: #fff;
}

.articles-item-text--white {
	font-size: 14px;
	line-height: 1.5;
	color: rgba(255, 255, 255, 0.9);

	display: -webkit-box;
	-webkit-line-clamp: 5;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.articles-item-text--black {
	font-size: 14px;
	color: #555;
	line-height: 1.5;
}

.articles-item-bottom {
	display: flex;
	justify-content: flex-end;
	margin-top: 20px;
}

.articles-item-button .articles-item-link {
	text-decoration: none;
	width: 50px;
	aspect-ratio: 1 / 1;
	display: flex;
	justify-content: center;
	align-items: center;
	background-color: #fff;
}

.articles-item-button .articles-item-link .articles-item-button__img {
	transition: transform 0.3s ease;
}

.articles-item-button .articles-item-link:hover .articles-item-button__img {
	transform: translateX(5px);
}