.article-items {
    display: flex;
	flex-wrap: wrap;
    gap: 36px;
}

.article-items .article-item {
	position: relative;
    display: flex;
    flex-direction: column;
    width: calc(33.333% - 24px);
}

.article-items .article-item__category {
	position: absolute;
	top: 24px;
	right: 0;
	padding: 5px 20px;
	color: var(--blue-dark);
	background-color: var(--yellow);
	z-index: 1;
}

.article-items .article-item__image {
	position: relative;
	display: flex;
	height: min(233px, 19vw);
	overflow: hidden;
}

.article-items .article-item__image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: var(--transition);
}

.article-items .article-item__image.no-image::after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: var(--blue-dark);
	opacity: 0.2;
	transition: var(--transition);
	z-index: 0;
}

.article-items .article-item__content {
	position: relative;
	flex-grow: 1;
	display: flex;
	flex-direction: column;
	padding: 40px;
	background: var(--blue-ray);
}

.article-items .article-item__content::before {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, var(--orange) 50%, #B7390F 100%);
	opacity: 0;
	transition: var(--transition);
	pointer-events: none;
}

.article-items .article-item__title {
	margin-bottom: 26px;
	transition: var(--transition);
	z-index: 1;
}

.article-items .article-item__date {
	margin-bottom: 36px;
	font-weight: 600;
	transition: var(--transition);
	z-index: 1;
}

.article-items .article-item__button {
    margin-top: auto;
	z-index: 1;
}

/* Hover */
.article-items .article-item:hover .article-item__image img {
	transform: scale(1.1);
}

.article-items .article-item:hover .article-item__content::before {
	opacity: 1;
}

.article-items .article-item:hover .article-item__title {
	color: var(--white);
}

.article-items .article-item:hover .article-item__date {
	color: var(--white);
}

.article-items .article-item:hover .article-item__button .button {
	--button-color: var(--white);
	--button-hover-color: var(--orange);
}

@media (max-width: 1024px) {
	.article-items {
		gap: 30px;
	}

	.article-items .article-item {
		width: calc(50% - 15px);
	}

	.article-items .article-item__image {
		height: 30vw;
	}

	.article-items .article-item__content {
		padding: 32px;
	}

	.article-items .article-item__title {
		margin-bottom: 20px;
	}

	.article-items .article-item__date {
		margin-bottom: 30px;
	}
}

@media (max-width: 767px) {
	.article-items {
		gap: 20px;
	}

	.article-items .article-item {
		width: 100%;
	}

	.article-items .article-item__category {
		top: 16px;
		padding: 3px 12px;
	}

	.article-items .article-item__image {
		height: 50vw;
	}

	.article-items .article-item__content {
		padding: 24px;
	}

	.article-items .article-item__title {
		margin-bottom: 14px;
	}

	.article-items .article-item__date {
		margin-bottom: 24px;
	}
}