/*
 * TableFlipper Daily Verse
 * Intentionally commerce-free. Uses the established TableFlipper palette.
 */

.tfv-wrap {
	--tfv-bg: #111111;
	--tfv-card: #151515;
	--tfv-cream: #F1E7D0;
	--tfv-muted: #B8B0A4;
	--tfv-red: #9E2926;
	--tfv-border: #34312F;
	max-width: 1040px;
	margin: 0 auto;
	padding: clamp(54px, 8vw, 110px) 24px 80px;
	color: var(--tfv-cream);
}

.tfv-daily {
	text-align: center;
	max-width: 900px;
	margin: 0 auto clamp(80px, 10vw, 130px);
}

.tfv-kicker {
	font-family: "Oswald", sans-serif;
	font-size: 14px;
	font-weight: 600;
	letter-spacing: .18em;
	text-transform: uppercase;
	color: var(--tfv-red);
}

.tfv-date {
	margin-top: 12px;
	font-family: "Oswald", sans-serif;
	font-size: clamp(15px, 2vw, 18px);
	font-weight: 600;
	letter-spacing: .09em;
	color: var(--tfv-muted);
}

.tfv-rule {
	width: 54px;
	height: 3px;
	margin: 30px auto 36px;
	background: var(--tfv-red);
}

.tfv-verse {
	margin: 0;
	padding: 0;
	border: 0;
}

.tfv-verse p {
	margin: 0 auto;
	max-width: 900px;
	font-family: "Oswald", sans-serif;
	font-weight: 600;
	font-size: clamp(34px, 5.5vw, 68px);
	line-height: 1.18;
	letter-spacing: -.015em;
	color: var(--tfv-cream);
}

.tfv-verse footer {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 12px;
	flex-wrap: wrap;
	margin-top: 34px;
}

.tfv-verse cite {
	font-family: "Oswald", sans-serif;
	font-style: normal;
	font-weight: 700;
	letter-spacing: .09em;
	color: var(--tfv-cream);
}

.tfv-translation {
	padding: 4px 7px;
	border: 1px solid var(--tfv-border);
	border-radius: 3px;
	font-size: 11px;
	letter-spacing: .1em;
	color: var(--tfv-muted);
}

.tfv-nav {
	display: flex;
	justify-content: center;
	gap: 22px;
	flex-wrap: wrap;
	margin-top: 46px;
}

.tfv-nav-link,
.tfv-archive-pagination a {
	font-family: "Oswald", sans-serif;
	font-weight: 600;
	letter-spacing: .07em;
	text-transform: uppercase;
	color: var(--tfv-cream);
	text-decoration: none;
}

.tfv-nav-link:hover,
.tfv-archive-pagination a:hover {
	color: var(--tfv-red);
}

.tfv-archive {
	border-top: 1px solid var(--tfv-border);
	padding-top: 54px;
}

.tfv-archive-heading {
	margin-bottom: 26px;
}

.tfv-archive-heading h2 {
	margin: 7px 0 0;
	font-family: "Oswald", sans-serif;
	font-size: clamp(31px, 4vw, 44px);
	font-weight: 700;
	text-transform: uppercase;
	color: var(--tfv-cream);
}

.tfv-archive-list {
	border-top: 1px solid var(--tfv-border);
}

.tfv-archive-item {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	padding: 19px 2px;
	border-bottom: 1px solid var(--tfv-border);
	color: var(--tfv-cream);
	text-decoration: none;
	transition: color .18s ease, padding-left .18s ease;
}

.tfv-archive-item:hover {
	color: var(--tfv-red);
	padding-left: 7px;
}

.tfv-archive-date {
	font-family: "Oswald", sans-serif;
	font-size: 18px;
	font-weight: 600;
	letter-spacing: .035em;
	text-transform: uppercase;
}

.tfv-archive-arrow {
	font-size: 22px;
	color: var(--tfv-red);
}

.tfv-archive-pagination {
	display: flex;
	justify-content: space-between;
	gap: 20px;
	margin-top: 30px;
}

@media (max-width: 600px) {
	.tfv-wrap {
		padding-left: 18px;
		padding-right: 18px;
	}

	.tfv-verse p {
		font-size: clamp(31px, 10vw, 46px);
	}

	.tfv-archive-item {
		padding-top: 17px;
		padding-bottom: 17px;
	}
}
