:root {
	--hourly-ink: #090b0a;
	--hourly-paper: #ffffff;
	--hourly-soft: #f3f5f3;
	--hourly-muted: #636a65;
	--hourly-rule: #cdd2ce;
	--hourly-green: var(--hourly-accent, #00ef3f);
	--hourly-green-dark: #00b832;
	--hourly-red: #d71920;
	--hourly-shell: 1280px;
	--hourly-article: 760px;
	--hourly-sans: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
	--hourly-serif: Georgia, "Times New Roman", serif;
}

*,
*::before,
*::after {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	background: var(--hourly-paper);
	color: var(--hourly-ink);
	font-family: var(--hourly-sans);
	font-size: 16px;
	line-height: 1.55;
	-webkit-font-smoothing: antialiased;
}

body.menu-open,
body.search-open {
	overflow: hidden;
}

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

figure {
	margin: 0;
}

a {
	color: inherit;
	text-decoration-thickness: 1px;
	text-underline-offset: 0.16em;
}

a:hover,
a:focus-visible {
	color: var(--hourly-green-dark);
}

button,
input,
select,
textarea {
	font: inherit;
}

button,
.button,
input[type="submit"] {
	border-radius: 0;
}

button:focus-visible,
a:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
	outline: 3px solid var(--hourly-green);
	outline-offset: 3px;
}

.site-shell {
	width: min(calc(100% - 40px), var(--hourly-shell));
	margin-inline: auto;
}

.article-width {
	width: min(calc(100% - 40px), 980px);
}

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

.screen-reader-text:focus {
	top: 8px;
	left: 8px;
	z-index: 100000;
	display: block;
	width: auto;
	height: auto;
	clip: auto;
	padding: 12px 16px;
	background: var(--hourly-paper);
	color: var(--hourly-ink);
	font-weight: 800;
}

.skip-link {
	position: fixed;
}

/* Header */
.site-header {
	position: relative;
	z-index: 50;
	background: var(--hourly-paper);
}

.utility-bar {
	border-bottom: 1px solid var(--hourly-rule);
	background: var(--hourly-ink);
	color: var(--hourly-paper);
	font-size: 0.72rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.utility-inner {
	display: flex;
	align-items: center;
	min-height: 34px;
	gap: 18px;
}

.utility-nav {
	margin-left: auto;
}

.utility-nav ul,
.primary-menu,
.footer-nav ul {
	display: flex;
	align-items: center;
	gap: 18px;
	padding: 0;
	margin: 0;
	list-style: none;
}

.utility-bar a {
	text-decoration: none;
}

.utility-bar a:hover,
.utility-bar a:focus-visible {
	color: var(--hourly-green);
}

.masthead {
	display: grid;
	grid-template-columns: minmax(120px, 1fr) auto minmax(120px, 1fr);
	align-items: center;
	min-height: 142px;
	padding-block: 22px 18px;
}

.masthead-brand {
	text-align: center;
}

.custom-logo-link {
	display: inline-block;
}

.custom-logo {
	width: auto;
	max-height: 72px;
}

.hourly-wordmark {
	display: inline-flex;
	align-items: center;
	border: 2px solid var(--hourly-green);
	padding: 3px 13px 5px;
	background: var(--hourly-ink);
	color: var(--hourly-green);
	font-size: clamp(2rem, 5vw, 4.35rem);
	font-weight: 900;
	letter-spacing: -0.08em;
	line-height: 0.96;
	text-decoration: none;
}

.hourly-wordmark:hover,
.hourly-wordmark:focus-visible {
	color: var(--hourly-green);
}

.masthead-tagline {
	margin: 9px 0 0;
	color: var(--hourly-muted);
	font-family: var(--hourly-serif);
	font-size: 0.78rem;
	font-style: italic;
	letter-spacing: 0.05em;
}

.menu-toggle,
.search-toggle {
	display: inline-grid;
	place-items: center;
	width: 42px;
	height: 42px;
	padding: 0;
	border: 1px solid var(--hourly-ink);
	background: var(--hourly-paper);
	color: var(--hourly-ink);
	cursor: pointer;
}

.menu-toggle {
	justify-self: start;
}

.search-toggle {
	font-size: 0;
	line-height: 1;
}

.search-toggle > span[aria-hidden="true"] {
	position: relative;
	display: block;
	width: 18px;
	height: 18px;
	border: 1.8px solid currentColor;
	border-radius: 50%;
}

.search-toggle > span[aria-hidden="true"]::after {
	position: absolute;
	right: -5px;
	bottom: -3px;
	width: 8px;
	height: 2px;
	background: currentColor;
	content: "";
	transform: rotate(48deg);
}

.masthead-actions {
	justify-self: end;
	display: flex;
	align-items: center;
	gap: 18px;
}

.masthead-facebook {
	font-size: 0.68rem;
	font-weight: 900;
	letter-spacing: 0.08em;
	text-decoration: none;
	text-transform: uppercase;
}

.menu-toggle-lines,
.menu-toggle-lines::before,
.menu-toggle-lines::after {
	display: block;
	width: 20px;
	height: 2px;
	background: currentColor;
	content: "";
	transition: transform 160ms ease;
}

.menu-toggle-lines::before {
	transform: translateY(-6px);
}

.menu-toggle-lines::after {
	transform: translateY(4px);
}

.menu-toggle[aria-expanded="true"] .menu-toggle-lines {
	background: transparent;
}

.menu-toggle[aria-expanded="true"] .menu-toggle-lines::before {
	transform: translateY(0) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] .menu-toggle-lines::after {
	transform: translateY(-2px) rotate(-45deg);
}

.header-search {
	border-top: 1px solid var(--hourly-rule);
	background: var(--hourly-soft);
	padding-block: 18px;
}

.header-search[hidden] {
	display: none;
}

.search-form {
	display: flex;
	max-width: 720px;
	margin-inline: auto;
}

.search-field {
	flex: 1;
	min-width: 0;
	border: 1px solid var(--hourly-ink);
	border-right: 0;
	padding: 12px 14px;
	background: var(--hourly-paper);
}

.search-submit,
.button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 44px;
	border: 1px solid var(--hourly-ink);
	padding: 10px 18px;
	background: var(--hourly-ink);
	color: var(--hourly-paper);
	font-size: 0.75rem;
	font-weight: 900;
	letter-spacing: 0.08em;
	text-decoration: none;
	text-transform: uppercase;
	cursor: pointer;
}

.search-submit:hover,
.button:hover,
.search-submit:focus-visible,
.button:focus-visible {
	background: var(--hourly-green);
	color: var(--hourly-ink);
}

.primary-navigation {
	border-top: 3px solid var(--hourly-ink);
	border-bottom: 1px solid var(--hourly-ink);
}

.primary-menu {
	justify-content: center;
	gap: 0;
}

.primary-menu > li {
	position: relative;
}

.primary-menu a {
	display: block;
	padding: 13px 15px 12px;
	font-size: 0.75rem;
	font-weight: 900;
	letter-spacing: 0.045em;
	text-decoration: none;
	text-transform: uppercase;
}

.primary-menu > li:hover > a,
.primary-menu > li.current-menu-item > a,
.primary-menu > li.current-post-ancestor > a {
	background: var(--hourly-green);
	color: var(--hourly-ink);
}

.primary-menu .sub-menu {
	position: absolute;
	top: 100%;
	left: 0;
	min-width: 220px;
	padding: 0;
	margin: 0;
	border: 1px solid var(--hourly-ink);
	background: var(--hourly-paper);
	list-style: none;
	opacity: 0;
	pointer-events: none;
	transform: translateY(8px);
	transition: 160ms ease;
}

.newsroom-drawer {
	position: absolute;
	top: 100%;
	left: 0;
	z-index: 500;
	width: 100%;
	max-height: calc(100vh - 110px);
	overflow-y: auto;
	border-top: 1px solid var(--hourly-rule);
	border-bottom: 5px solid var(--hourly-green);
	background: var(--hourly-paper);
	box-shadow: 0 24px 40px rgba(0, 0, 0, 0.14);
}

.newsroom-drawer[hidden] {
	display: none;
}

.drawer-inner {
	display: grid;
	grid-template-columns: repeat(5, minmax(0, 1fr));
	gap: 34px;
	padding-block: 34px 26px;
}

.drawer-column {
	display: flex;
	align-items: flex-start;
	flex-direction: column;
	gap: 8px;
}

.drawer-column h2,
.drawer-follow > strong {
	margin: 0 0 6px;
	color: var(--hourly-green-dark);
	font-size: 0.7rem;
	font-weight: 950;
	letter-spacing: 0.11em;
	text-transform: uppercase;
}

.drawer-column a {
	font-family: var(--hourly-serif);
	font-size: 1rem;
	font-weight: 700;
	text-decoration: none;
}

.drawer-follow {
	grid-column: 1 / -1;
	display: flex;
	align-items: center;
	gap: 26px;
	border-top: 1px solid var(--hourly-rule);
	padding-top: 22px;
}

.hourly-social-links {
	display: flex;
	flex-wrap: wrap;
	gap: 16px;
}

.hourly-social-links a {
	font-size: 0.7rem;
	font-weight: 900;
	letter-spacing: 0.08em;
	text-decoration: none;
	text-transform: uppercase;
}

.primary-menu li:hover > .sub-menu,
.primary-menu li:focus-within > .sub-menu {
	opacity: 1;
	pointer-events: auto;
	transform: translateY(0);
}

.breaking-bar {
	border-bottom: 1px solid var(--hourly-ink);
	background: var(--hourly-soft);
}

.breaking-inner {
	display: grid;
	grid-template-columns: max-content 1fr;
	align-items: center;
	min-height: 43px;
	overflow: hidden;
}

.breaking-label {
	align-self: stretch;
	display: flex;
	align-items: center;
	padding-inline: 14px;
	background: var(--hourly-red);
	color: var(--hourly-paper);
	font-size: 0.7rem;
	font-weight: 900;
	letter-spacing: 0.1em;
	text-transform: uppercase;
}

.breaking-items {
	position: relative;
	height: 43px;
	overflow: hidden;
}

.breaking-items a {
	position: absolute;
	inset: 0;
	display: flex;
	align-items: center;
	padding-inline: 16px;
	font-family: var(--hourly-serif);
	font-size: 0.94rem;
	font-weight: 700;
	text-decoration: none;
	opacity: 0;
	transform: translateY(100%);
	transition: opacity 260ms ease, transform 260ms ease;
}

.breaking-items a:first-child,
.breaking-items a.is-active {
	opacity: 1;
	transform: translateY(0);
}

.js .breaking-items a {
	opacity: 0;
	transform: translateY(100%);
}

.js .breaking-items a.is-active {
	opacity: 1;
	transform: translateY(0);
}

/* Shared editorial components */
.site-main {
	min-height: 55vh;
}

.newsroom-home {
	padding-block: 26px 70px;
}

.section-heading {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	margin-bottom: 20px;
	border-top: 4px solid var(--hourly-ink);
	border-bottom: 1px solid var(--hourly-rule);
	padding-block: 10px 9px;
}

.section-heading h1,
.section-heading h2 {
	margin: 0;
	font-size: clamp(1.15rem, 2.5vw, 1.65rem);
	font-weight: 950;
	letter-spacing: -0.035em;
	line-height: 1;
	text-transform: uppercase;
}

.section-heading > a {
	font-size: 0.72rem;
	font-weight: 900;
	letter-spacing: 0.08em;
	text-decoration: none;
	text-transform: uppercase;
}

.section-heading-main {
	border-top-width: 7px;
}

.live-indicator {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	font-size: 0.68rem;
	font-weight: 900;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.live-indicator span {
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: var(--hourly-red);
	box-shadow: 0 0 0 4px rgba(215, 25, 32, 0.14);
}

.story-kicker,
.primary-category,
.exclusive-label {
	display: inline-block;
	margin-bottom: 8px;
	color: var(--hourly-green-dark);
	font-size: 0.68rem;
	font-weight: 950;
	letter-spacing: 0.09em;
	line-height: 1.2;
	text-decoration: none;
	text-transform: uppercase;
}

.exclusive-label {
	margin-left: 8px;
	border-left: 1px solid var(--hourly-rule);
	padding-left: 10px;
	color: var(--hourly-red);
}

.story-card-title,
.lead-story h2,
.ranked-story h3 {
	font-family: var(--hourly-serif);
	font-weight: 700;
	letter-spacing: -0.025em;
}

.story-card-title a,
.lead-story h2 a,
.ranked-story h3 a {
	text-decoration: none;
}

.story-card-title a:hover,
.lead-story h2 a:hover,
.ranked-story h3 a:hover {
	text-decoration: underline;
	text-decoration-color: var(--hourly-green);
	text-decoration-thickness: 3px;
}

.story-card-image {
	display: block;
	overflow: hidden;
	background: var(--hourly-soft);
}

.story-card-image img,
.lead-image img {
	width: 100%;
	aspect-ratio: 16 / 9;
	object-fit: cover;
	object-position: var(--hourly-image-position, center center);
	transition: transform 280ms ease;
}

.story-card:hover .story-card-image img,
.lead-story:hover .lead-image img {
	transform: scale(1.018);
}

.story-card-title {
	margin: 0 0 8px;
	font-size: clamp(1.12rem, 2vw, 1.42rem);
	line-height: 1.12;
}

.story-card-content {
	padding-top: 12px;
}

.story-card-excerpt,
.lead-excerpt {
	color: #343a36;
	font-family: var(--hourly-serif);
}

.story-card-excerpt p,
.lead-excerpt p {
	margin: 0;
}

.story-card-meta,
.article-byline-row,
.article-date-row {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 7px 14px;
	margin-top: 12px;
	color: var(--hourly-muted);
	font-size: 0.72rem;
	font-weight: 700;
	letter-spacing: 0.035em;
}

.story-card-meta > * + *::before,
.article-byline-row > * + *::before {
	margin-right: 14px;
	color: var(--hourly-rule);
	content: "|";
}

.byline a {
	font-weight: 900;
	text-decoration: none;
}

.ad-zone,
.hourly-ad-zone {
	display: grid;
	place-items: center;
	width: min(calc(100% - 40px), 970px);
	min-height: 90px;
	margin: 0 auto 28px;
	background: #fafafa;
	color: #777;
	font-size: 0.66rem;
	letter-spacing: 0.1em;
	text-align: center;
	text-transform: uppercase;
}

.hourly-ad-zone .ad-label {
	display: block;
	margin-bottom: 6px;
	color: #777;
	font-size: 0.62rem;
	letter-spacing: 0.1em;
	text-align: center;
	text-transform: uppercase;
}

.hourly-ad-zone .widget {
	width: 100%;
	margin: 0;
}

.article-content .hourly-ad-zone {
	width: 100%;
	min-height: 120px;
	margin-block: 34px;
	font-family: var(--hourly-sans);
}

/* Homepage */
.top-stories {
	margin-bottom: 42px;
}

.hero-layout {
	display: grid;
	grid-template-columns: minmax(0, 1.75fr) minmax(300px, 0.8fr);
	gap: 28px;
}

.lead-story {
	border-right: 1px solid var(--hourly-rule);
	padding-right: 28px;
}

.lead-story h2 {
	max-width: 920px;
	margin: 0 0 12px;
	font-size: clamp(2rem, 4vw, 3.75rem);
	line-height: 0.98;
}

.lead-content {
	padding-top: 16px;
}

.lead-excerpt {
	max-width: 780px;
	font-size: 1.05rem;
}

.hero-secondary {
	display: grid;
	align-content: start;
}

.hero-secondary .story-card {
	display: grid;
	grid-template-columns: 112px minmax(0, 1fr);
	gap: 14px;
	border-bottom: 1px solid var(--hourly-rule);
	padding-block: 0 18px;
	margin-bottom: 18px;
}

.hero-secondary .story-card-image img {
	aspect-ratio: 1 / 0.82;
}

.hero-secondary .story-card-content {
	padding-top: 0;
}

.hero-secondary .story-card-title {
	font-size: 1.12rem;
}

.featured-carousel-section {
	margin-bottom: 46px;
}

.carousel-controls {
	display: flex;
	gap: 6px;
}

.carousel-controls button {
	display: grid;
	place-items: center;
	width: 36px;
	height: 32px;
	border: 1px solid var(--hourly-ink);
	background: transparent;
	cursor: pointer;
}

.carousel-controls button:hover {
	background: var(--hourly-green);
}

.featured-carousel {
	display: grid;
	grid-auto-columns: calc((100% - 48px) / 4);
	grid-auto-flow: column;
	gap: 16px;
	overflow-x: auto;
	overscroll-behavior-inline: contain;
	scroll-behavior: smooth;
	scroll-snap-type: inline mandatory;
	scrollbar-width: thin;
}

.featured-carousel .story-card {
	scroll-snap-align: start;
}

.home-content-grid {
	display: grid;
	grid-template-columns: minmax(0, 2fr) minmax(290px, 0.8fr);
	gap: 42px;
	margin-bottom: 58px;
}

.horizontal-card {
	display: grid;
	grid-template-columns: minmax(180px, 34%) minmax(0, 1fr);
	gap: 20px;
	border-bottom: 1px solid var(--hourly-rule);
	padding-bottom: 22px;
	margin-bottom: 22px;
}

.horizontal-card .story-card-content {
	padding-top: 0;
}

.horizontal-card .story-card-title {
	font-size: clamp(1.2rem, 2.6vw, 1.82rem);
}

.home-rail {
	border-left: 1px solid var(--hourly-rule);
	padding-left: 30px;
}

.ranked-story {
	display: grid;
	grid-template-columns: 42px 1fr;
	gap: 10px;
	border-bottom: 1px solid var(--hourly-rule);
	padding-block: 13px;
}

.rank-number {
	color: var(--hourly-green-dark);
	font-family: var(--hourly-serif);
	font-size: 2.2rem;
	font-weight: 700;
	line-height: 1;
}

.ranked-story h3 {
	margin: 0;
	font-size: 1.05rem;
	line-height: 1.16;
}

.newsletter-box {
	margin-top: 30px;
	border-top: 8px solid var(--hourly-green);
	padding: 24px;
	background: var(--hourly-ink);
	color: var(--hourly-paper);
}

.newsletter-box h2 {
	margin: 0 0 12px;
	font-family: var(--hourly-serif);
	font-size: 1.8rem;
	line-height: 1;
}

.newsletter-box p {
	color: #d8dcd9;
}

.newsletter-box .button {
	border-color: var(--hourly-green);
	background: var(--hourly-green);
	color: var(--hourly-ink);
}

.homepage-sections {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 48px 36px;
}

.section-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 20px;
}

.news-section .section-grid {
	grid-template-columns: repeat(2, minmax(0, 1fr));
}

.news-section .story-card-title {
	font-size: 1.16rem;
}

/* Archive and pages */
.archive-main,
.page-main,
.single-story-main {
	padding-block: 42px 80px;
}

.archive-header {
	margin-bottom: 34px;
	border-top: 8px solid var(--hourly-ink);
	border-bottom: 1px solid var(--hourly-ink);
	padding-block: 24px 18px;
}

.archive-header h1,
.page-header h1 {
	margin: 0;
	font-family: var(--hourly-serif);
	font-size: clamp(2.5rem, 6vw, 5.25rem);
	letter-spacing: -0.055em;
	line-height: 0.92;
}

.archive-description {
	max-width: 760px;
	margin-top: 16px;
	color: var(--hourly-muted);
	font-family: var(--hourly-serif);
	font-size: 1.1rem;
}

.archive-description p {
	margin: 0;
}

.archive-grid {
	display: grid;
	grid-template-columns: minmax(0, 2fr) minmax(260px, 0.72fr);
	gap: 44px;
}

.widget-area {
	border-left: 1px solid var(--hourly-rule);
	padding-left: 28px;
}

.widget {
	margin-bottom: 32px;
}

.widget-title {
	border-top: 4px solid var(--hourly-ink);
	border-bottom: 1px solid var(--hourly-rule);
	padding-block: 9px;
	font-size: 0.84rem;
	font-weight: 950;
	letter-spacing: 0.07em;
	text-transform: uppercase;
}

.nav-links {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	margin-top: 32px;
}

.page-numbers {
	display: grid;
	place-items: center;
	min-width: 38px;
	height: 38px;
	border: 1px solid var(--hourly-ink);
	padding-inline: 8px;
	font-size: 0.78rem;
	font-weight: 800;
	text-decoration: none;
}

.page-numbers.current,
.page-numbers:hover {
	background: var(--hourly-green);
	color: var(--hourly-ink);
}

.standard-page {
	padding-block: 20px 60px;
}

.author-archive-header {
	display: grid;
	grid-template-columns: 112px minmax(0, 1fr);
	align-items: center;
	gap: 24px;
	margin-bottom: 34px;
	border-block: 4px solid var(--hourly-ink);
	padding-block: 24px;
}

.author-archive-header img {
	width: 112px;
	height: 112px;
	border-radius: 50%;
}

.author-archive-header h1 {
	margin: 0;
	font-family: var(--hourly-serif);
	font-size: clamp(2.2rem, 5vw, 4rem);
	letter-spacing: -0.05em;
	line-height: 0.95;
}

.author-archive-header p {
	max-width: 720px;
	margin: 10px 0 0;
	color: var(--hourly-muted);
	font-family: var(--hourly-serif);
}

.page-header {
	margin-bottom: 28px;
	border-bottom: 1px solid var(--hourly-rule);
	padding-bottom: 24px;
}

.error-404 {
	max-width: 760px;
	margin-inline: auto;
	text-align: center;
}

.error-page {
	padding-block: 80px;
	text-align: center;
}

.error-page .error-code {
	display: block;
	color: var(--hourly-green-dark);
	font-size: clamp(4rem, 18vw, 10rem);
	font-weight: 950;
	letter-spacing: -0.08em;
	line-height: 0.8;
}

.error-page h1 {
	margin: 24px 0 12px;
	font-family: var(--hourly-serif);
	font-size: clamp(2rem, 6vw, 3.8rem);
	letter-spacing: -0.05em;
	line-height: 1;
}

.error-page .search-form {
	margin-block: 28px 18px;
}

/* Article */
.news-article {
	padding-top: 10px;
}

.article-header {
	padding-block: 22px 28px;
	text-align: center;
}

.article-title {
	max-width: 940px;
	margin: 4px auto 18px;
	font-family: var(--hourly-serif);
	font-size: clamp(2.45rem, 6.5vw, 5.4rem);
	font-weight: 700;
	letter-spacing: -0.06em;
	line-height: 0.94;
}

.article-deck {
	max-width: 820px;
	margin-inline: auto;
	color: #343a36;
	font-family: var(--hourly-serif);
	font-size: clamp(1.12rem, 2.2vw, 1.4rem);
	line-height: 1.4;
}

.article-deck p {
	margin: 0;
}

.article-byline-row,
.article-date-row {
	justify-content: center;
}

.article-hero {
	width: min(calc(100% - 40px), 1180px);
	margin-bottom: 20px;
}

.article-hero img {
	width: 100%;
	max-height: 720px;
	object-fit: cover;
	object-position: var(--hourly-image-position, center center);
}

.article-hero figcaption {
	display: flex;
	justify-content: space-between;
	gap: 20px;
	border-bottom: 1px solid var(--hourly-rule);
	padding-block: 9px;
	color: var(--hourly-muted);
	font-size: 0.7rem;
}

.image-credit {
	font-weight: 800;
	text-transform: uppercase;
}

.article-layout {
	display: grid;
	grid-template-columns: 54px minmax(0, var(--hourly-article)) minmax(220px, 1fr);
	justify-content: center;
	gap: 34px;
	margin-top: 36px;
}

.share-rail {
	position: sticky;
	top: 20px;
	align-self: start;
	display: grid;
	gap: 8px;
}

.share-rail a {
	display: grid;
	place-items: center;
	width: 42px;
	height: 42px;
	border: 1px solid var(--hourly-ink);
	font-weight: 900;
	text-decoration: none;
}

.share-rail a:hover {
	background: var(--hourly-green);
	color: var(--hourly-ink);
}

.article-body-column {
	min-width: 0;
}

.article-note,
.correction-note {
	margin-bottom: 24px;
	border-left: 6px solid var(--hourly-green);
	padding: 14px 16px;
	background: var(--hourly-soft);
	font-size: 0.92rem;
}

.correction-note {
	margin-top: 32px;
	border-left-color: var(--hourly-red);
}

.article-content {
	font-family: var(--hourly-serif);
	font-size: clamp(1.08rem, 1.5vw, 1.22rem);
	line-height: 1.75;
}

.article-content > *:first-child {
	margin-top: 0;
}

.article-content h2,
.article-content h3,
.article-content h4 {
	margin: 1.65em 0 0.55em;
	font-family: var(--hourly-sans);
	letter-spacing: -0.035em;
	line-height: 1.1;
}

.article-content h2 {
	font-size: 1.75rem;
}

.article-content h3 {
	font-size: 1.38rem;
}

.article-content a {
	text-decoration-color: var(--hourly-green-dark);
	text-decoration-thickness: 2px;
}

.article-content blockquote {
	margin: 1.6em 0;
	border-block: 1px solid var(--hourly-ink);
	padding: 22px 0;
	font-size: 1.35em;
	font-style: italic;
	line-height: 1.35;
}

.article-content blockquote p {
	margin: 0;
}

.article-content .wp-caption,
.article-content figure {
	max-width: 100%;
	margin: 1.6em 0;
}

.article-content .alignwide,
.article-content .alignfull {
	position: relative;
	left: 50%;
	width: min(1040px, calc(100vw - 40px));
	max-width: none;
	margin-left: 0;
	transform: translateX(-50%);
}

.article-content .alignfull {
	width: min(1180px, calc(100vw - 24px));
}

.article-content figcaption,
.wp-caption-text {
	margin-top: 8px;
	color: var(--hourly-muted);
	font-family: var(--hourly-sans);
	font-size: 0.72rem;
}

.article-content table {
	width: 100%;
	border-collapse: collapse;
	font-family: var(--hourly-sans);
	font-size: 0.88rem;
}

.article-content th,
.article-content td {
	border: 1px solid var(--hourly-rule);
	padding: 10px;
	text-align: left;
}

.article-sidebar {
	border-left: 1px solid var(--hourly-rule);
	padding-left: 24px;
}

.article-sources {
	margin-top: 32px;
	border-top: 3px solid var(--hourly-ink);
	padding-top: 14px;
}

.article-sources h2 {
	margin: 0 0 8px;
	font-size: 0.8rem;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.article-sources ul {
	padding-left: 20px;
}

.article-tags {
	display: flex;
	flex-wrap: wrap;
	gap: 7px;
	margin-top: 30px;
}

.article-tags a {
	border: 1px solid var(--hourly-rule);
	padding: 5px 9px;
	font-size: 0.68rem;
	font-weight: 800;
	text-decoration: none;
	text-transform: uppercase;
}

.author-card {
	display: grid;
	grid-template-columns: 76px 1fr;
	gap: 18px;
	margin-top: 34px;
	border-block: 1px solid var(--hourly-ink);
	padding-block: 22px;
}

.author-card img {
	width: 76px;
	height: 76px;
	border-radius: 50%;
}

.author-card h2,
.author-card p {
	margin: 0;
}

.author-card h2 {
	font-size: 1.1rem;
}

.author-card h2 a {
	text-decoration: none;
}

.author-card p {
	margin-top: 5px;
	color: var(--hourly-muted);
	font-size: 0.85rem;
}

.related-stories {
	margin-top: 68px;
}

/* Comments */
.comments-area {
	width: min(calc(100% - 40px), var(--hourly-article));
	margin: 58px auto 0;
}

.comment-list {
	padding: 0;
	list-style: none;
}

.comment-body {
	border-top: 1px solid var(--hourly-rule);
	padding-block: 20px;
}

/* Footer */
.site-footer {
	border-top: 10px solid var(--hourly-green);
	background: var(--hourly-ink);
	color: var(--hourly-paper);
}

.footer-top {
	display: grid;
	grid-template-columns: minmax(280px, 1fr) auto;
	align-items: end;
	gap: 48px;
	padding-block: 46px 30px;
}

.site-footer .hourly-wordmark {
	font-size: 2.45rem;
}

.footer-brand > p {
	margin: 12px 0 0;
}

.footer-description {
	max-width: 460px;
	color: #bec4c0;
	font-family: var(--hourly-serif);
}

.footer-follow {
	text-align: right;
}

.footer-follow > strong {
	display: block;
	margin-bottom: 12px;
	color: var(--hourly-green);
	font-size: 0.7rem;
	letter-spacing: 0.1em;
	text-transform: uppercase;
}

.footer-follow .hourly-social-links {
	justify-content: flex-end;
}

.footer-link-row {
	display: flex;
	flex-wrap: wrap;
	gap: 10px 28px;
	border-top: 1px solid #333835;
	padding-block: 22px;
}

.footer-link-row .footer-nav ul {
	align-items: center;
	flex-direction: row;
	flex-wrap: wrap;
	gap: 9px 18px;
}

.footer-nav h2 {
	margin: 0 0 14px;
	font-size: 0.75rem;
	letter-spacing: 0.1em;
	text-transform: uppercase;
}

.footer-nav ul {
	align-items: flex-start;
	flex-direction: column;
	gap: 8px;
}

.footer-nav a {
	color: #d9ddda;
	font-size: 0.82rem;
	text-decoration: none;
}

.footer-nav a:hover {
	color: var(--hourly-green);
}

.footer-bottom {
	display: flex;
	justify-content: space-between;
	gap: 24px;
	border-top: 1px solid #333835;
	padding-block: 18px;
	color: #9da39f;
	font-size: 0.72rem;
}

.footer-bottom p {
	margin: 0;
}

/* WordPress alignment helpers */
.alignleft {
	float: left;
	margin: 0 1.5em 1em 0;
}

.alignright {
	float: right;
	margin: 0 0 1em 1.5em;
}

.aligncenter {
	display: block;
	margin-inline: auto;
}

.wp-block-image img {
	height: auto;
}

@media (max-width: 1024px) {
	.hero-layout,
	.home-content-grid,
	.archive-grid {
		grid-template-columns: minmax(0, 1.65fr) minmax(260px, 0.85fr);
		gap: 28px;
	}

	.featured-carousel {
		grid-auto-columns: calc((100% - 32px) / 3);
	}

	.article-layout {
		grid-template-columns: 48px minmax(0, var(--hourly-article));
	}

	.article-sidebar {
		display: none;
	}

	.section-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

	@media (max-width: 760px) {
	.site-shell,
	.article-width,
	.article-hero,
	.comments-area {
		width: min(calc(100% - 28px), var(--hourly-shell));
	}

	.utility-inner {
		justify-content: space-between;
	}

	.utility-nav,
	.current-date {
		display: none;
	}

	.social-link {
		margin-left: auto;
	}

	.masthead {
		min-height: 100px;
	}

	.masthead-tagline {
		display: none;
	}

	.primary-menu {
		justify-content: flex-start;
		flex-direction: row;
		overflow-x: auto;
		scrollbar-width: none;
	}

	.primary-menu a {
		padding: 12px 13px;
		font-size: 0.72rem;
		white-space: nowrap;
	}

	.primary-menu .sub-menu {
		display: none;
	}

	.header-search {
		position: fixed;
		inset: 134px 0 auto;
		z-index: 201;
	}

	.breaking-inner {
		width: 100%;
	}

	.newsroom-home {
		padding-top: 18px;
	}

	.hero-layout,
	.home-content-grid,
	.archive-grid,
	.homepage-sections,
	.footer-top {
		grid-template-columns: 1fr;
	}

	.lead-story {
		border-right: 0;
		padding-right: 0;
	}

	.lead-story h2 {
		font-size: clamp(2rem, 10vw, 3.1rem);
	}

	.hero-secondary {
		border-top: 3px solid var(--hourly-ink);
		padding-top: 20px;
	}

	.featured-carousel {
		grid-auto-columns: 82%;
	}

	.home-rail,
	.widget-area {
		border-left: 0;
		padding-left: 0;
	}

	.horizontal-card {
		grid-template-columns: 126px minmax(0, 1fr);
		gap: 14px;
	}

	.horizontal-card .story-card-title {
		font-size: 1.08rem;
	}

	.horizontal-card .story-card-excerpt {
		display: none;
	}

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

	.archive-main,
	.page-main,
	.single-story-main {
		padding-block: 28px 58px;
	}

	.article-header {
		text-align: left;
	}

	.article-title {
		font-size: clamp(2.2rem, 13vw, 3.75rem);
	}

	.article-deck {
		font-size: 1.08rem;
	}

	.article-byline-row,
	.article-date-row {
		justify-content: flex-start;
	}

	.article-layout {
		display: block;
		margin-top: 24px;
	}

	.share-rail {
		position: static;
		display: flex;
		margin-bottom: 22px;
	}

	.article-content {
		font-size: 1.08rem;
	}

	.footer-grid {
		gap: 32px;
	}

	.drawer-inner {
		grid-template-columns: 1fr 1fr;
		gap: 28px 20px;
	}

	.drawer-follow {
		align-items: flex-start;
		flex-direction: column;
		gap: 10px;
	}

	.footer-follow {
		text-align: left;
	}

	.footer-follow .hourly-social-links {
		justify-content: flex-start;
	}

	.footer-bottom {
		align-items: flex-start;
		flex-direction: column;
		gap: 4px;
	}
}

@media (max-width: 480px) {
	.hourly-wordmark {
		font-size: 2rem;
	}

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

	.hero-secondary .story-card,
	.horizontal-card {
		grid-template-columns: 110px minmax(0, 1fr);
	}

	.breaking-label {
		padding-inline: 9px;
	}

	.article-hero figcaption {
		flex-direction: column;
		gap: 5px;
	}

	.masthead {
		grid-template-columns: 44px 1fr 44px;
	}

	.masthead-actions {
		gap: 0;
	}

	.masthead-facebook {
		display: none;
	}

	.drawer-inner {
		grid-template-columns: 1fr;
	}
}

@media (prefers-reduced-motion: reduce) {
	*,
	*::before,
	*::after {
		scroll-behavior: auto !important;
		transition-duration: 0.01ms !important;
		animation-duration: 0.01ms !important;
		animation-iteration-count: 1 !important;
	}
}

/* Hourly Newsroom 2.1 editorial system */
:root {
	--hourly-shell: 1560px;
	--hourly-article: 700px;
	--hourly-display: Arial, "Helvetica Neue", Helvetica, sans-serif;
}

.site-shell {
	width: min(calc(100% - 72px), var(--hourly-shell));
}

.article-width {
	width: min(calc(100% - 72px), 1040px);
}

.article-heading-width {
	width: min(calc(100% - 72px), 1040px);
}

.masthead {
	grid-template-columns: minmax(150px, 1fr) auto minmax(150px, 1fr);
	min-height: 132px;
	padding-block: 23px 17px;
}

.hourly-wordmark {
	display: inline-block;
	border: 0;
	padding: 0;
	background: transparent;
	color: var(--hourly-green);
	font-family: var(--hourly-display);
	font-size: clamp(3.7rem, 6.4vw, 6.6rem);
	font-weight: 900;
	letter-spacing: -0.095em;
	line-height: 0.78;
	text-decoration: none;
}

.hourly-wordmark > span {
	display: block;
	transform: scaleX(0.95);
	transform-origin: center;
}

.hourly-wordmark-dot {
	letter-spacing: 0;
}

.masthead-tagline {
	margin-top: 13px;
	font-family: var(--hourly-sans);
	font-size: 0.65rem;
	font-style: normal;
	font-weight: 700;
	letter-spacing: 0.16em;
	text-transform: uppercase;
}

.menu-toggle,
.search-toggle {
	width: 38px;
	height: 38px;
	border: 0;
}

.masthead-actions {
	gap: 22px;
}

.masthead-newsletter {
	border-bottom: 3px solid var(--hourly-green);
	padding: 7px 0 4px;
	font-size: 0.68rem;
	font-weight: 800;
	letter-spacing: 0.07em;
	text-decoration: none;
	text-transform: uppercase;
}

.primary-navigation {
	border-top: 1px solid var(--hourly-ink);
	border-bottom: 1px solid var(--hourly-ink);
}

.primary-menu a {
	padding: 12px 18px 11px;
	font-size: 0.72rem;
	font-weight: 800;
	letter-spacing: 0.035em;
}

.drawer-inner {
	gap: 48px;
	padding-block: 40px 30px;
}

.drawer-follow {
	display: grid;
	grid-template-columns: 150px minmax(0, 1fr);
	align-items: center;
	gap: 28px;
	width: 100%;
	padding-top: 24px;
}

.drawer-follow > strong {
	margin: 0;
}

.drawer-follow .hourly-social-links {
	align-items: center;
	gap: 28px;
}

.story-card-title,
.lead-story h2,
.ranked-story h3,
.stream-story h3,
.category-lead-story h2 {
	font-family: var(--hourly-display);
	font-weight: 750;
	letter-spacing: -0.035em;
}

.story-card-excerpt,
.lead-excerpt {
	font-family: var(--hourly-serif);
}

.section-heading {
	margin-bottom: 24px;
	border-top-width: 2px;
	padding-block: 11px 10px;
}

.section-heading-main {
	border-top-width: 5px;
}

.section-heading h1,
.section-heading h2 {
	font-size: clamp(1.08rem, 1.8vw, 1.45rem);
	font-weight: 850;
	letter-spacing: -0.025em;
}

.newsroom-home {
	padding-block: 30px 90px;
}

.top-stories {
	margin-bottom: 58px;
}

.home-hero-grid {
	display: grid;
	grid-template-columns: minmax(210px, 0.66fr) minmax(480px, 1.85fr) minmax(270px, 0.9fr);
	align-items: start;
	gap: 28px;
}

.mini-section-heading {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	margin-bottom: 3px;
	border-top: 3px solid var(--hourly-ink);
	border-bottom: 1px solid var(--hourly-rule);
	padding-block: 9px;
}

.mini-section-heading h2,
.mini-section-heading a {
	margin: 0;
	font-size: 0.68rem;
	font-weight: 850;
	letter-spacing: 0.08em;
	text-decoration: none;
	text-transform: uppercase;
}

.home-news-stream {
	border-right: 1px solid var(--hourly-rule);
	padding-right: 24px;
}

.stream-story {
	border-bottom: 1px solid var(--hourly-rule);
	padding-block: 14px;
}

.stream-story time {
	display: block;
	margin-bottom: 5px;
	color: var(--hourly-green-dark);
	font-size: 0.65rem;
	font-weight: 800;
	letter-spacing: 0.06em;
	text-transform: uppercase;
}

.stream-story h3 {
	margin: 0;
	font-size: 0.98rem;
	line-height: 1.16;
}

.stream-story h3 a {
	text-decoration: none;
}

.lead-story {
	border: 0;
	padding: 0;
}

.lead-story h2 {
	max-width: none;
	margin: 0 0 13px;
	font-size: clamp(2.35rem, 3.8vw, 4rem);
	line-height: 0.98;
}

.lead-content {
	padding-top: 18px;
}

.lead-excerpt {
	max-width: 900px;
	font-size: 1.05rem;
	line-height: 1.48;
}

.hero-secondary {
	border-left: 1px solid var(--hourly-rule);
	padding-left: 24px;
}

.hero-secondary .story-card {
	display: grid;
	grid-template-columns: 112px minmax(0, 1fr);
	gap: 14px;
	margin: 0;
	border-bottom: 1px solid var(--hourly-rule);
	padding-block: 16px;
}

.hero-secondary .mini-section-heading + .story-card {
	display: block;
	padding-top: 14px;
}

.hero-secondary .mini-section-heading + .story-card .story-card-image {
	margin-bottom: 12px;
}

.hero-secondary .story-card-image img {
	aspect-ratio: 16 / 10;
}

.hero-secondary .story-card-content {
	padding: 0;
}

.hero-secondary .story-card-title {
	font-size: 1.06rem;
	line-height: 1.12;
}

.featured-carousel-section {
	margin-bottom: 64px;
}

.featured-carousel {
	grid-auto-columns: calc((100% - 60px) / 4);
	gap: 20px;
}

.home-content-grid {
	grid-template-columns: minmax(0, 2.35fr) minmax(300px, 0.72fr);
	gap: 54px;
	margin-bottom: 72px;
}

.horizontal-card {
	grid-template-columns: minmax(230px, 31%) minmax(0, 1fr);
	gap: 26px;
	padding-bottom: 26px;
	margin-bottom: 26px;
}

.horizontal-card .story-card-title {
	font-size: clamp(1.32rem, 2vw, 1.78rem);
	line-height: 1.08;
}

.home-rail {
	padding-left: 38px;
}

.ranked-story {
	grid-template-columns: 38px 1fr;
	padding-block: 16px;
}

.rank-number {
	font-family: var(--hourly-display);
	font-size: 1.9rem;
	font-weight: 800;
}

.ranked-story h3 {
	font-size: 1rem;
}

.newsletter-box {
	border-top-width: 6px;
	padding: 28px;
}

.newsletter-box h2 {
	font-family: var(--hourly-display);
	font-size: 1.65rem;
	font-weight: 800;
	letter-spacing: -0.04em;
	line-height: 1.02;
}

.newsletter-band {
	margin-block: 10px 74px;
	border-block: 1px solid var(--hourly-ink);
	background: var(--hourly-ink);
	color: var(--hourly-paper);
}

.newsletter-band-inner {
	display: grid;
	grid-template-columns: minmax(250px, 0.8fr) minmax(320px, 1.4fr) auto;
	align-items: center;
	gap: 48px;
	min-height: 174px;
	padding-block: 28px;
}

.newsletter-band h2 {
	margin: 0;
	font-family: var(--hourly-display);
	font-size: clamp(2rem, 3vw, 3rem);
	letter-spacing: -0.055em;
	line-height: 1;
}

.newsletter-band p {
	max-width: 580px;
	margin: 0;
	color: #d2d8d4;
	font-family: var(--hourly-serif);
	font-size: 1.04rem;
}

.button-green {
	border-color: var(--hourly-green);
	background: var(--hourly-green);
	color: var(--hourly-ink);
}

.homepage-sections {
	display: block;
}

.news-section {
	margin-bottom: 70px;
}

.news-section .section-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	grid-template-rows: repeat(2, minmax(0, auto));
	gap: 24px;
}

.news-section .story-card:first-child {
	grid-column: span 2;
	grid-row: span 2;
	border-right: 1px solid var(--hourly-rule);
	padding-right: 24px;
}

.news-section .story-card:first-child .story-card-title {
	font-size: clamp(1.65rem, 2.8vw, 2.45rem);
	line-height: 1.02;
}

.news-section .story-card:not(:first-child) {
	border-bottom: 1px solid var(--hourly-rule);
	padding-bottom: 18px;
}

.news-section .story-card:not(:first-child) .story-card-title {
	font-size: 1.04rem;
	line-height: 1.12;
}

/* Category */
.category-main {
	padding-bottom: 90px;
}

.category-header {
	max-width: 1040px;
	padding-block: 64px 42px;
	text-align: center;
}

.category-header h1 {
	margin: 0;
	font-family: var(--hourly-display);
	font-size: clamp(3rem, 7vw, 6.2rem);
	font-weight: 850;
	letter-spacing: -0.075em;
	line-height: 0.88;
}

.category-description {
	max-width: 720px;
	margin: 22px auto 0;
	color: var(--hourly-muted);
	font-family: var(--hourly-serif);
	font-size: 1.1rem;
}

.category-description p {
	margin: 0;
}

.category-subnav {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	gap: 8px;
	margin-top: 24px;
}

.category-subnav a {
	border: 1px solid var(--hourly-rule);
	padding: 6px 11px;
	font-size: 0.7rem;
	font-weight: 800;
	letter-spacing: 0.05em;
	text-decoration: none;
	text-transform: uppercase;
}

.category-spotlight {
	display: grid;
	grid-template-columns: minmax(0, 2fr) minmax(300px, 0.78fr);
	gap: 34px;
	margin-bottom: 66px;
	border-top: 5px solid var(--hourly-ink);
	padding-top: 26px;
}

.category-lead-story {
	border-right: 1px solid var(--hourly-rule);
	padding-right: 34px;
}

.category-lead-content {
	padding-top: 18px;
}

.category-lead-story h2 {
	margin: 0 0 12px;
	font-size: clamp(2rem, 3.5vw, 3.75rem);
	line-height: 0.98;
}

.category-lead-story h2 a {
	text-decoration: none;
}

.category-spotlight-secondary .story-card {
	border-bottom: 1px solid var(--hourly-rule);
	padding-bottom: 23px;
	margin-bottom: 23px;
}

.category-spotlight-secondary .story-card-title {
	font-size: 1.35rem;
}

.category-feed-grid {
	display: grid;
	grid-template-columns: minmax(0, 2.2fr) minmax(280px, 0.7fr);
	gap: 58px;
}

.category-feed-card .story-card-title {
	font-size: clamp(1.4rem, 2.3vw, 2rem);
}

.category-rail {
	border-left: 1px solid var(--hourly-rule);
	padding-left: 34px;
}

.category-rail .newsletter-box {
	margin: 0 0 34px;
}

.category-rail .widget-area {
	border: 0;
	padding: 0;
}

/* Articles */
.single-story-main {
	padding-top: 36px;
}

.article-header {
	padding-block: 26px 34px;
	text-align: left;
}

.article-title {
	max-width: 1000px;
	margin: 5px 0 20px;
	font-family: var(--hourly-display);
	font-size: clamp(2.8rem, 5.4vw, 5.35rem);
	font-weight: 780;
	letter-spacing: -0.065em;
	line-height: 0.96;
}

.article-deck {
	max-width: 820px;
	margin: 0;
	font-size: clamp(1.14rem, 1.8vw, 1.38rem);
	line-height: 1.42;
}

.article-byline-row,
.article-date-row {
	justify-content: flex-start;
}

.article-byline-row {
	margin-top: 24px;
}

.article-hero {
	width: min(calc(100% - 72px), 1200px);
	margin-bottom: 24px;
}

.article-layout {
	grid-template-columns: 48px minmax(0, var(--hourly-article)) minmax(260px, 340px);
	gap: 40px;
	margin-top: 56px;
}

.article-content {
	font-size: clamp(1.08rem, 1.3vw, 1.2rem);
	line-height: 1.72;
}

.article-newsletter-cta {
	margin-top: 48px;
	border-block: 1px solid var(--hourly-ink);
	padding-block: 28px;
}

.article-newsletter-cta h2 {
	max-width: 560px;
	margin: 0 0 10px;
	font-family: var(--hourly-display);
	font-size: clamp(1.75rem, 3vw, 2.6rem);
	letter-spacing: -0.05em;
	line-height: 1;
}

.article-newsletter-cta p {
	max-width: 600px;
	color: var(--hourly-muted);
	font-family: var(--hourly-serif);
}

/* Trust and company pages */
.page-main {
	padding: 0 0 90px;
}

.standard-page {
	padding: 0;
}

.page-hero {
	border-bottom: 1px solid var(--hourly-rule);
	background: var(--hourly-soft);
}

.page-hero-inner {
	padding-block: 62px 54px;
}

.page-hero h1 {
	max-width: 980px;
	margin: 0;
	font-family: var(--hourly-display);
	font-size: clamp(3rem, 6vw, 5.8rem);
	font-weight: 820;
	letter-spacing: -0.07em;
	line-height: 0.92;
}

.trust-page-layout {
	display: grid;
	grid-template-columns: minmax(0, 780px) minmax(240px, 300px);
	justify-content: center;
	gap: 80px;
	padding-top: 54px;
}

.trust-page-content {
	font-size: 1.08rem;
}

.trust-page-content .page-lede,
.newsletter-page-content .page-lede {
	margin: 0 0 1.5em;
	font-size: 1.35rem;
	line-height: 1.45;
}

.trust-page-rail {
	align-self: start;
	border-top: 4px solid var(--hourly-ink);
}

.trust-page-rail h2 {
	margin: 0;
	border-bottom: 1px solid var(--hourly-rule);
	padding-block: 12px;
	font-size: 0.76rem;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.trust-page-rail nav {
	display: grid;
}

.trust-page-rail a {
	border-bottom: 1px solid var(--hourly-rule);
	padding-block: 11px;
	font-size: 0.84rem;
	font-weight: 750;
	text-decoration: none;
}

.hourly-value-grid,
.hourly-contact-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 18px;
	margin-block: 24px 34px;
	font-family: var(--hourly-sans);
}

.hourly-contact-grid {
	grid-template-columns: repeat(2, minmax(0, 1fr));
}

.hourly-value-grid > div,
.hourly-contact-grid > div {
	border-top: 3px solid var(--hourly-green-dark);
	padding: 15px;
	background: var(--hourly-soft);
}

.hourly-value-grid h3,
.hourly-contact-grid h2 {
	margin-top: 0;
	font-size: 1.05rem;
}

.page-review-note,
.team-profile-placeholder,
.legal-draft-label {
	margin-block: 30px;
	border-left: 5px solid var(--hourly-green);
	padding: 16px 18px;
	background: var(--hourly-soft);
	font-family: var(--hourly-sans);
	font-size: 0.9rem;
}

.legal-draft-label {
	border-color: var(--hourly-red);
	font-weight: 800;
}

/* Newsletter landing */
.newsletter-page {
	padding-bottom: 90px;
}

.newsletter-page-hero {
	border-bottom: 8px solid var(--hourly-green);
	background: var(--hourly-ink);
	color: var(--hourly-paper);
}

.newsletter-page-hero-inner {
	display: grid;
	grid-template-columns: minmax(0, 1.25fr) minmax(340px, 0.75fr);
	align-items: center;
	gap: 86px;
	min-height: 530px;
	padding-block: 70px;
}

.newsletter-page-hero h1 {
	margin: 5px 0 24px;
	font-family: var(--hourly-display);
	font-size: clamp(4rem, 8vw, 8rem);
	font-weight: 850;
	letter-spacing: -0.085em;
	line-height: 0.82;
}

.newsletter-page-hero-inner > div:first-child > p {
	max-width: 680px;
	color: #d5d9d6;
	font-family: var(--hourly-serif);
	font-size: 1.25rem;
}

.newsletter-signup-panel {
	border: 1px solid #454a47;
	border-top: 7px solid var(--hourly-green);
	padding: 34px;
	background: #111412;
}

.newsletter-signup-panel h2 {
	margin: 0 0 12px;
	font-size: 2rem;
	letter-spacing: -0.04em;
	line-height: 1;
}

.newsletter-benefits {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 0;
	margin-block: 54px;
	border-block: 1px solid var(--hourly-rule);
}

.newsletter-benefits > div {
	padding: 30px;
}

.newsletter-benefits > div + div {
	border-left: 1px solid var(--hourly-rule);
}

.newsletter-benefits span {
	color: var(--hourly-green-dark);
	font-size: 0.72rem;
	font-weight: 900;
}

.newsletter-benefits h2 {
	font-size: 1.25rem;
}

.newsletter-page-content {
	max-width: 760px;
}

.editor-empty-note,
.editor-empty-state {
	border: 1px dashed var(--hourly-rule);
	padding: 18px;
	background: #fbfcfb;
	color: var(--hourly-muted);
	font-size: 0.82rem;
}

/* Footer refinements */
.footer-top {
	align-items: center;
	padding-block: 54px 34px;
}

.site-footer .hourly-wordmark {
	font-size: 3.25rem;
}

.footer-follow {
	min-width: 320px;
}

.footer-follow .hourly-social-links {
	gap: 24px;
}

@media (max-width: 1180px) {
	.site-shell,
	.article-width,
	.article-heading-width,
	.article-hero {
		width: min(calc(100% - 44px), var(--hourly-shell));
	}

	.home-hero-grid {
		grid-template-columns: minmax(190px, 0.6fr) minmax(420px, 1.65fr) minmax(250px, 0.8fr);
		gap: 22px;
	}

	.home-news-stream {
		padding-right: 18px;
	}

	.hero-secondary {
		padding-left: 18px;
	}

	.category-feed-grid {
		gap: 38px;
	}

	.article-layout {
		grid-template-columns: 48px minmax(0, var(--hourly-article));
	}

	.article-sidebar {
		display: none;
	}
}

@media (max-width: 900px) {
	.masthead {
		min-height: 108px;
	}

	.masthead-newsletter {
		display: none;
	}

	.home-hero-grid {
		grid-template-columns: minmax(0, 1.75fr) minmax(260px, 0.75fr);
	}

	.home-news-stream {
		grid-column: 1 / -1;
		display: grid;
		grid-template-columns: repeat(3, 1fr);
		border-right: 0;
		border-bottom: 1px solid var(--hourly-rule);
		padding: 0 0 20px;
	}

	.home-news-stream .mini-section-heading {
		grid-column: 1 / -1;
	}

	.stream-story {
		padding-right: 16px;
	}

	.home-content-grid,
	.category-feed-grid {
		grid-template-columns: minmax(0, 1.6fr) minmax(250px, 0.7fr);
		gap: 30px;
	}

	.news-section .section-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		grid-template-rows: auto;
	}

	.news-section .story-card:first-child {
		grid-column: 1 / -1;
		grid-row: auto;
		border-right: 0;
		border-bottom: 1px solid var(--hourly-rule);
		padding: 0 0 24px;
	}

	.category-spotlight {
		grid-template-columns: minmax(0, 1.6fr) minmax(250px, 0.7fr);
	}

	.trust-page-layout {
		grid-template-columns: minmax(0, 700px) 240px;
		gap: 38px;
	}

	.newsletter-page-hero-inner {
		gap: 44px;
	}
}

@media (max-width: 760px) {
	.site-shell,
	.article-width,
	.article-heading-width,
	.article-hero,
	.comments-area {
		width: min(calc(100% - 28px), var(--hourly-shell));
	}

	.masthead {
		grid-template-columns: 44px 1fr 44px;
		min-height: 86px;
		padding-block: 17px 13px;
	}

	.hourly-wordmark {
		font-size: clamp(2.45rem, 13vw, 3.6rem);
	}

	.masthead-tagline {
		display: none;
	}

	.drawer-inner {
		grid-template-columns: 1fr 1fr;
		gap: 28px 20px;
	}

	.drawer-follow {
		grid-template-columns: 1fr;
		gap: 10px;
	}

	.home-hero-grid,
	.home-content-grid,
	.category-spotlight,
	.category-feed-grid,
	.trust-page-layout,
	.newsletter-page-hero-inner,
	.newsletter-band-inner,
	.footer-top {
		grid-template-columns: 1fr;
	}

	.home-news-stream {
		grid-template-columns: 1fr;
	}

	.stream-story {
		padding-right: 0;
	}

	.hero-secondary,
	.home-rail,
	.category-rail {
		border-left: 0;
		padding-left: 0;
	}

	.hero-secondary {
		border-top: 3px solid var(--hourly-ink);
		padding-top: 18px;
	}

	.lead-story h2 {
		font-size: clamp(2.1rem, 10vw, 3.25rem);
	}

	.featured-carousel {
		grid-auto-columns: 82%;
	}

	.horizontal-card {
		grid-template-columns: 132px minmax(0, 1fr);
		gap: 14px;
	}

	.horizontal-card .story-card-title,
	.category-feed-card .story-card-title {
		font-size: 1.08rem;
	}

	.horizontal-card .story-card-excerpt {
		display: none;
	}

	.newsletter-band-inner {
		gap: 20px;
		padding-block: 38px;
	}

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

	.category-header {
		padding-block: 42px 30px;
	}

	.category-lead-story {
		border-right: 0;
		padding-right: 0;
	}

	.category-spotlight-secondary {
		display: grid;
		grid-template-columns: 1fr 1fr;
		gap: 18px;
	}

	.article-header {
		text-align: left;
	}

	.article-title {
		font-size: clamp(2.35rem, 12.5vw, 4rem);
	}

	.article-layout {
		display: block;
		margin-top: 30px;
	}

	.hourly-value-grid,
	.hourly-contact-grid,
	.newsletter-benefits {
		grid-template-columns: 1fr;
	}

	.trust-page-rail {
		order: -1;
	}

	.newsletter-page-hero-inner {
		min-height: 0;
		padding-block: 54px;
	}

	.newsletter-page-hero h1 {
		font-size: clamp(3.6rem, 18vw, 6rem);
	}

	.newsletter-benefits > div + div {
		border-top: 1px solid var(--hourly-rule);
		border-left: 0;
	}
}

@media (max-width: 480px) {
	.news-section .section-grid,
	.category-spotlight-secondary {
		grid-template-columns: 1fr;
	}

	.hero-secondary .story-card {
		grid-template-columns: 105px minmax(0, 1fr);
	}

	.hourly-wordmark {
		font-size: 2.45rem;
	}
}
