/* Growth Optimax Blog — Main styles */

:root {
	--go-ink: #0a0a0a;
	--go-paper: #ffffff;
	--go-surface: #f4f4f4;
	--go-surface-dark: #171717;
	--go-border: #1b1b1b;
	--go-border-light: #d8d8d8;
	--go-muted: #666666;
	--go-accent: #2f63ff;
	--go-accent-hover: #1747d1;
	--go-danger: #d71920;
	--go-font-display: "Archivo", "Helvetica Neue", Arial, sans-serif;
	--go-font-body: "Source Serif 4", Georgia, "Times New Roman", serif;
	--go-font-serif: "Source Serif 4", Georgia, "Times New Roman", serif;
	--go-font-meta: "Libre Franklin", "Helvetica Neue", Arial, sans-serif;
	--go-font-mono: "Space Mono", "SFMono-Regular", ui-monospace, Menlo, Consolas, monospace;
	--go-container: 1440px;
	--go-content: 1320px;
	--go-pad: 16px;
	--go-radius: 4px;
	--go-header-offset: 120px;
}

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

html {
	scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
	html {
		scroll-behavior: auto;
	}

	*,
	*::before,
	*::after {
		animation-duration: 0.01ms !important;
		animation-iteration-count: 1 !important;
		transition-duration: 0.01ms !important;
		scroll-behavior: auto !important;
	}
}

body {
	margin: 0;
	font-family: var(--go-font-body);
	font-size: 1.125rem;
	line-height: 1.7;
	color: var(--go-ink);
	background: var(--go-paper);
	-webkit-font-smoothing: antialiased;
}

img,
svg,
video,
iframe {
	max-width: 100%;
	height: auto;
	display: block;
}

a {
	color: var(--go-accent);
	text-decoration: none;
}

a:hover,
a:focus-visible {
	color: var(--go-accent-hover);
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
	outline: 2px solid var(--go-accent);
	outline-offset: 2px;
}

h1, h2, h3, h4, h5, h6 {
	font-family: var(--go-font-display);
	font-weight: 700;
	line-height: 1.15;
	margin: 0 0 0.6em;
	color: var(--go-ink);
}

p {
	margin: 0 0 1.1em;
}

ul, ol {
	margin: 0 0 1.1em;
	padding-left: 1.25em;
}

figure {
	margin: 0;
}

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

.screen-reader-text {
	border: 0;
	clip: rect(1px, 1px, 1px, 1px);
	clip-path: inset(50%);
	height: 1px;
	margin: -1px;
	overflow: hidden;
	padding: 0;
	position: absolute;
	width: 1px;
	word-wrap: normal !important;
}

.screen-reader-text:focus {
	background: var(--go-paper);
	clip: auto !important;
	clip-path: none;
	color: var(--go-ink);
	display: block;
	font-size: 0.875rem;
	height: auto;
	left: 8px;
	line-height: normal;
	padding: 12px 16px;
	text-decoration: none;
	top: 8px;
	width: auto;
	z-index: 100000;
}

.go-skip-link:focus {
	position: fixed;
}

.go-container {
	width: min(100% - (var(--go-pad) * 2), var(--go-content));
	margin-inline: auto;
}

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

/* Buttons */
.go-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.4em;
	padding: 0.65em 1.15em;
	border: 1px solid transparent;
	border-radius: var(--go-radius);
	font-family: var(--go-font-meta);
	font-size: 0.8125rem;
	font-weight: 700;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	cursor: pointer;
	transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.go-btn--accent {
	background: var(--go-accent);
	color: #fff;
}

.go-btn--accent:hover,
.go-btn--accent:focus-visible {
	background: var(--go-accent-hover);
	color: #fff;
}

.go-btn--outline {
	background: transparent;
	border-color: var(--go-border);
	color: var(--go-ink);
}

.go-btn--outline:hover,
.go-btn--outline:focus-visible {
	border-color: var(--go-accent);
	color: var(--go-accent);
}

/* Header — single-row masthead */
.go-header {
	position: sticky;
	top: 0;
	z-index: 1000;
	background: var(--go-paper);
	border-bottom: 1px solid var(--go-border);
}

.go-header__row {
	display: flex;
	align-items: center;
	gap: 1.25rem;
	min-height: 52px;
}

.go-social-list,
.go-primary-nav__list,
.go-header__utility-list,
.go-footer__menu,
.go-mobile-nav__list {
	list-style: none;
	margin: 0;
	padding: 0;
}

.go-social-list {
	display: flex;
	gap: 0.85rem;
}

.go-social-list a {
	color: inherit;
	font-size: 0.75rem;
	font-weight: 700;
	letter-spacing: 0.04em;
	text-transform: uppercase;
}

.go-menu-toggle,
.go-search-toggle,
.go-mobile-nav__close,
.go-search-overlay__close,
.go-account-link {
	appearance: none;
	background: transparent;
	border: 0;
	padding: 0.35rem;
	margin: 0;
	color: var(--go-ink);
	cursor: pointer;
	flex-shrink: 0;
	display: inline-flex;
}

.go-account-link:hover {
	color: var(--go-accent);
}

.go-menu-toggle {
	margin-right: -0.35rem;
}

.go-brand {
	flex-shrink: 0;
}

.go-brand__title {
	margin: 0;
	font-family: var(--go-font-display);
	font-size: clamp(1.1rem, 1.8vw, 1.4rem);
	font-weight: 800;
	letter-spacing: -0.01em;
	line-height: 1;
}

.go-brand__title a,
.go-brand .custom-logo-link {
	color: var(--go-ink);
}

.go-brand .custom-logo {
	max-height: 34px;
	width: auto;
}

.go-primary-nav {
	display: none;
	flex: 1 1 auto;
	min-width: 0;
	overflow: hidden;
}

.go-primary-nav__list {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 0.05rem 1.5rem;
}

.go-primary-nav__list > li > a {
	display: inline-block;
	padding: 0.4rem 0;
	color: var(--go-ink);
	font-family: var(--go-font-mono);
	font-size: 0.8125rem;
	font-weight: 400;
	letter-spacing: 0.07em;
	text-transform: uppercase;
	white-space: nowrap;
}

.go-primary-nav__list > li > a:hover,
.go-primary-nav__list > li > a:focus-visible {
	color: var(--go-accent);
}

.go-header__actions {
	display: flex;
	align-items: center;
	gap: 1rem;
	margin-left: auto;
	flex-shrink: 0;
}

.go-header__utility {
	display: none;
}

.go-header__utility-list {
	display: flex;
	gap: 1rem;
}

.go-header__utility-list a {
	color: var(--go-ink);
	font-size: 0.6875rem;
	font-weight: 800;
	letter-spacing: 0.07em;
	text-transform: uppercase;
	white-space: nowrap;
}

.go-header__utility-list a:hover {
	color: var(--go-accent);
}

.go-header-cta {
	display: none;
	font-family: var(--go-font-meta);
	font-size: 0.6875rem;
	font-weight: 800;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--go-accent);
	white-space: nowrap;
}

.go-header-cta:hover {
	color: var(--go-accent-hover);
}

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

/* Mobile nav */
.go-mobile-nav[hidden],
.go-search-overlay[hidden] {
	display: none !important;
}

.go-mobile-nav {
	position: fixed;
	inset: 0;
	z-index: 1100;
}

.go-mobile-nav__backdrop {
	position: absolute;
	inset: 0;
	background: rgba(10, 10, 10, 0.45);
}

.go-mobile-nav__panel {
	position: absolute;
	top: 0;
	left: 0;
	width: min(100%, 360px);
	height: 100%;
	background: var(--go-paper);
	padding: 1.25rem;
	overflow-y: auto;
	transform: translateX(0);
}

.go-mobile-nav__header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 1.5rem;
	padding-bottom: 1rem;
	border-bottom: 1px solid var(--go-border-light);
}

.go-mobile-nav__title {
	font-family: var(--go-font-display);
	font-weight: 800;
}

.go-mobile-nav__list a {
	display: block;
	padding: 0.85rem 0;
	border-bottom: 1px solid var(--go-border-light);
	color: var(--go-ink);
	font-size: 0.875rem;
	font-weight: 700;
	letter-spacing: 0.06em;
	text-transform: uppercase;
}

.go-mobile-nav__list .sub-menu {
	list-style: none;
	margin: 0;
	padding: 0 0 0 1rem;
}

/* Search overlay */
.go-search-overlay {
	position: fixed;
	inset: 0;
	z-index: 1200;
	display: grid;
	place-items: center;
	background: rgba(10, 10, 10, 0.72);
	padding: 1.5rem;
}

.go-search-overlay__inner {
	position: relative;
	width: min(100%, 640px);
	background: var(--go-paper);
	padding: 2rem 1.5rem 1.5rem;
	border-radius: var(--go-radius);
}

.go-search-overlay__close {
	position: absolute;
	top: 0.5rem;
	right: 0.5rem;
}

.go-search-form {
	display: flex;
	flex-wrap: wrap;
	gap: 0.75rem;
}

.go-search-form__input {
	flex: 1 1 220px;
	min-height: 48px;
	padding: 0.65rem 0.9rem;
	border: 1px solid var(--go-border-light);
	border-radius: var(--go-radius);
	background: var(--go-paper);
}

/* Main */
.go-main {
	padding: 2rem 0 3rem;
}

.go-section-head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	margin-bottom: 1.25rem;
	padding-top: 0.6rem;
	border-top: 1px solid var(--go-border);
}

.go-section__title {
	margin: 0;
	display: inline-block;
	background: var(--go-ink);
	color: #fff;
	font-family: var(--go-font-mono);
	font-size: 0.8125rem;
	font-weight: 700;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	line-height: 1;
	padding: 0.4rem 0.6rem;
}

.go-section__link {
	font-family: var(--go-font-mono);
	font-size: 0.75rem;
	font-weight: 700;
	letter-spacing: 0.05em;
	text-transform: uppercase;
	white-space: nowrap;
	color: var(--go-ink);
}

.go-section__link:hover {
	color: var(--go-accent);
}

/* Breaking strip */
.go-breaking {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 0.75rem 1.25rem;
	margin-bottom: 2rem;
	padding: 0.85rem 0;
	border-top: 1px solid var(--go-border);
	border-bottom: 1px solid var(--go-border);
}

.go-breaking__label {
	font-size: 0.75rem;
	font-weight: 800;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--go-danger);
}

.go-breaking__list {
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem 1.25rem;
	list-style: none;
	margin: 0;
	padding: 0;
}

.go-breaking__list a {
	color: var(--go-ink);
	font-size: 0.9375rem;
	font-weight: 600;
}

.go-breaking__list a:hover {
	color: var(--go-accent);
}

/* Lead "Today's Picks" three-zone grid */
.go-lead-section {
	margin-bottom: 2.5rem;
}

.go-lead {
	display: grid;
	gap: 1.5rem;
}

.go-lead__rail {
	display: flex;
	flex-direction: column;
}

.go-lead__center {
	order: -1;
	min-width: 0;
}

.go-lead__hero {
	padding-bottom: 1.25rem;
}

.go-lead__hero-title {
	margin: 0;
	font-family: var(--go-font-display);
	font-size: clamp(2rem, 4vw, 3.4rem);
	font-weight: 800;
	line-height: 1.02;
	letter-spacing: -0.02em;
}

.go-lead__hero-title a {
	color: var(--go-ink);
	background-image: linear-gradient(currentColor, currentColor);
	background-size: 0% 1px;
	background-position: 0 100%;
	background-repeat: no-repeat;
	transition: background-size 0.25s ease, color 0.2s ease;
}

.go-lead__hero-title a:hover {
	color: #000;
	background-size: 100% 1px;
}

.go-lead__hero-excerpt {
	margin: 0.75rem 0 0;
	color: var(--go-muted);
	font-size: 1.0625rem;
	line-height: 1.45;
}

.go-lead__hero-media {
	margin: 1.25rem 0 0;
	aspect-ratio: 16 / 9;
	overflow: hidden;
	background: var(--go-surface);
}

.go-lead__hero-image {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.go-lead__secondary {
	display: grid;
	gap: 1.25rem;
	padding-top: 1.25rem;
	border-top: 1px solid var(--go-border-light);
	margin-top: 1.25rem;
}

.go-lead__secondary .go-card {
	border-bottom: 0;
	padding-bottom: 0;
}

/* Square-thumb rail cards */
.go-card--rail-thumb {
	display: grid;
	grid-template-columns: 72px 1fr;
	gap: 0.75rem;
	align-items: start;
	padding: 0 0 0.9rem;
	border-bottom: 1px solid var(--go-border-light);
}

.go-card--rail-thumb + .go-card--rail-thumb {
	padding-top: 0.9rem;
}

.go-card--rail-thumb__media {
	display: block;
	aspect-ratio: 1 / 1;
	overflow: hidden;
	background: var(--go-surface);
}

.go-card--rail-thumb__image,
.go-card--rail-thumb__placeholder {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.go-card--rail-thumb__placeholder {
	background: var(--go-border-light);
}

.go-card__title--rail {
	margin: 0.15rem 0 0;
	font-size: clamp(0.95rem, 1.1vw, 1.125rem);
	font-weight: 700;
	line-height: 1.2;
}

.go-card--compact {
	padding: 0 0 0.9rem;
	border-bottom: 1px solid var(--go-border-light);
}

.go-card--compact + .go-card--compact {
	padding-top: 0.9rem;
}

.go-card__title--compact {
	font-size: clamp(1rem, 1.2vw, 1.2rem);
	line-height: 1.2;
}

.go-lead__rail--right .go-ad-slot {
	margin-top: 1rem;
	min-height: 160px;
}

/* Video / Watch section */
.go-video-section {
	margin-bottom: 2.5rem;
}

.go-video-section__grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
	gap: 1.25rem;
}

.go-card--video__media {
	position: relative;
	display: block;
	aspect-ratio: 16 / 9;
	overflow: hidden;
	background: var(--go-surface-dark, #171717);
}

.go-card--video__image,
.go-card--video__placeholder {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.go-card--video__play {
	position: absolute;
	left: 0.75rem;
	bottom: 0.75rem;
	top: auto;
	inset: auto auto 0.75rem 0.75rem;
	transform: none;
	width: 2.5rem;
	height: 2.5rem;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.95);
}

.go-card--video__play::after {
	content: "";
	position: absolute;
	top: 50%;
	left: 54%;
	transform: translate(-50%, -50%);
	border-style: solid;
	border-width: 0.45rem 0 0.45rem 0.75rem;
	border-color: transparent transparent transparent var(--go-ink);
}

.go-card--video__duration {
	position: absolute;
	right: 0.5rem;
	bottom: 0.5rem;
	padding: 0.15rem 0.4rem;
	background: rgba(0, 0, 0, 0.75);
	color: #fff;
	font-family: var(--go-font-mono, monospace);
	font-size: 0.6875rem;
	letter-spacing: 0.04em;
}

.go-card--video .go-card__body {
	padding-top: 0.75rem;
}

/* Featured grid */
.go-featured-section,
.go-latest-section,
.go-category-section,
.go-popular-section,
.go-paginated-feed {
	margin-bottom: 2.5rem;
}

.go-featured-grid {
	display: grid;
	gap: 1.25rem;
}

.go-featured {
	display: grid;
	gap: 0.6rem;
	padding-bottom: 1rem;
	border-bottom: 1px solid var(--go-border-light);
}

.go-featured__media {
	display: block;
	overflow: hidden;
	background: var(--go-surface);
	aspect-ratio: 16 / 9;
}

.go-featured__image {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.45s cubic-bezier(0.2, 0.7, 0.2, 1);
}

.go-featured:hover .go-featured__image {
	transform: scale(1.045);
}

.go-featured__title {
	margin: 0;
	font-size: clamp(1.1rem, 1.5vw, 1.5rem);
	letter-spacing: -0.015em;
	line-height: 1.12;
}

.go-featured--lead .go-featured__title {
	font-size: clamp(2.1rem, 4.2vw, 4rem);
	font-weight: 800;
	letter-spacing: -0.02em;
	line-height: 0.98;
}

.go-featured__title a {
	color: var(--go-ink);
	background-image: linear-gradient(currentColor, currentColor);
	background-size: 0% 1px;
	background-position: 0 100%;
	background-repeat: no-repeat;
	transition: background-size 0.25s ease, color 0.2s ease;
}

.go-featured__title a:hover {
	color: var(--go-accent);
	background-size: 100% 1px;
}

.go-featured__excerpt {
	margin: 0;
	color: var(--go-muted);
	font-size: 1.0625rem;
}

/* Kicker (category) + agate (byline) — dense editorial meta rows */
.go-kicker {
	margin: 0 0 0.5rem;
	font-family: var(--go-font-mono);
	font-size: 0.75rem;
	font-weight: 700;
	letter-spacing: 0.09em;
	text-transform: uppercase;
	line-height: 1.25;
}

.go-kicker__link {
	color: var(--go-ink);
}

.go-kicker__link:hover {
	color: var(--go-accent);
}

.go-agate {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 0.35rem;
	margin: 0.5rem 0 0;
	font-family: var(--go-font-mono);
	font-size: 0.6875rem;
	font-weight: 400;
	letter-spacing: 0.05em;
	text-transform: uppercase;
	color: var(--go-muted);
}

.go-agate__link {
	color: var(--go-muted);
}

.go-agate__link:hover {
	color: var(--go-accent);
}

.go-agate__sep {
	color: var(--go-border-light);
}

/* Meta */
.go-meta {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 0.35rem 0.75rem;
	margin-bottom: 0.5rem;
	font-family: var(--go-font-meta);
	font-size: 0.75rem;
	font-weight: 600;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	color: var(--go-muted);
}

.go-meta__category {
	color: var(--go-accent);
}

.go-meta__author-link {
	color: var(--go-ink);
}

/* Cards */
.go-card-grid {
	display: grid;
	gap: 1.25rem 1.5rem;
}

.go-card {
	display: grid;
	gap: 0.55rem;
	padding-bottom: 1rem;
	border-bottom: 1px solid var(--go-border-light);
}

.go-card__media {
	display: block;
	overflow: hidden;
	background: var(--go-surface);
	aspect-ratio: 8 / 5;
}

.go-card__image {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.45s cubic-bezier(0.2, 0.7, 0.2, 1);
}

.go-card:hover .go-card__image {
	transform: scale(1.045);
}

.go-card__title {
	margin: 0;
	font-size: clamp(1.05rem, 1.3vw, 1.3rem);
	letter-spacing: -0.015em;
	line-height: 1.15;
}

.go-card__title a {
	color: var(--go-ink);
	background-image: linear-gradient(currentColor, currentColor);
	background-size: 0% 1px;
	background-position: 0 100%;
	background-repeat: no-repeat;
	transition: background-size 0.25s ease, color 0.2s ease;
}

.go-card__title a:hover {
	color: #000;
	background-size: 100% 1px;
}

.go-card__excerpt {
	margin: 0;
	color: var(--go-muted);
	font-size: 0.9rem;
	line-height: 1.5;
}

/* Horizontal stories */
.go-story-list {
	display: grid;
	gap: 0;
}

.go-horizontal {
	display: grid;
	grid-template-columns: 120px 1fr;
	gap: 1rem;
	padding: 1rem 0;
	border-bottom: 1px solid var(--go-border-light);
}

.go-horizontal__media {
	display: block;
	overflow: hidden;
	background: var(--go-surface);
	aspect-ratio: 3 / 2;
}

.go-horizontal__image {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.45s cubic-bezier(0.2, 0.7, 0.2, 1);
}

.go-horizontal:hover .go-horizontal__image {
	transform: scale(1.045);
}

.go-horizontal__title {
	margin: 0;
	font-size: clamp(1.05rem, 1.4vw, 1.4rem);
	letter-spacing: -0.015em;
	line-height: 1.15;
}

.go-horizontal__title a {
	color: var(--go-ink);
	background-image: linear-gradient(currentColor, currentColor);
	background-size: 0% 1px;
	background-position: 0 100%;
	background-repeat: no-repeat;
	transition: background-size 0.25s ease, color 0.2s ease;
}

.go-horizontal__title a:hover {
	color: #000;
	background-size: 100% 1px;
}

.go-horizontal__excerpt {
	display: none;
	margin: 0.35rem 0 0;
	color: var(--go-muted);
	font-size: 0.975rem;
}

/* Category section */
.go-category-section__grid {
	display: grid;
	gap: 1.5rem;
}

/* Newsletter */
.go-newsletter {
	margin: 0;
}

.go-newsletter--band {
	margin: 0;
	padding: clamp(2.75rem, 5vw, 4.25rem) var(--go-pad, 1.5rem);
	background: #0a0a0a;
	color: #fff;
	text-align: center;
	width: 100%;
}

.go-newsletter--band .go-newsletter__fallback {
	flex-direction: row;
	justify-content: center;
	max-width: 36rem;
	margin-inline: auto;
}

.go-newsletter--band .go-newsletter__heading {
	margin: 0 0 0.65rem;
	color: #fff;
	font-family: var(--go-font-display);
	font-size: clamp(1.75rem, 3.5vw, 2.75rem);
	font-weight: 800;
	letter-spacing: -0.02em;
	line-height: 1.1;
	text-transform: none;
}

.go-newsletter--band .go-newsletter__description,
.go-newsletter--band .go-newsletter__note {
	margin: 0 auto 1.5rem;
	max-width: 36rem;
	color: rgba(255, 255, 255, 0.72);
	font-family: var(--go-font-serif);
	font-size: 1.0625rem;
	line-height: 1.55;
}

.go-newsletter__fallback {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 0.75rem;
}

.go-newsletter__fallback input[type="email"] {
	min-width: min(100%, 280px);
	min-height: 48px;
	padding: 0.65rem 0.9rem;
	border: 1px solid rgba(255, 255, 255, 0.25);
	border-radius: 0;
	background: #fff;
	color: var(--go-ink);
}

.go-btn--light {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 48px;
	padding: 0.65rem 1.25rem;
	border: 1px solid #fff;
	background: #fff;
	color: #0a0a0a;
	font-family: var(--go-font-mono);
	font-size: 0.75rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	text-decoration: none;
	cursor: pointer;
}

.go-btn--light:hover {
	background: transparent;
	color: #fff;
}

.go-newsletter--footer {
	text-align: left;
}

.go-newsletter--footer .go-newsletter__heading {
	margin: 0 0 0.75rem;
	color: #fff;
	font-family: var(--go-font-meta);
	font-size: 0.8125rem;
	font-weight: 700;
	letter-spacing: 0.06em;
	text-transform: uppercase;
}

.go-newsletter--footer .go-newsletter__description {
	margin: 0 0 1rem;
	max-width: none;
	color: rgba(255, 255, 255, 0.62);
	font-size: 0.8125rem;
	line-height: 1.55;
}

.go-newsletter--footer .go-newsletter__fallback {
	justify-content: flex-start;
	flex-direction: column;
	align-items: stretch;
}

.go-newsletter--footer .go-newsletter__fallback input[type="email"] {
	min-width: 0;
	width: 100%;
}

.go-newsletter--footer .go-btn--light {
	width: 100%;
}

.go-newsletter__cta {
	margin: 0;
}

/* Archive */
.go-archive-header {
	margin-bottom: 2rem;
	padding-bottom: 1.25rem;
	border-bottom: 1px solid var(--go-border);
}

.go-archive-header__label {
	margin: 0 0 0.35rem;
	font-size: 0.75rem;
	font-weight: 800;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--go-accent);
}

.go-archive-header__title {
	margin: 0 0 0.5rem;
	font-size: clamp(2rem, 4vw, 3.5rem);
	letter-spacing: -0.03em;
}

.go-archive-header__description {
	color: var(--go-muted);
	max-width: 48rem;
}

.go-archive-header__count {
	margin: 0.75rem 0 0;
	font-size: 0.8125rem;
	font-weight: 700;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: var(--go-muted);
}

.go-archive-header--author {
	display: grid;
	justify-items: start;
	gap: 0.75rem;
}

.go-archive-header__avatar {
	border-radius: 50%;
}

.go-archive-header__search {
	margin-top: 1.25rem;
	max-width: 36rem;
}

/* Pagination */
.go-pagination {
	margin-top: 2.5rem;
}

.go-pagination__list {
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem;
	list-style: none;
	margin: 0;
	padding: 0;
}

.go-pagination__item a,
.go-pagination__item span {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 42px;
	min-height: 42px;
	padding: 0.4rem 0.75rem;
	border: 1px solid var(--go-border-light);
	color: var(--go-ink);
	font-size: 0.875rem;
	font-weight: 700;
}

.go-pagination__item.is-active span,
.go-pagination__item .current {
	background: var(--go-ink);
	border-color: var(--go-ink);
	color: #fff;
}

.go-pagination__item a:hover {
	border-color: var(--go-accent);
	color: var(--go-accent);
}

/* 404 */
.go-404 {
	text-align: center;
	padding-top: 2rem;
}

.go-404__code {
	margin: 0;
	font-family: var(--go-font-display);
	font-size: clamp(5rem, 18vw, 9rem);
	font-weight: 800;
	line-height: 0.9;
	letter-spacing: -0.05em;
}

.go-404__title {
	font-size: clamp(1.8rem, 4vw, 3rem);
}

.go-404__text {
	max-width: 36rem;
	margin: 0 auto 1.5rem;
	color: var(--go-muted);
}

.go-404__actions {
	display: grid;
	justify-items: center;
	gap: 1rem;
	margin-bottom: 3rem;
}

.go-404__actions .go-search-form {
	width: min(100%, 36rem);
}

.go-404__recent {
	text-align: left;
}

/* Page */
.go-page-header__title {
	font-size: clamp(2rem, 4vw, 3.5rem);
}

.go-page-featured {
	margin: 1.5rem 0 2rem;
}

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

/* Footer — dark editorial masthead + columns + baseline */
.go-footer {
	background: #000;
	color: rgba(255, 255, 255, 0.7);
	padding: clamp(3rem, 6vw, 4.5rem) 0 0;
	margin-top: 0;
	font-size: 0.8125rem;
	border-top: 0;
}

.go-footer a {
	color: rgba(255, 255, 255, 0.78);
	text-decoration: none;
}

.go-footer a:hover {
	color: #fff;
}

.go-footer ul {
	list-style: none;
	margin: 0;
	padding: 0;
}

.go-footer__masthead {
	text-align: center;
	padding-bottom: clamp(2rem, 4vw, 2.75rem);
	margin-bottom: clamp(2rem, 4vw, 2.75rem);
	border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.go-footer__brand {
	display: flex;
	justify-content: center;
	margin-bottom: 1.15rem;
}

.go-footer__brand .go-brand__title {
	margin: 0;
	font-family: var(--go-font-display);
	font-size: clamp(1.75rem, 4vw, 3rem);
	font-weight: 800;
	letter-spacing: -0.03em;
	line-height: 1;
	padding: 0;
	border: 0;
	text-transform: uppercase;
}

.go-footer__brand .go-brand__title a,
.go-footer__brand .custom-logo-link {
	color: #fff;
}

.go-footer__brand .custom-logo {
	max-height: 56px;
	width: auto;
	filter: brightness(0) invert(1);
}

.go-footer__description {
	max-width: 38rem;
	margin: 0 auto;
	color: rgba(255, 255, 255, 0.62);
	font-family: var(--go-font-meta);
	font-size: 0.875rem;
	line-height: 1.65;
}

.go-footer__columns {
	display: grid;
	gap: 2rem 1.75rem;
	padding-bottom: clamp(2rem, 4vw, 2.75rem);
}

.go-footer__heading {
	margin: 0 0 1rem;
	color: #fff;
	font-family: var(--go-font-meta);
	font-size: 0.8125rem;
	font-weight: 700;
	letter-spacing: 0.06em;
	text-transform: uppercase;
}

.go-footer__menu li {
	margin: 0 0 0.55rem;
	padding: 0;
	list-style: none;
}

.go-footer__menu a {
	font-family: var(--go-font-meta);
	font-size: 0.8125rem;
	font-weight: 400;
	color: rgba(255, 255, 255, 0.72);
	line-height: 1.35;
}

.go-footer__menu a:hover {
	color: #fff;
}

.go-footer__baseline {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 1rem 1.5rem;
	padding: 1.25rem 0 1.5rem;
	border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.go-footer__baseline-main {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 0.65rem 1.25rem;
	min-width: 0;
	flex: 1 1 280px;
}

.go-footer__copyright {
	margin: 0;
	font-family: var(--go-font-meta);
	font-size: 0.75rem;
	color: rgba(255, 255, 255, 0.5);
}

.go-footer__copyright a {
	color: inherit;
}

.go-footer__legal-list {
	display: flex;
	flex-wrap: wrap;
	gap: 0.35rem 1rem;
	list-style: none;
	margin: 0;
	padding: 0;
}

.go-footer__legal-list a {
	font-family: var(--go-font-meta);
	font-size: 0.75rem;
	color: rgba(255, 255, 255, 0.55);
}

.go-footer__legal-list a:hover {
	color: #fff;
}

.go-footer__social {
	flex-shrink: 0;
}

.go-footer__social .go-social-list {
	display: flex;
	flex-wrap: wrap;
	gap: 0.85rem;
	list-style: none;
	margin: 0;
	padding: 0;
}

.go-footer__social .go-social-list a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 2rem;
	min-height: 2rem;
	color: rgba(255, 255, 255, 0.78);
	font-size: 0.7rem;
	letter-spacing: 0.04em;
	text-transform: uppercase;
}

.go-footer__social .go-social-list a:hover {
	color: #fff;
}

.go-none {
	padding: 2rem 0;
}

.go-none__title {
	font-size: clamp(1.8rem, 3vw, 2.5rem);
}

/* Badges & media indicator */
.go-card__media,
.go-featured__media {
	position: relative;
}

.go-badge {
	position: absolute;
	top: 0.6rem;
	left: 0.6rem;
	padding: 0.25rem 0.55rem;
	background: var(--go-ink);
	color: #fff;
	font-family: var(--go-font-mono);
	font-size: 0.625rem;
	font-weight: 700;
	letter-spacing: 0.06em;
	text-transform: uppercase;
}

.go-badge--sponsored {
	background: var(--go-accent);
}

.go-single__category .go-badge {
	position: static;
	display: inline-block;
	margin-left: 0.5rem;
	vertical-align: middle;
}

.go-media-indicator {
	display: inline-flex;
	color: var(--go-accent);
	vertical-align: middle;
}

/* Audio player */
.go-audio {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	margin-top: 1rem;
}

.go-audio__label {
	font-family: var(--go-font-mono);
	font-size: 0.6875rem;
	font-weight: 700;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: var(--go-muted);
	white-space: nowrap;
}

.go-audio__player {
	flex: 1 1 auto;
	max-width: 360px;
	height: 36px;
}

/* Affiliate disclosure */
.go-disclosure {
	margin: 1.5rem 0;
	padding: 0.85rem 1rem;
	background: var(--go-surface);
	border-left: 2px solid var(--go-accent);
	color: var(--go-muted);
	font-size: 0.85rem;
}

/* Image credit */
.go-single__featured-credit {
	margin-left: 0.5rem;
	color: var(--go-muted);
	opacity: 0.8;
}

/* Sticky social rail (desktop) + footer share fallback (mobile/tablet) */
.go-single__social-rail {
	display: none;
}

.go-single__social-rail .go-share__list {
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
	list-style: none;
	margin: 0.5rem 0 0;
	padding: 0;
}

/* Curated Series / Swiper slider */
.go-curated-series {
	margin-bottom: 2.5rem;
}

.go-curated-series__description {
	margin: 0 0 1.25rem;
	color: var(--go-muted);
	max-width: 46rem;
}

.go-swiper {
	position: relative;
}

.go-swiper .swiper-slide {
	height: auto;
}

.go-swiper .go-card--slider {
	height: 100%;
}

.go-swiper__pagination {
	position: relative;
	margin-top: 1rem;
	display: flex;
	justify-content: center;
	gap: 0.4rem;
}

.go-swiper .swiper-pagination-bullet {
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: var(--go-border-light);
	opacity: 1;
}

.go-swiper .swiper-pagination-bullet-active {
	background: var(--go-ink);
}

.go-swiper__nav {
	position: absolute;
	top: 35%;
	z-index: 2;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 36px;
	height: 36px;
	background: var(--go-paper);
	border: 1px solid var(--go-border-light);
	color: var(--go-ink);
	cursor: pointer;
}

.go-swiper__nav--prev {
	left: -8px;
}

.go-swiper__nav--next {
	right: -8px;
}

.go-swiper__nav.swiper-button-disabled {
	opacity: 0.35;
	cursor: default;
}

/* Big Story feature band */
.go-big-story {
	display: grid;
	grid-template-columns: 1.1fr 1fr;
	gap: 2rem;
	align-items: center;
	margin: 2.5rem 0;
	padding: 2.5rem;
	background: var(--go-big-story-bg, var(--go-surface-dark));
	color: #fff;
}

.go-big-story--align-center {
	grid-template-columns: 1fr;
	text-align: center;
}

.go-big-story--align-center .go-big-story__body {
	max-width: 46rem;
	margin: 0 auto;
}

.go-big-story__media {
	overflow: hidden;
	aspect-ratio: 16 / 10;
}

.go-big-story__image {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.go-big-story .go-kicker {
	color: rgba(255, 255, 255, 0.7);
}

.go-big-story .go-kicker__link {
	color: rgba(255, 255, 255, 0.85);
}

.go-big-story__title {
	margin: 0.5rem 0;
	font-size: clamp(1.8rem, 3.4vw, 3rem);
	line-height: 1.05;
}

.go-big-story__title a {
	color: #fff;
}

.go-big-story__dek {
	color: rgba(255, 255, 255, 0.75);
	font-size: 1.05rem;
	max-width: 34rem;
}

.go-big-story .go-agate,
.go-big-story .go-agate__link {
	color: rgba(255, 255, 255, 0.6);
}

.go-big-story__cta {
	margin-top: 1rem;
	border-color: rgba(255, 255, 255, 0.4);
	color: #fff;
}

.go-big-story__cta:hover {
	border-color: #fff;
	color: #fff;
}

/* Advertisement placeholder */
.go-ad-slot {
	margin: 2rem 0;
	padding: 1.5rem;
	border: 1px dashed var(--go-border-light);
	text-align: center;
}

.go-ad-slot__label {
	display: inline-block;
	margin-bottom: 0.5rem;
	font-family: var(--go-font-mono);
	font-size: 0.6875rem;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--go-muted);
}

.go-ad-slot__body:empty {
	min-height: 60px;
}

/* Per-category accent color (optional, set via Posts → Categories) */
.go-archive-header {
	border-top: 3px solid var(--go-cat-accent, var(--go-accent));
	padding-top: 1rem;
}

.go-archive-header__label {
	color: var(--go-cat-accent, var(--go-accent));
}
