/* ==========================================================================
   E-paper archive / category page
   ========================================================================== */

.epaper-hero {
	background: linear-gradient(135deg, #201f1a 0%, #4c4d3c 55%, #818371 100%);
	padding: 58px 0 82px;
	text-align: center;
	color: #fff;
}

.epaper-hero-eyebrow {
	margin: 0 0 12px;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: .2em;
	text-transform: uppercase;
	color: #e69384;
}

.epaper-hero-title {
	margin: 0;
	font-family: Georgia, 'Times New Roman', serif;
	font-weight: 700;
	font-size: clamp(28px, 4.2vw, 44px);
	letter-spacing: .01em;
}

.epaper-hero-rule {
	width: 56px;
	height: 3px;
	margin: 18px auto 16px;
	background: var(--header-accent, #c0392b);
	border-radius: 2px;
}

.epaper-hero-sub {
	margin: 0;
	font-size: 14px;
	color: #d9d7c9;
}

/* ---- filter card, overlapping the hero ------------------------------ */
.epaper-filter-wrap {
	position: relative;
	z-index: 3;
	margin-top: -44px;
	margin-bottom: 40px;
}

.epaper-filter-card {
	background: #fff;
	border: 1px solid #eee;
	border-radius: 14px;
	box-shadow: 0 24px 48px -22px rgba(20, 18, 14, .35);
	padding: 24px 26px;
}

.epaper-filter-form {
	display: flex;
	flex-wrap: wrap;
	align-items: flex-end;
	gap: 18px;
	margin: 0;
}

.epaper-filter-field {
	display: flex;
	flex-direction: column;
	gap: 6px;
	flex: 1 1 170px;
	min-width: 150px;
}

.epaper-filter-field label {
	margin: 0;
	font-size: 11px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: .07em;
	color: #8c887b;
}

.epaper-filter-field input[type="text"] {
	border: 1px solid #ddd9c9;
	border-radius: 8px;
	padding: 10px 12px;
	font-size: 14px;
	color: #17150f;
	background: #fdfcf8;
	transition: border-color .2s ease, box-shadow .2s ease;
}

.epaper-filter-field input[type="text"]:focus {
	outline: none;
	border-color: var(--header-accent, #c0392b);
	box-shadow: 0 0 0 3px rgba(192, 57, 45, .12);
	background: #fff;
}

.epaper-filter-actions {
	display: flex;
	gap: 10px;
}

.epaper-btn {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	padding: 11px 20px;
	border-radius: 8px;
	border: 1px solid transparent;
	font-size: 12.5px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: .04em;
	cursor: pointer;
	line-height: 1;
	transition: transform .18s ease, box-shadow .18s ease, background .2s ease, color .2s ease;
}

.epaper-btn:hover {
	transform: translateY(-2px);
}

.epaper-btn-primary {
	background: var(--header-accent, #c0392b);
	color: #fff;
	box-shadow: 0 10px 20px -10px rgba(192, 57, 45, .65);
}

.epaper-btn-primary:hover {
	background: #a5301f;
	color: #fff;
}

.epaper-btn-ghost {
	background: #f4f2ea;
	color: #3a382e;
}

.epaper-btn-ghost:hover {
	background: #ece8d9;
	color: #17150f;
}

/* ---- results ---------------------------------------------------------- */
.epaper-results-meta {
	display: flex;
	align-items: baseline;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 8px;
	margin: 0 0 20px;
}

.epaper-results-heading {
	margin: 0;
	font-size: 18px;
	font-weight: 700;
	color: #17150f;
}

.epaper-results-count {
	font-size: 13px;
	color: #8c887b;
}

.epaper-empty {
	text-align: center;
	padding: 80px 20px;
	color: #9a9686;
}

.epaper-empty i {
	display: block;
	font-size: 36px;
	margin-bottom: 16px;
	color: #d8d4c4;
}

.epaper-empty p {
	margin: 0;
	font-size: 15px;
}

@media (max-width: 575.98px) {
	.epaper-filter-actions {
		width: 100%;
	}
	.epaper-btn {
		flex: 1 1 auto;
		justify-content: center;
	}
}
