/*
 * News archive (/news/) and single post styles.
 */

#page-heading.news-page-heading {
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
	gap: 1rem;
}

.news-intro {
	max-width: 760px;
	color: #555;
	margin: 0 0 2rem;
	font-size: 1em;
	line-height: 1.55;
}

/* Breaking section — large hero card(s) */
.news-breaking {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
	gap: 1.5rem;
	margin: 0 0 2.5rem;
}

.news-card {
	list-style: none;
	background: #fff;
	border: 1px solid #eee;
	border-radius: 6px;
	overflow: hidden;
	transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.news-card:hover {
	transform: translateY(-2px);
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.news-card__link {
	display: block;
	color: inherit;
	text-decoration: none;
}

.news-card__image {
	aspect-ratio: 16 / 9;
	background: #eaeaea;
	overflow: hidden;
}

.news-card__image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: transform 0.2s ease;
}

.news-card__link:hover .news-card__image img {
	transform: scale(1.04);
}

.news-card__image--placeholder {
	display: flex;
	align-items: center;
	justify-content: center;
	background: linear-gradient(135deg, #d4a017 0%, #b8870e 100%);
	color: rgba(255, 255, 255, 0.4);
	font-size: 3em;
	font-family: 'gotham_mediumregular';
}

.news-card__body {
	padding: 1rem 1.25rem 1.25rem;
}

.news-card__badge {
	display: inline-block;
	background: #b80000;
	color: #fff;
	padding: 0.2em 0.7em;
	border-radius: 999px;
	font-family: 'gotham_mediumregular';
	letter-spacing: 0.08em;
	text-transform: uppercase;
	font-size: 0.7em;
	margin-bottom: 0.6em;
}

.news-card__title {
	margin: 0 0 0.4em;
	font-size: 1.15em;
	line-height: 1.3;
	color: #111;
	font-family: 'gotham_mediumregular';
}

.news-card--featured .news-card__title {
	font-size: 1.4em;
}

.news-card__strap {
	margin: 0 0 0.7em;
	color: #555;
	line-height: 1.5;
	font-size: 0.95em;
}

.news-card__meta {
	color: #888;
	font-size: 0.85em;
}

/* News grid below breaking */
.news-grid {
	list-style: none;
	padding: 0;
	margin: 0;
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
	gap: 1.5rem;
}

/* Single article */
.news-article {
	max-width: 760px;
	margin: 0 auto;
	font-size: 1.05em;
	line-height: 1.7;
	color: #222;
}

.news-article__heading {
	margin: 0 0 1.5rem;
	border-bottom: 1px solid #eaeaea;
	padding-bottom: 1.25em;
}

.news-article__heading h1 {
	margin: 0.4rem 0 0.5rem;
	font-size: 2em;
	line-height: 1.2;
	color: #111;
}

.news-article__strap {
	color: #444;
	font-size: 1.1em;
	line-height: 1.5;
	margin: 0.5rem 0;
}

.news-article__meta {
	color: #888;
	font-size: 0.9em;
	margin-top: 0.6em;
}

.news-article__hero {
	margin: 0 0 2rem;
}

.news-article__hero img {
	display: block;
	width: 100%;
	height: auto;
	border-radius: 6px;
}

.news-article__caption {
	font-size: 0.85em;
	color: #888;
	margin-top: 0.5em;
	font-style: italic;
}

.news-article__body p {
	margin: 0 0 1.2em;
}

.news-article__body h2,
.news-article__body h3 {
	margin: 1.6em 0 0.6em;
	color: #111;
	font-family: 'gotham_mediumregular';
}

.news-article__body h2 { font-size: 1.4em; }
.news-article__body h3 { font-size: 1.15em; }

.news-article__body blockquote {
	border-left: 3px solid #d4a017;
	padding-left: 1.25em;
	margin: 1.5em 0;
	color: #444;
	font-style: italic;
}

.news-article__sources,
.news-article__related {
	margin: 2.5rem 0;
	padding: 1.25rem 1.5rem;
	background: #fafafa;
	border-radius: 6px;
}

.news-article__sources h3,
.news-article__related h3 {
	margin: 0 0 0.6em;
	font-family: 'gotham_mediumregular';
	font-size: 0.9em;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: #888;
}

.news-article__sources ul,
.news-article__related ul {
	list-style: none;
	padding: 0;
	margin: 0;
}

.news-article__sources li {
	padding: 0.3em 0;
}

.news-article__sources a {
	color: #535353;
	text-decoration: none;
}

.news-article__sources a:hover {
	color: #d4a017;
}

.news-article__related li {
	padding: 0.4em 0;
	border-bottom: 1px solid #eee;
}

.news-article__related li:last-child {
	border-bottom: 0;
}

.news-article__related a {
	color: #111;
	text-decoration: none;
	font-family: 'gotham_mediumregular';
}

.news-article__related a:hover {
	text-decoration: underline;
}

.news-article__related .muted {
	color: #999;
	font-size: 0.85em;
	margin-left: 0.4em;
}

.news-article__back {
	margin: 2.5rem 0;
}

.news-article__back a {
	color: #535353;
	text-decoration: none;
	font-size: 0.95em;
}

.news-article__back a:hover {
	color: #111;
}
