.paragraph-last-articles,
.paragraph-all-articles {
	display: flex;
	flex-direction: column;
	row-gap: 2rem;
}

.paragraph-all-articles__articles,
.paragraph-last-articles__articles {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	column-gap: 2rem;
	row-gap: 2rem;
}

.paragraph-all-articles__articles > .views-row,
.paragraph-last-articles__articles > .views-row {
	display: grid;
	grid-template-columns: 1fr;
	grid-template-rows: 1fr;
	position: relative;
}

.paragraph-all-articles__articles > .views-row:after,
.paragraph-last-articles__articles > .views-row:after {
	content: '';
	display: inline-block;
	height: 100%;
	position: absolute;
	z-index: 0;
	right: 0;
	bottom: 0;
	left: 0;
	background-image: linear-gradient(50deg, #BE1212 0, #EB6013 47%, #D89E38 100%);
	border-radius: 30px;
	grid-column: 1;
	grid-row: 1;
}

.view-articles {
	display: flex;
	flex-direction: column;
	row-gap: 1rem;
	font-size: 15px;
	padding: 30px 16px 20px;
	z-index: 2;
	background-color: #fff;
	border-radius: 30px;
	position: relative;
	height: 98%;
}

.view-articles__image img {
	width: 100%;
	height: auto;
}

.view-articles__date {
	font-weight: 500;
}

.view-articles__title {
	font-size: 16px;
}

.view-articles__title a {
	font-weight: 500;
	color: transparent;
	background: linear-gradient(86deg, #BE1212 0, #EB6013 47%, #D89E38 100%);
	background-clip: text;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	line-height: 1.65;
}

.view-articles__text {
	line-height: 1.65;
}

.paragraph-last-articles__button-all-articles {
	display: flex;
	justify-content: center;
}

.paragraph-last-articles__button-all-articles a {
	display: block;
	width: 100%;
	margin-top: 32px;
	font-family: inherit;
	font-size: 20px;
	font-weight: 700;
	color: #fff;
	background-image: var(--gradient-orange);
	border: 0;
	border-radius: 8px;
	width: fit-content;
	padding: 14px 30px;
}




/* ADAPTIVE */
@media (max-width: 1150px) {
	.paragraph-all-articles__articles,
	.paragraph-last-articles__articles {
		grid-template-columns: 1fr 1fr;
	}
}

@media (max-width: 991px) {
	.paragraph-all-articles__articles,
	.paragraph-last-articles__articles {
		grid-template-columns: 1fr;
	}
}