#articles a {
	color: inherit;
	text-decoration: none;
}

#articles a:hover {
	color: inherit;
}

.fabreex-articles-archive {
	padding-bottom: 70px;
}

.fabreex-articles-breadcrumbs {
	margin: 30px 0 20px;
}

.fabreex-articles-breadcrumbs .breadcrumbs-list-item:last-child .n-breadcrumb-item__separator {
	display: none;
}

.fabreex-articles-heading {
	margin-bottom: 35px;
}

.fabreex-articles-heading h1 {
	color: var(--black);
	font-size: 32px;
	font-weight: 600;
	line-height: 1.2;
	margin: 0;
}

.fabreex-sales-date-filter {
	align-items: stretch;
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin: -10px 0 35px;
}

.fabreex-sales-date-range {
	align-items: stretch;
	background: var(--white);
	border: 1px solid var(--gray);
	display: flex;
	min-height: 40px;
	min-width: min(100%, 520px);
}

.fabreex-sales-date-field {
	display: flex;
	flex: 1 1 0;
	min-width: 0;
	position: relative;
}

.fabreex-sales-date-field span {
	color: var(--gray);
	font-size: 12px;
	left: 10px;
	line-height: 1;
	pointer-events: none;
	position: absolute;
	top: 5px;
}

.fabreex-sales-date-field input {
	background: transparent;
	border: 0;
	color: var(--black);
	font-size: 16px;
	height: 100%;
	line-height: 1.25;
	min-width: 0;
	outline: 0;
	padding: 17px 10px 4px;
	width: 100%;
}

.fabreex-sales-date-field input:focus {
	background: var(--bg);
}

.fabreex-sales-date-separator {
	align-items: center;
	color: var(--gray);
	display: flex;
	flex: 0 0 40px;
	justify-content: center;
}

.fabreex-sales-date-separator svg {
	display: block;
	height: 18px;
	width: 18px;
}

.fabreex-sales-date-submit,
.fabreex-sales-date-reset {
	align-items: center;
	background: var(--navy);
	border: 1px solid var(--navy);
	color: var(--white);
	cursor: pointer;
	display: inline-flex;
	font-size: 16px;
	font-weight: 400;
	height: 42px;
	justify-content: center;
	line-height: 1.25;
	padding: 0 20px;
	text-decoration: none;
	transition: background .2s linear, border-color .2s linear, color .2s linear;
}

.fabreex-sales-date-submit:hover,
.fabreex-sales-date-reset:hover {
	background: var(--black);
	border-color: var(--black);
	color: var(--white);
}

.fabreex-sales-date-reset {
	background: var(--white);
	color: var(--black);
}

.articles-wrapper {
	display: flex;
	flex-direction: column;
	gap: 50px;
}

.articles-list {
	display: flex;
	flex-wrap: wrap;
	gap: 40px;
}

.articles-list .actions-card {
	width: calc(25% - 30px);
}

.actions-card {
	color: var(--black);
	display: flex;
	flex-direction: column;
	min-width: 0;
	transition: box-shadow .2s linear, transform .2s linear;
	width: 100%;
}

.actions-card:hover {
	box-shadow: 0 26px 19px 0 rgba(84, 84, 84, .24);
	transform: translateY(-2px);
}

.actions-card-img {
	background: var(--gray-bg);
	display: block;
	height: 280px;
	overflow: hidden;
	width: 100%;
}

.actions-card-img img {
	display: block;
	height: 100%;
	object-fit: cover;
	object-position: center center;
	width: 100%;
}

.actions-card-info {
	background-color: var(--gray-bg);
	box-shadow: 5px 5px 100px rgba(255, 255, 255, .9);
	display: block;
	min-height: 150px;
	padding: 20px;
	position: relative;
	transition: .2s linear;
}

.actions-card-info-title {
	color: var(--black);
	display: -webkit-box;
	font-size: 18px;
	font-weight: 700;
	height: 45px;
	line-height: 1.25;
	margin-bottom: 10px;
	overflow: hidden;
	text-overflow: ellipsis;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
}

.actions-card-info-text {
	color: var(--gray);
	display: -webkit-box;
	font-size: 14px;
	height: 36px;
	line-height: 18px;
	margin-bottom: 20px;
	overflow: hidden;
	position: relative;
	text-overflow: ellipsis;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
}

.actions-card-info-text p {
	margin: 0;
}

.actions-card-info-text img {
	display: none;
}

.actions-card-info-text :not(img) {
	color: var(--gray) !important;
	display: inline !important;
	font-size: 14px !important;
	font-style: normal !important;
	font-weight: 400 !important;
}

.actions-card-info-date {
	background: var(--navy);
	border-radius: 4px;
	bottom: -10px;
	color: var(--white);
	font-size: 12px;
	left: 20px;
	padding: 5px 10px;
	position: absolute;
}

.articles-pagination {
	align-self: center;
}

.articles-pagination .nav-links {
	align-items: center;
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	justify-content: center;
}

.articles-pagination .page-numbers {
	align-items: center;
	background: var(--gray-bg);
	color: var(--black);
	display: inline-flex;
	font-size: 14px;
	height: 36px;
	justify-content: center;
	min-width: 36px;
	padding: 0 10px;
}

.articles-pagination .page-numbers.current {
	background: var(--navy);
	color: var(--white);
}

@media screen and (max-width: 1095px) {
	.articles-list .actions-card {
		width: calc(33.333% - 27px);
	}
}

@media screen and (max-width: 765px) {
	.fabreex-articles-heading h1 {
		font-size: 26px;
	}

	.fabreex-sales-date-filter {
		margin-top: -15px;
	}

	.articles-list {
		gap: 20px;
	}

	.articles-list .actions-card {
		width: calc(50% - 10px);
	}

	.actions-card-img {
		height: 240px;
	}
}

@media screen and (max-width: 525px) {
	.fabreex-sales-date-filter {
		display: block;
	}

	.fabreex-sales-date-range {
		min-width: 0;
		width: 100%;
	}

	.fabreex-sales-date-submit,
	.fabreex-sales-date-reset {
		margin-top: 10px;
		width: 100%;
	}

	.articles-list {
		gap: 15px;
	}

	.articles-list .actions-card {
		width: 100%;
	}

	.actions-card-img {
		height: 220px;
	}

	.actions-card-info-title {
		font-size: 15px;
		height: auto;
		min-height: 38px;
	}
}
