:root {
	--bq-red: #ed1c24;
	--bq-black: #050505;
	--bq-text: #101010;
	--bq-muted: #626262;
	--bq-line: #d8d8d8;
	--bq-soft: #f4f4f4;
	--bq-serif: "Libre Baskerville", Georgia, serif;
	--bq-sans: Inter, Arial, sans-serif;
}

* {
	box-sizing: border-box;
}

body {
	margin: 0;
	color: var(--bq-text);
	font-family: var(--bq-sans);
	background: #fff;
}

a {
	color: inherit;
	text-decoration: none;
}

img {
	display: block;
	max-width: 100%;
	height: auto;
}

.container {
	width: min(100% - 48px, 1780px);
	margin-inline: auto;
}

.screen-reader-text {
	position: absolute;
	width: 1px;
	height: 1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
}

.topbar {
	background: #000;
	color: #fff;
	font-size: 14px;
	font-weight: 700;
}

.topbar-inner {
	display: flex;
	align-items: center;
	min-height: 44px;
	gap: 14px;
}

.divider {
	width: 1px;
	height: 18px;
	background: rgba(255, 255, 255, .55);
}

.toplinks {
	display: flex;
	align-items: center;
	gap: 16px;
	margin-left: auto;
}

.search-toggle {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 0;
	color: #fff;
	font: inherit;
	background: transparent;
	border: 0;
	cursor: pointer;
}

.icon-search {
	width: 17px;
	height: 17px;
	border: 2px solid currentColor;
	border-radius: 50%;
	position: relative;
}

.icon-search::after {
	content: "";
	position: absolute;
	width: 8px;
	height: 2px;
	right: -6px;
	bottom: -3px;
	background: currentColor;
	transform: rotate(45deg);
}

.social-menu,
.primary-menu {
	display: flex;
	align-items: center;
	gap: 34px;
	padding: 0;
	margin: 0;
	list-style: none;
}

.social-menu {
	gap: 14px;
}

.brandbar {
	padding: 38px 0 8px;
}

.site-title {
	color: var(--bq-red);
	font-size: clamp(38px, 4.4vw, 62px);
	font-weight: 800;
	line-height: 1;
	letter-spacing: 0;
}

.custom-logo-link img,
.bq-header-logo {
	max-height: 100px;
	width: auto;
}

.navrow {
	border-top: 4px solid var(--bq-red);
}

.primary-menu {
	overflow-x: auto;
	padding: 17px 0 20px;
	font-weight: 800;
	text-transform: uppercase;
	white-space: nowrap;
}

.header-search {
	padding-bottom: 18px;
}

.search-form {
	display: flex;
	gap: 10px;
}

.search-field {
	width: 100%;
	min-height: 46px;
	padding: 0 14px;
	border: 1px solid var(--bq-line);
	font: inherit;
}

.search-form button,
.btn-primary,
.load-more {
	border: 0;
	background: var(--bq-red);
	color: #fff;
	font-weight: 800;
	cursor: pointer;
}

.search-form button {
	padding: 0 22px;
}

.home-lead {
	display: grid;
	grid-template-columns: minmax(0, 2.5fr) minmax(340px, .95fr);
	gap: 34px;
}

.hero-card {
	position: relative;
	min-height: 430px;
	background: #000;
	overflow: hidden;
}

.hero-media,
.hero-media img,
.fallback-image {
	display: block;
	width: 100%;
	height: 100%;
	min-height: inherit;
	object-fit: cover;
}

.hero-media::after {
	content: "";
	position: absolute;
	inset: 0 auto 0 0;
	width: 48%;
	background: linear-gradient(90deg, rgba(0, 0, 0, .95), rgba(0, 0, 0, .55), transparent);
}

.hero-copy {
	position: absolute;
	inset: 48px auto 48px 36px;
	width: min(500px, 48%);
	color: #fff;
}

.kicker,
.daily-news h2,
.compact-section h2,
.opinion-band h2,
.highlights h2 {
	color: var(--bq-red);
	font-size: 15px;
	font-weight: 800;
	text-transform: uppercase;
}

.hero-copy h1 {
	margin: 20px 0;
	font-family: var(--bq-serif);
	font-size: clamp(32px, 3.3vw, 50px);
	line-height: 1.08;
}

.hero-copy p {
	max-width: 420px;
	font-size: 24px;
	line-height: 1.35;
}

.btn-primary {
	display: inline-flex;
	align-items: center;
	gap: 18px;
	margin-top: 12px;
	padding: 16px 22px;
	border-radius: 2px;
}

.daily-news h2,
.compact-section h2,
.opinion-band h2,
.highlights h2 {
	display: flex;
	align-items: center;
	gap: 18px;
	margin: 0 0 14px;
}

.daily-news h2::after,
.compact-section h2::after,
.opinion-band h2::after,
.highlights h2::after {
	content: "";
	flex: 1;
	border-top: 1px solid var(--bq-red);
}

.news-row {
	display: grid;
	grid-template-columns: 64px 1fr;
	gap: 14px;
	padding: 15px 0;
	border-bottom: 1px solid var(--bq-line);
	font-weight: 800;
	line-height: 1.25;
}

.news-row time {
	color: var(--bq-red);
}

.section-grid {
	display: grid;
	gap: 22px;
	margin-top: 34px;
}

.three-cols {
	grid-template-columns: repeat(3, 1fr);
}

.compact-section {
	border-right: 1px solid var(--bq-line);
	padding-right: 20px;
}

.compact-section:last-child {
	border-right: 0;
}

.section-feature {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 18px;
	font-family: Georgia, serif;
	font-size: 19px;
	line-height: 1.22;
}

.section-feature img,
.section-feature .fallback-image {
	aspect-ratio: 16 / 10;
	object-fit: cover;
	min-height: 0;
}

.section-link {
	display: block;
	margin-left: calc(50% + 9px);
	padding: 13px 0;
	border-top: 1px solid var(--bq-line);
	font-family: Georgia, serif;
	font-size: 18px;
	line-height: 1.25;
}

.bq-ad {
	display: grid;
	place-items: center;
	min-height: 92px;
	margin: 28px 0;
	border: 1px dashed #a9a9a9;
	background: #f7f7f7;
	color: #6c6c6c;
	text-align: center;
}

.bq-ad strong {
	display: block;
	margin-top: 4px;
	color: #222;
}

.post-list {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
}

.post-card {
	border-top: 3px solid var(--bq-red);
	padding-top: 14px;
}

.post-card-media img,
.post-card-media .fallback-image {
	width: 100%;
	aspect-ratio: 16 / 10;
	object-fit: cover;
	min-height: 0;
}

.post-card h2 {
	margin: 9px 0;
	font-family: Georgia, serif;
	font-size: 23px;
	line-height: 1.16;
}

.post-card p {
	color: var(--bq-muted);
	line-height: 1.45;
}

.highlights {
	margin: 34px 0;
}

.highlight-list {
	display: grid;
	grid-template-columns: repeat(6, 1fr);
	gap: 20px;
}

.highlight-list a {
	display: flex;
	gap: 10px;
	padding-right: 18px;
	border-right: 1px solid var(--bq-line);
	font-family: Georgia, serif;
	font-size: 17px;
	line-height: 1.2;
}

.highlight-list span {
	color: var(--bq-red);
}

.archive-main,
.single-main {
	padding: 28px 0 60px;
}

.archive-header h1 {
	font-family: var(--bq-serif);
	font-size: clamp(36px, 4vw, 58px);
}

.load-more {
	display: block;
	margin: 34px auto 0;
	padding: 15px 24px;
}

.single-layout {
	display: grid;
	grid-template-columns: minmax(0, 820px) 320px;
	gap: 56px;
	justify-content: center;
}

.article-stream {
	min-width: 0;
}

.next-article-trigger {
	grid-column: 1;
}

.single-article {
	padding-bottom: 64px;
	margin-bottom: 54px;
	border-bottom: 1px solid var(--bq-line);
}

.article-meta {
	display: flex;
	align-items: center;
	gap: 14px;
	margin-bottom: 14px;
}

.article-header h1 {
	margin: 0;
	font-family: var(--bq-serif);
	font-size: clamp(34px, 4vw, 54px);
	line-height: 1.08;
}

.dek {
	font-size: 22px;
	line-height: 1.45;
	color: #333;
}

.byline {
	font-weight: 700;
}

.byline a,
.article-meta a,
.author-box a {
	color: var(--bq-red);
}

.article-hero {
	margin: 28px 0;
}

.article-hero img {
	width: 100%;
}

.article-content {
	font-family: Georgia, serif;
	font-size: 21px;
	line-height: 1.68;
}

.article-content a {
	color: var(--bq-red);
	text-decoration: underline;
}

.article-tags a {
	display: inline-block;
	margin: 0 8px 8px 0;
	padding: 7px 10px;
	border: 1px solid var(--bq-line);
	color: var(--bq-red);
	font-weight: 800;
	font-size: 13px;
	text-transform: uppercase;
}

.author-box {
	display: flex;
	gap: 18px;
	margin-top: 28px;
	padding: 20px;
	border-top: 4px solid var(--bq-red);
	background: var(--bq-soft);
}

.author-box img {
	width: 88px;
	height: 88px;
	border-radius: 50%;
}

.author-box h2 {
	margin: 0 0 8px;
	font-size: 22px;
}

.next-article-trigger {
	margin-top: 32px;
	padding: 18px;
	text-align: center;
	color: var(--bq-muted);
	border: 1px solid var(--bq-line);
}

.widget {
	margin-bottom: 26px;
}

.widget-title {
	color: var(--bq-red);
	font-size: 16px;
	text-transform: uppercase;
}

.site-footer {
	border-top: 4px solid var(--bq-red);
	padding: 28px 0;
	background: #050505;
	color: #fff;
}

.footer-inner {
	display: flex;
	justify-content: space-between;
	gap: 20px;
}

@media (max-width: 1100px) {
	.home-lead,
	.three-cols,
	.post-list,
	.single-layout {
		grid-template-columns: 1fr;
	}

	.compact-section {
		border-right: 0;
		padding-right: 0;
	}

	.highlight-list {
		grid-template-columns: repeat(2, 1fr);
	}

	.single-sidebar {
		display: none;
	}
}

@media (max-width: 720px) {
	.container {
		width: min(100% - 28px, 1780px);
	}

	.topbar-inner,
	.toplinks,
	.footer-inner {
		flex-wrap: wrap;
	}

	.toplinks {
		margin-left: 0;
	}

	.hero-copy {
		inset: auto 18px 22px 18px;
		width: auto;
	}

	.hero-media::after {
		inset: 0;
		width: 100%;
		background: linear-gradient(0deg, rgba(0, 0, 0, .9), rgba(0, 0, 0, .15));
	}

	.hero-copy h1 {
		font-size: 32px;
	}

	.hero-copy p {
		font-size: 18px;
	}

	.section-feature {
		grid-template-columns: 1fr;
	}

	.section-link {
		margin-left: 0;
	}

	.highlight-list {
		grid-template-columns: 1fr;
	}
}
