.presse-wrapper {
	--presse-color-text: var(--e-global-color-text, var(--wp--preset--color--contrast, #242424));
	--presse-color-muted: #626262;
	--presse-color-surface: #f2f0ed;
	--presse-color-border: rgba(36, 36, 36, 0.16);
	--presse-button-background: linear-gradient(90deg, #1d4778 0%, #165a6b 100%);
	--presse-button-text: #ffffff;
	--presse-button-border-color: #1b506f;
	--presse-button-border-radius: 999px;
	--presse-font-family: var(--e-global-typography-text-font-family, inherit);
	--presse-heading-font-family: var(--e-global-typography-primary-font-family, inherit);
	--presse-heading-font-size: 1.45rem;
	--presse-heading-font-weight: var(--e-global-typography-primary-font-weight, 600);
	--presse-heading-line-height: var(--e-global-typography-primary-line-height, 1.3);
	--presse-body-font-size: 1rem;
	--presse-body-line-height: var(--e-global-typography-text-line-height, 1.7);
	--presse-meta-font-size: 0.95rem;
	--presse-button-font-family: var(--e-global-typography-accent-font-family, inherit);
	--presse-button-font-size: var(--e-global-typography-accent-font-size, 0.95rem);
	--presse-button-font-weight: var(--e-global-typography-accent-font-weight, 600);
	--presse-button-padding: 0.8rem 1.15rem;
	--presse-filter-text-transform: uppercase;
	--presse-card-gap: 2.75rem;
	--presse-card-padding: 3rem;
	color: var(--presse-color-text);
	font-family: var(--presse-font-family);
}

.presse-filter {
	align-items: center;
	display: flex;
	flex-wrap: wrap;
	gap: 0.75rem 1.25rem;
	margin: 0 0 3rem;
}

.presse-filter a {
	border-bottom: 1px solid transparent;
	color: currentColor;
	display: inline-flex;
	font-family: var(--presse-button-font-family);
	font-size: var(--presse-meta-font-size);
	font-weight: var(--presse-button-font-weight);
	line-height: 1.3;
	padding: 0.2rem 0;
	text-decoration: none;
	text-transform: var(--presse-filter-text-transform);
	transition: border-color 160ms ease, color 160ms ease;
}

.presse-filter a:hover,
.presse-filter a:focus,
.presse-filter a.is-active,
.presse-filter .is-active {
	border-color: currentColor;
	color: var(--presse-color-text);
}

.presse-grid {
	display: flex;
	flex-direction: column;
	gap: 0;
}

.presse-card {
	align-items: center;
	border-bottom: 1px solid var(--presse-color-border);
	display: grid;
	gap: var(--presse-card-gap);
	grid-template-columns: minmax(240px, 44%) minmax(0, 1fr);
	padding: var(--presse-card-padding) 0;
}

.presse-card:first-child {
	padding-top: 0;
}

.presse-card--no-image {
	grid-template-columns: minmax(0, 1fr);
}

.presse-card__thumb {
	align-items: center;
	aspect-ratio: 4 / 3;
	background: var(--presse-color-surface);
	display: flex;
	justify-content: center;
	overflow: hidden;
	width: 100%;
}

.presse-card__thumb img,
.presse-card__image {
	box-sizing: border-box;
	display: block;
	height: 100%;
	object-fit: contain;
	padding: 1.25rem;
	width: 100%;
}

.presse-card__body {
	display: flex;
	flex-direction: column;
	gap: 1rem;
	max-width: 36rem;
}

.presse-card__meta {
	align-items: center;
	color: var(--presse-color-muted);
	display: flex;
	flex-wrap: wrap;
	font-size: var(--presse-meta-font-size);
	font-weight: 500;
	gap: 0.5rem;
	line-height: 1.4;
}

.presse-card__title {
	color: var(--presse-color-text);
	font-family: var(--presse-heading-font-family);
	font-size: var(--presse-heading-font-size);
	font-weight: var(--presse-heading-font-weight);
	line-height: var(--presse-heading-line-height);
	margin: 0;
}

.presse-card__excerpt {
	color: var(--presse-color-muted);
	font-size: var(--presse-body-font-size);
	line-height: var(--presse-body-line-height);
	margin: 0;
}

.presse-card__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 0.75rem;
	margin-top: 0.35rem;
}

.presse-wrapper .presse-btn.elementor-button,
.presse-btn {
	align-items: center;
	background: var(--presse-button-background) !important;
	border: 1px solid var(--presse-button-border-color) !important;
	border-radius: var(--presse-button-border-radius) !important;
	color: var(--presse-button-text) !important;
	display: inline-flex;
	font-family: var(--presse-button-font-family);
	font-size: var(--presse-button-font-size);
	font-weight: var(--presse-button-font-weight);
	justify-content: center;
	line-height: 1.2;
	min-height: 2.75rem;
	padding: var(--presse-button-padding);
	text-decoration: none;
	transition: background-color 160ms ease, border-color 160ms ease, color 160ms ease, opacity 160ms ease;
}

.presse-btn:hover,
.presse-btn:focus {
	color: var(--presse-button-text) !important;
	opacity: 0.86;
	text-decoration: none;
}

.presse-wrapper .presse-btn--ghost.elementor-button,
.presse-btn--ghost {
	background: var(--presse-button-background) !important;
	color: var(--presse-button-text) !important;
}

.presse-wrapper .presse-btn--ghost.elementor-button:hover,
.presse-wrapper .presse-btn--ghost.elementor-button:focus,
.presse-btn--ghost:hover,
.presse-btn--ghost:focus {
	background: var(--presse-button-background);
	color: var(--presse-button-text);
	opacity: 1;
}

.presse-pagination {
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem;
	justify-content: center;
	margin-top: 2.5rem;
}

.presse-pagination .page-numbers {
	border: 1px solid var(--presse-color-border);
	color: currentColor;
	display: inline-flex;
	line-height: 1;
	padding: 0.75rem 0.9rem;
	text-decoration: none;
}

.presse-pagination .page-numbers.current,
.presse-pagination .page-numbers:hover,
.presse-pagination .page-numbers:focus {
	background: var(--presse-button-background);
	border-color: var(--presse-button-background);
	color: var(--presse-button-text);
}

.presse-empty {
	color: var(--presse-color-muted);
	margin: 0;
}

@media (max-width: 760px) {
	.presse-wrapper {
		--presse-card-gap: 1.5rem;
		--presse-card-padding: 2.25rem;
		--presse-heading-font-size: 1.25rem;
	}

	.presse-filter {
		margin-bottom: 2rem;
	}

	.presse-card {
		grid-template-columns: minmax(0, 1fr);
	}

	.presse-card__body {
		max-width: none;
	}
}
