.nr-press-list {
	--nr-text: #2F3E46;
	--nr-forest: #2F5D50;
	--nr-sage: #5F7F73;
	--nr-sage-light: #D4E1DB;
	--nr-terracotta: #CD7348;
	--nr-link: #3B6E78;
	color: var(--nr-text);
	font-family: Calibri, Arial, Helvetica, sans-serif;
}

.nr-press-list * {
	box-sizing: border-box;
}

.nr-press-filters {
	align-items: end;
	display: grid;
	gap: 14px;
	grid-template-columns: repeat(3, minmax(0, 1fr)) auto;
	margin: 0 0 30px;
}

.nr-press-filter label {
	color: var(--nr-forest);
	display: block;
	font-size: 13px;
	font-weight: 700;
	margin: 0 0 7px;
}

.nr-press-filter select {
	background: #fff;
	border: 1px solid rgba(47, 93, 80, .22);
	border-radius: 8px;
	color: var(--nr-text);
	font: inherit;
	min-height: 44px;
	padding: 0 12px;
	width: 100%;
}

.nr-press-reset,
.nr-press-more {
	background: #fff;
	border: 1px solid rgba(47, 93, 80, .28);
	border-radius: 8px;
	color: var(--nr-forest);
	cursor: pointer;
	font: inherit;
	font-weight: 700;
	min-height: 44px;
	padding: 0 16px;
	transition: color .2s ease, border-color .2s ease, transform .2s ease;
}

.nr-press-reset:hover,
.nr-press-more:hover {
	border-color: rgba(205, 115, 72, .55);
	color: var(--nr-terracotta);
	transform: translateY(-1px);
}

.nr-press-grid {
	display: grid;
	gap: 18px;
	grid-template-columns: repeat(3, minmax(0, 1fr));
}

.nr-press-card {
	background: #fff;
	border: 1px solid rgba(47, 93, 80, .14);
	border-radius: 10px;
	box-shadow: 0 12px 28px rgba(47, 62, 70, .06);
	display: flex;
	flex-direction: column;
	min-height: 250px;
	padding: 24px;
	transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}

.nr-press-card:hover {
	border-color: rgba(205, 115, 72, .35);
	box-shadow: 0 18px 38px rgba(47, 62, 70, .1);
	transform: translateY(-4px);
}

.nr-press-card[hidden] {
	display: none !important;
}

.nr-press-card__top {
	align-items: center;
	display: flex;
	gap: 16px;
	margin: 0 0 18px;
}

.nr-press-card__logo {
	aspect-ratio: auto !important;
	background: transparent !important;
	border: 0 !important;
	border-radius: 0 !important;
	box-shadow: none !important;
	display: block;
	flex: 0 0 auto;
	height: auto !important;
	max-height: 46px !important;
	max-width: 92px !important;
	object-fit: contain !important;
	padding: 0 !important;
	width: auto !important;
}

.nr-press-card__logo--text {
	align-items: center;
	background: #F6F8F6 !important;
	border: 1px solid rgba(47, 93, 80, .12) !important;
	border-radius: 6px !important;
	color: var(--nr-forest);
	display: inline-flex;
	font-size: 11px;
	font-weight: 800;
	justify-content: center;
	line-height: 1.15;
	max-width: 104px;
	min-height: 34px;
	min-width: 64px;
	padding: 6px 8px !important;
	text-align: center;
}

.nr-press-card__meta {
	color: var(--nr-sage);
	display: flex;
	flex-wrap: wrap;
	font-size: 14px;
	font-weight: 700;
	gap: 6px 9px;
	line-height: 1.35;
}

.nr-press-card__meta span + span::before {
	color: var(--nr-terracotta);
	content: "•";
	margin-right: 9px;
}

.nr-press-card__subject {
	color: var(--nr-sage);
	font-size: 13px;
	line-height: 1.35;
	margin: 0 0 10px;
}

.nr-press-card__title {
	color: var(--nr-text);
	font-size: clamp(20px, 2vw, 24px);
	font-weight: 800;
	letter-spacing: 0;
	line-height: 1.18;
	margin: 0 0 22px;
}

.nr-press-card__link {
	align-items: center;
	border-top: 1px solid rgba(47, 93, 80, .14);
	color: var(--nr-link);
	display: inline-flex;
	font-weight: 700;
	gap: 18px;
	justify-content: space-between;
	margin-top: auto;
	padding-top: 18px;
	text-decoration: none;
}

.nr-press-card__link span {
	font-size: 24px;
	line-height: 1;
	transition: transform .2s ease;
}

.nr-press-card__link:hover span {
	transform: translateX(4px);
}

.nr-press-card__link--disabled {
	color: var(--nr-sage);
	cursor: default;
}

.nr-press-empty {
	color: var(--nr-sage);
	display: none;
	font-weight: 700;
	margin: 28px 0 0;
}

.nr-press-empty.is-visible {
	display: block;
}

.nr-press-actions {
	display: flex;
	justify-content: center;
	margin-top: 28px;
}

@media (max-width: 900px) {
	.nr-press-filters {
		grid-template-columns: 1fr 1fr;
	}

	.nr-press-reset {
		grid-column: 1 / -1;
	}

	.nr-press-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 640px) {
	.nr-press-filters,
	.nr-press-grid {
		grid-template-columns: 1fr;
	}

	.nr-press-card {
		min-height: 0;
	}
}
