/**
 * Yoga Today feed on the member dashboard.
 *
 * Lifts the Yoga Today archive's own shape onto the dashboard: one wide lead
 * article with its photograph, then a row of cards beneath. The pinned post,
 * where staff have tagged one, takes the lead slot.
 *
 * Palette from YA-BRAND.md: Deep Plum #6C4B60, Mist Lavender #E3DDE1,
 * Warm Black #1A1A1A. Larken serves headings, loaded by the parent theme.
 * Body inks stay off mid-tone at text scale: #453d42 on white reads 9.7:1,
 * the #6b6068 date 6.0:1.
 *
 * Companion: ya-dashboard-feed.md.
 */

.ya-feed {
	margin: 40px 0 48px;
}

.ya-feed__head {
	display: flex;
	align-items: baseline;
	justify-content: space-between;
	gap: 20px;
	border-bottom: 1px solid #E3DDE1;
	padding-bottom: 12px;
	margin-bottom: 26px;
}

.ya-feed__title {
	font-family: "Larken", Georgia, serif;
	font-weight: 500;
	font-size: 30px;
	line-height: 1.1;
	color: #6C4B60;
	margin: 0;
}

.ya-feed__all {
	font-size: 15px;
	font-weight: 600;
	color: #6C4B60;
	text-decoration: none;
	white-space: nowrap;
}

.ya-feed__all:hover {
	text-decoration: underline;
}

.ya-feed__date {
	font-size: 13px;
	font-weight: 600;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	color: #6b6068;
	margin: 0 0 10px;
}

.ya-feed__more {
	display: inline-block;
	font-size: 15px;
	font-weight: 600;
	color: #6C4B60;
	text-decoration: none;
	border-bottom: 2px solid #E3DDE1;
	padding-bottom: 2px;
}

.ya-feed__more:hover {
	border-bottom-color: #6C4B60;
	color: #6C4B60;
}

/* ---- Lead article ---- */
.ya-feed-lead {
	display: grid;
	grid-template-columns: minmax(0, 1.15fr) minmax(0, 1fr);
	gap: 32px;
	align-items: center;
	margin-bottom: 34px;
}

.ya-feed-lead--noimg {
	grid-template-columns: minmax(0, 1fr);
}

.ya-feed-lead__imglink {
	display: block;
	border-radius: 10px;
	overflow: hidden;
}

.ya-feed-lead__img {
	display: block;
	width: 100%;
	aspect-ratio: 3 / 2;
	object-fit: cover;
}

.ya-feed-lead__heading {
	font-family: "Larken", Georgia, serif;
	font-weight: 500;
	font-size: 30px;
	line-height: 1.2;
	margin: 0 0 8px;
}

.ya-feed-lead__heading a {
	color: #3a2f36;
	text-decoration: none;
}

.ya-feed-lead__heading a:hover,
.ya-feed-card__heading a:hover {
	text-decoration: underline;
}

.ya-feed-lead__excerpt {
	font-size: 16px;
	line-height: 1.6;
	color: #453d42;
	margin: 0 0 18px;
}

/* ---- Card row ---- */
.ya-feed__grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
	gap: 26px;
}

.ya-feed-card__imglink {
	display: block;
	border-radius: 8px;
	overflow: hidden;
	margin-bottom: 14px;
}

.ya-feed-card__img {
	display: block;
	width: 100%;
	aspect-ratio: 3 / 2;
	object-fit: cover;
}

.ya-feed-card__img--empty {
	background: #E3DDE1;
}

.ya-feed-card__heading {
	font-family: "Larken", Georgia, serif;
	font-weight: 500;
	font-size: 19px;
	line-height: 1.25;
	margin: 0 0 6px;
}

.ya-feed-card__heading a {
	color: #3a2f36;
	text-decoration: none;
}

.ya-feed-card__excerpt {
	font-size: 14.5px;
	line-height: 1.55;
	color: #453d42;
	margin: 0;
}

/* ---- Narrow ---- */
@media (max-width: 800px) {
	.ya-feed-lead {
		grid-template-columns: minmax(0, 1fr);
		gap: 18px;
	}
	.ya-feed-lead__heading {
		font-size: 25px;
	}
	.ya-feed__title {
		font-size: 25px;
	}
}
