/* ==========================================================================
   Premier News Child — Core Bundle
   Combines: global.css, header.css, homepage.css, footer.css, responsive.css
   Bundled to cut 5 render-blocking requests down to 1.
   Cascade order preserved exactly as the original enqueue order.
   ========================================================================== */

/* ---- source: assets/css/global.css ---- */
/* ==========================================================================
   Design tokens
   One accent + a warm-neutral gray scale. Accent is reserved for CTAs,
   links, active nav, and category kickers only.
   ========================================================================== */
:root {
	/* Dark/gold brand palette for Trusted Top Casinos.
	   Ported from the Trusted Top Reviews light editorial palette; --ttr-ink was
	   split into --ttr-ink (dark chrome backgrounds) and --ttr-headline (light
	   headline text) because the source used one token for both roles. */
	--ttr-ink: #0b0f16;
	--ttr-headline: #f4f1ea;
	--ttr-on-accent: #17130a;
	--ttr-body: #b9b5ad;
	--ttr-muted: #86827b;
	--ttr-accent: #e8b931;
	--ttr-accent-tint: #2b2413;
	--ttr-accent-soft: #a8862a;
	--ttr-page: #0d1117;
	--ttr-surface: #161c26;
	--ttr-surface-raised: #1c2330;
	--ttr-hairline: #262e3b;
	--ttr-hairline-soft: #1d232e;

	--ttr-font-serif: 'Newsreader', Georgia, serif;
	--ttr-font-sans: 'Libre Franklin', -apple-system, BlinkMacSystemFont, sans-serif;
	--ttr-font-mono: 'IBM Plex Mono', monospace;

	--ttr-max-width: 1600px;
	--ttr-radius: 5px;
}

/* ==========================================================================
   Reset / base
   ========================================================================== */
.ttr-home,
.ttr-home * {
	box-sizing: border-box;
}

.ttr-home-body {
	margin: 0;
	background: var(--ttr-page);
	font-family: var(--ttr-font-sans);
	color: var(--ttr-body);
}

.ttr-home a {
	color: inherit;
}

.ttr-home img {
	max-width: 100%;
	display: block;
}

.ttr-home button {
	font-family: inherit;
	cursor: pointer;
}

/**
 * Visually hidden but still readable by screen readers and search engines -
 * used for the homepage's H1 (site name), which is already communicated
 * visually via the logo in the brand banner.
 */
.ttr-sr-only {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

/* ==========================================================================
   Shared layout utilities
   ========================================================================== */
.ttr-masthead__inner,
.ttr-featured,
.ttr-trust-strip__inner,
.ttr-main-wrap,
.ttr-full-sections,
.ttr-footer__inner {
	max-width: var(--ttr-max-width);
	margin: 0 auto;
}

.ttr-eyebrow {
	font-size: 11px;
	font-weight: 600;
	letter-spacing: .11em;
	text-transform: uppercase;
	color: var(--ttr-accent);
	margin-bottom: 9px;
}

.ttr-eyebrow--light {
	color: var(--ttr-accent-soft);
}

.ttr-link-accent {
	color: var(--ttr-accent);
	text-decoration: none;
	font-weight: 600;
	white-space: nowrap;
}

.ttr-link-accent:hover {
	text-decoration: underline;
}

.ttr-section-label {
	display: flex;
	align-items: center;
	gap: 14px;
	margin-bottom: 22px;
}

.ttr-section-label span:first-child {
	font-size: 11.5px;
	font-weight: 600;
	letter-spacing: .12em;
	text-transform: uppercase;
	color: var(--ttr-headline);
}

.ttr-rule {
	height: 1px;
	background: var(--ttr-hairline);
	flex: 1;
}

/* ==========================================================================
   Byline / avatar (shared by card component)
   ========================================================================== */
.ttr-avatar {
	width: 30px;
	height: 30px;
	border-radius: 50%;
	background: var(--ttr-accent-tint);
	color: var(--ttr-accent);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 11px;
	font-weight: 700;
	flex: 0 0 auto;
}

.ttr-avatar--sm {
	width: 24px;
	height: 24px;
	font-size: 10px;
}

.ttr-byline {
	display: flex;
	align-items: center;
	gap: 10px;
	margin-top: 14px;
}

.ttr-byline--sm {
	gap: 8px;
	margin-top: auto;
}

.ttr-byline__text {
	font-size: 12.5px;
	line-height: 1.35;
	color: var(--ttr-body);
}

.ttr-byline--sm .ttr-byline__text {
	font-size: 12px;
}

.ttr-byline__author {
	color: var(--ttr-headline);
	font-weight: 600;
}

.ttr-byline__author-sm {
	color: var(--ttr-body);
	font-size: 11.5px;
}

.ttr-byline__sep {
	color: #b6b5af;
}

.ttr-byline__meta {
	font-family: var(--ttr-font-mono);
	font-size: 11px;
	color: var(--ttr-muted);
}

.ttr-byline--sm .ttr-byline__meta {
	font-size: 10.5px;
}


/* ---- source: assets/css/header.css ---- */
/* ==========================================================================
   Masthead
   ========================================================================== */
.ttr-masthead {
	background: var(--ttr-ink);
}

.ttr-masthead__inner {
	padding: 10px 40px 10px 44px;
	display: flex;
	align-items: center;
	gap: 30px;
}

.ttr-masthead__logo {
	display: flex;
	align-items: center;
	flex: 0 0 auto;
	flex-shrink: 0;
	text-decoration: none;
	overflow: visible;
}

.ttr-masthead__logo-text {
	font-family: var(--ttr-font-serif);
	font-weight: 700;
	font-size: 18px;
	color: #fff;
	letter-spacing: -0.01em;
}

.ttr-logo {
	display: flex;
	align-items: center;
	gap: 10px;
	text-decoration: none;
	flex: 0 0 auto;
}

.ttr-logo__mark {
	width: 27px;
	height: 27px;
	border-radius: 7px;
	background: var(--ttr-accent);
	display: flex;
	align-items: center;
	justify-content: center;
	flex: 0 0 auto;
}

.ttr-logo__text {
	font-family: var(--ttr-font-serif);
	font-weight: 700;
	font-size: 21px;
	color: #fff;
	letter-spacing: -0.015em;
}

.ttr-nav {
	display: flex;
	gap: 22px;
	flex: 1;
	margin-left: 6px;
}

.ttr-nav a {
	font-size: 13.5px;
	font-weight: 500;
	color: var(--ttr-muted);
	text-decoration: none;
	padding-bottom: 2px;
	border-bottom: 2px solid transparent;
	transition: color .15s ease, border-color .15s ease;
}

.ttr-nav a:hover {
	color: #fff;
	border-bottom-color: rgba(255, 255, 255, .35);
}

.ttr-nav a.is-active {
	font-weight: 600;
	color: #fff;
	border-bottom-color: var(--ttr-accent);
}

.ttr-nav a.is-active:hover {
	border-bottom-color: var(--ttr-accent);
}

.ttr-masthead__actions {
	display: flex;
	align-items: center;
	gap: 12px;
	flex: 0 0 auto;
}

.ttr-search-toggle {
	display: flex;
	align-items: center;
	gap: 8px;
	background: rgba(255, 255, 255, .08) !important;
	border: 1px solid rgba(255, 255, 255, .22) !important;
	border-radius: 8px;
	padding: 9px 14px;
	width: 200px;
	transition: border-color .15s ease, background .15s ease;
	margin: 0;
}

.ttr-search-toggle:focus-within,
.ttr-search-toggle:hover {
	border-color: var(--ttr-accent) !important;
	background: rgba(255, 255, 255, .12) !important;
}

.ttr-search-toggle svg {
	flex: 0 0 auto;
}

.ttr-search-toggle__input {
	-webkit-appearance: none;
	appearance: none;
	background: transparent !important;
	border: none !important;
	outline: none !important;
	box-shadow: none !important;
	color: #fff !important;
	font-size: 13px;
	font-family: var(--ttr-font-sans);
	width: 100%;
	padding: 0;
}

.ttr-search-toggle__input::placeholder {
	color: #9aa3ba;
}

/* Remove native browser chrome from type="search" inputs (Chrome/Safari
   add their own cancel-button/decoration icons that ignore our styling) */
.ttr-search-toggle__input::-webkit-search-decoration,
.ttr-search-toggle__input::-webkit-search-cancel-button,
.ttr-search-toggle__input::-webkit-search-results-button,
.ttr-search-toggle__input::-webkit-search-results-decoration {
	-webkit-appearance: none;
	appearance: none;
}

.ttr-masthead__date {
	font-family: var(--ttr-font-mono);
	font-size: 11.5px;
	color: var(--ttr-muted);
	white-space: nowrap;
	margin-left: -8px;
}

.ttr-btn-accent {
	/* Primary CTA. In the source (light) design this was a white button on the
	   navy masthead; on the dark casino theme that inverts to dark-on-dark, so
	   it becomes gold with dark label text to match the brand's CTA styling. */
	background: var(--ttr-accent);
	color: var(--ttr-on-accent) !important;
	font-size: 13px;
	font-weight: 700;
	text-decoration: none;
	padding: 8px 16px;
	border-radius: var(--ttr-radius);
	white-space: nowrap;
	border: none;
}

.ttr-mobile-toggle {
	display: none;
	flex-direction: column;
	gap: 3.5px;
	background: none;
	border: none;
	padding: 4px;
}

.ttr-mobile-toggle span {
	width: 18px;
	height: 2px;
	background: var(--ttr-muted);
	border-radius: 2px;
}

.ttr-mobile-cats {
	display: none;
}



/* ---- source: assets/css/homepage.css ---- */
/* ==========================================================================
   Page shell / artboard
   ========================================================================== */
.ttr-home {
	background: var(--ttr-page);
}

/* ==========================================================================
   Featured / top story
   ========================================================================== */
.ttr-featured {
	padding: 34px 40px 30px;
}

.ttr-featured__grid {
	display: grid;
	grid-template-columns: 1fr 336px;
	gap: 44px;
}

.ttr-top-stories {
	border-left: 1px solid var(--ttr-hairline);
	padding-left: 30px;
}

.ttr-top-stories__title {
	font-family: var(--ttr-font-serif);
	font-weight: 600;
	font-size: 16px;
	color: var(--ttr-headline);
	margin-bottom: 16px;
}

.ttr-top-stories__list {
	display: flex;
	flex-direction: column;
}

.ttr-top-stories__item {
	margin-bottom: 10px;
}

.ttr-top-stories__item:last-child {
	margin-bottom: 0;
}

/* ==========================================================================
   Trust strip
   ========================================================================== */
.ttr-trust-strip {
	background: var(--ttr-surface);
	border-top: 1px solid var(--ttr-hairline);
	border-bottom: 1px solid var(--ttr-hairline);
}

.ttr-trust-strip__inner {
	padding: 26px 40px;
	display: grid;
	grid-template-columns: 1.3fr 1.5fr 1fr;
	gap: 40px;
	align-items: center;
}

.ttr-trust-strip__about p {
	font-size: 13.5px;
	line-height: 1.55;
	color: var(--ttr-body);
	margin: 0;
}

.ttr-trust-strip__editors {
	display: flex;
	gap: 26px;
	border-left: 1px solid var(--ttr-hairline);
	border-right: 1px solid var(--ttr-hairline);
	padding: 0 30px;
}

.ttr-editor-chip {
	display: flex;
	align-items: center;
	gap: 10px;
}

.ttr-editor-chip__name {
	font-size: 12.5px;
	font-weight: 600;
	color: var(--ttr-headline);
}

.ttr-editor-chip__role {
	font-size: 11px;
	color: var(--ttr-muted);
}

.ttr-trust-strip__facts {
	display: flex;
	flex-direction: column;
	gap: 7px;
}

.ttr-fact {
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: 12.5px;
	color: var(--ttr-body);
}

.ttr-dot {
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: var(--ttr-accent);
	flex: 0 0 auto;
}

/* ==========================================================================
   Main + sidebar layout
   ========================================================================== */
.ttr-main-wrap {
	padding: 42px 40px 48px;
	display: grid;
	grid-template-columns: 1fr 320px;
	gap: 52px;
}

.ttr-section {
	margin-bottom: 46px;
}

.ttr-section:last-child {
	margin-bottom: 0;
}

.ttr-section__head {
	display: flex;
	align-items: baseline;
	justify-content: space-between;
	border-bottom: 2px solid var(--ttr-headline);
	padding-bottom: 9px;
	margin-bottom: 24px;
}

.ttr-section__head h2 {
	font-family: var(--ttr-font-serif);
	font-weight: 600;
	font-size: 23px;
	margin: 0;
	letter-spacing: -0.01em;
	color: var(--ttr-headline);
}

.ttr-grid-3 {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 30px;
}

.ttr-grid-2 {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 14px 30px;
}

.ttr-grid-2__item {
	padding-bottom: 0;
}

/* ==========================================================================
   Full-width sections (below the main+sidebar area, more breathing room
   since they're not sharing the row with a 320px sidebar column)
   ========================================================================== */
.ttr-full-sections {
	padding: 6px 40px 48px;
}

.ttr-full-sections .ttr-section {
	margin-bottom: 48px;
}

.ttr-full-sections .ttr-section:last-child {
	margin-bottom: 0;
}

.ttr-grid-4 {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 28px;
}

.ttr-grid-4__item,
.ttr-grid-3__item {
	padding-bottom: 0;
}

/* ==========================================================================
   Sidebar widgets
   ========================================================================== */
.ttr-sidebar {
	display: flex;
	flex-direction: column;
	gap: 34px;
}

.ttr-widget__head {
	border-bottom: 2px solid var(--ttr-headline);
	padding-bottom: 9px;
	margin-bottom: 6px;
}

.ttr-widget__head h2 {
	font-family: var(--ttr-font-serif);
	font-weight: 600;
	font-size: 19px;
	margin: 0;
	color: var(--ttr-headline);
}

.ttr-trending__item {
	padding: 14px 0;
	border-top: 1px solid var(--ttr-hairline-soft);
}

.ttr-trending__item:first-child {
	border-top: none;
	padding-top: 0;
}

.ttr-newsletter {
	background: var(--ttr-ink);
	border-radius: var(--ttr-radius);
	padding: 24px;
}

.ttr-newsletter h3 {
	font-family: var(--ttr-font-serif);
	font-weight: 600;
	font-size: 21px;
	line-height: 1.2;
	color: #fff;
	margin: 0 0 9px;
}

.ttr-newsletter p {
	font-size: 13px;
	line-height: 1.5;
	color: #b9bac0;
	margin: 0 0 16px;
}

.ttr-newsletter__form {
	display: flex;
	flex-direction: column;
	gap: 9px;
}

.ttr-newsletter__form input {
	width: 100%;
	background: var(--ttr-surface-raised);
	border: 1px solid var(--ttr-hairline);
	border-radius: var(--ttr-radius);
	padding: 11px 12px;
	font-size: 13px;
	color: #fff;
	font-family: var(--ttr-font-sans);
	outline: none;
}

.ttr-newsletter__form input::placeholder {
	color: var(--ttr-muted);
}

.ttr-newsletter__form button {
	width: 100%;
	/* White button on the navy block in the source design; gold on dark here. */
	background: var(--ttr-accent);
	color: var(--ttr-on-accent);
	border: none;
	border-radius: var(--ttr-radius);
	padding: 11px;
	font-size: 13px;
	font-weight: 700;
}

.ttr-newsletter__disclaimer {
	font-size: 11px;
	color: var(--ttr-muted);
	margin-top: 11px;
}

.ttr-standards {
	border: 1px solid var(--ttr-hairline);
	border-radius: var(--ttr-radius);
	padding: 22px;
	background: var(--ttr-surface);
}

.ttr-standards__list {
	display: flex;
	flex-direction: column;
	gap: 11px;
}

.ttr-standards__item {
	display: flex;
	gap: 9px;
	font-size: 13px;
	line-height: 1.4;
	color: var(--ttr-body);
}

.ttr-check-icon {
	color: var(--ttr-accent);
	flex: 0 0 auto;
	margin-top: 1px;
}

.ttr-standards a {
	display: inline-block;
	margin-top: 15px;
}

/* ==========================================================================
   Card component - hero / standard / compact
   ========================================================================== */
.ttr-card {
	color: var(--ttr-headline);
}

.ttr-card a {
	text-decoration: none;
}

.ttr-card__media {
	display: block;
	position: relative;
	border-radius: 12px;
	overflow: hidden;
	border: 1px solid var(--ttr-hairline);
	background: repeating-linear-gradient(135deg, var(--ttr-hairline), var(--ttr-hairline) 13px, var(--ttr-hairline-soft) 13px, var(--ttr-hairline-soft) 26px);
}

.ttr-card__media--4-3 {
	aspect-ratio: 2 / 1;
}

.ttr-card__media--2-1 {
	aspect-ratio: 1200 / 600;
}

.ttr-card__media--16-10 {
	aspect-ratio: 2 / 1;
}

.ttr-card__media--compact {
	flex: 0 0 auto;
	width: 84px;
	height: 84px;
	border-radius: 8px;
}

.ttr-card__img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform .35s ease;
}

.ttr-card:hover .ttr-card__img {
	transform: scale(1.07);
}

.ttr-card__media-placeholder--compact {
	position: absolute;
	inset: 0;
	display: flex;
	align-items: center;
	justify-content: center;
}

.ttr-card__media-placeholder--compact::after {
	content: '';
	width: 18px;
	height: 18px;
	border-radius: 50%;
	background: rgba(255, 255, 255, .6);
}

.ttr-card__rank-badge {
	position: absolute;
	top: 5px;
	left: 5px;
	background: var(--ttr-ink);
	color: #fff;
	font-family: var(--ttr-font-serif);
	font-weight: 700;
	font-size: 12px;
	width: 20px;
	height: 20px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	line-height: 1;
}

.ttr-card__media-placeholder {
	position: absolute;
	bottom: 12px;
	left: 12px;
	font-family: var(--ttr-font-mono);
	font-size: 11px;
	color: var(--ttr-muted);
	background: rgba(255, 255, 255, .72);
	padding: 3px 7px;
	border-radius: 2px;
}

.ttr-card__badge {
	position: absolute;
	top: 12px;
	left: 12px;
	background: var(--ttr-ink);
	color: #fff;
	font-size: 10.5px;
	font-weight: 600;
	letter-spacing: .08em;
	text-transform: uppercase;
	padding: 5px 9px;
	border-radius: 2px;
}

.ttr-card__badge--sm {
	top: 10px;
	left: 10px;
	font-size: 10px;
	padding: 4px 8px;
}

.ttr-kicker {
	font-size: 11.5px;
	font-weight: 600;
	letter-spacing: .1em;
	text-transform: uppercase;
	color: var(--ttr-accent);
	margin-bottom: 12px;
}

.ttr-kicker--sm {
	font-size: 11px;
	margin-bottom: 8px;
}

.ttr-kicker--xs {
	font-size: 10.5px;
	letter-spacing: .09em;
	margin-bottom: 5px;
}

/* Hero variant */
.ttr-card--hero {
	display: flex;
	flex-direction: column;
	gap: 22px;
	background: var(--ttr-surface);
	border: 1px solid var(--ttr-hairline);
	border-radius: 20px;
	padding: 32px 32px 36px;
	box-shadow: 0 10px 28px rgba(13, 27, 61, .06);
}

.ttr-card__top-label {
	display: flex;
	align-items: center;
	gap: 14px;
	margin-bottom: 4px;
}

.ttr-card__top-label span:first-child {
	font-size: 11.5px;
	font-weight: 600;
	letter-spacing: .12em;
	text-transform: uppercase;
	color: var(--ttr-headline);
	white-space: nowrap;
}

.ttr-card--hero .ttr-card__media {
	flex: none;
	width: 90%;
	margin: 0 auto;
}

.ttr-card--hero .ttr-card__img {
	transform: none !important;
}

.ttr-card__body--hero {
	flex: 1;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: flex-start;
	padding: 0;
	text-align: center;
}

.ttr-card__body--hero .ttr-kicker,
.ttr-card__body--hero .ttr-card__title--hero,
.ttr-card__body--hero .ttr-byline {
	width: 90%;
	max-width: none;
}

.ttr-card__body--hero .ttr-card__dek {
	width: 90%;
	max-width: 700px;
}

.ttr-card__body--hero .ttr-byline {
	justify-content: center;
}

.ttr-card__title--hero {
	font-family: var(--ttr-font-serif);
	font-weight: 600;
	font-size: 29px;
	line-height: 1.2;
	letter-spacing: -0.01em;
	margin: 0 0 14px;
	text-wrap: balance;
}

.ttr-card__dek {
	font-size: 14px;
	line-height: 1.5;
	color: var(--ttr-body);
	margin: 0 0 8px;
}

/* Standard variant */
.ttr-card--standard {
	display: flex;
	flex-direction: column;
	height: 100%;
	background: var(--ttr-surface);
	border: 1px solid var(--ttr-hairline);
	border-radius: 14px;
	padding: 12px 12px 18px;
	box-shadow: 0 2px 10px rgba(13, 27, 61, .05);
	transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.ttr-card--standard:hover {
	transform: translateY(-3px);
	box-shadow: 0 12px 26px rgba(13, 27, 61, .1);
	border-color: var(--ttr-accent);
}

.ttr-card--standard:hover .ttr-card__title--standard a {
	color: var(--ttr-accent);
}

.ttr-card__title--standard a {
	transition: color .15s ease;
}

.ttr-card__body--standard {
	padding-top: 13px;
	display: flex;
	flex-direction: column;
	flex: 1;
}

.ttr-card__title--standard {
	font-family: var(--ttr-font-serif);
	font-weight: 600;
	font-size: 20.5px;
	line-height: 1.18;
	letter-spacing: -0.01em;
	margin: 0 0 9px;
	text-wrap: balance;
}

.ttr-card__dek--sm {
	font-size: 13.5px;
	line-height: 1.5;
	margin: 0 0 14px;
	max-width: none;
}

/* Compact variant - now a proper card: bordered box with small thumb + hover lift */
.ttr-card--compact {
	display: flex;
	gap: 12px;
	align-items: center;
	background: var(--ttr-surface);
	border: 1px solid var(--ttr-hairline);
	border-radius: 10px;
	padding: 10px;
	box-shadow: 0 2px 8px rgba(13, 27, 61, .04);
	transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}

.ttr-card--compact:hover {
	border-color: var(--ttr-accent);
	box-shadow: 0 6px 16px rgba(23, 24, 28, .08);
	transform: translateY(-2px);
}

.ttr-card__body--compact {
	flex: 1;
	min-width: 0;
}

.ttr-card__title--compact {
	font-family: var(--ttr-font-serif);
	font-weight: 600;
	font-size: 15px;
	line-height: 1.24;
	letter-spacing: -0.005em;
	margin: 0 0 6px;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.ttr-card__title--compact a {
	transition: color .15s ease;
}

.ttr-card--compact:hover .ttr-card__title--compact a {
	color: var(--ttr-accent);
}

.ttr-card__meta-line {
	font-size: 11.5px;
	color: var(--ttr-muted);
}


/* ---- source: assets/css/footer.css ---- */
.ttr-footer {
	background: var(--ttr-ink);
	color: var(--ttr-muted);
}

.ttr-footer__inner {
	padding: 44px 40px 30px;
}

.ttr-footer__top {
	display: grid;
	grid-template-columns: 1.6fr 1fr 1fr 1fr;
	gap: 40px;
	padding-bottom: 34px;
	border-bottom: 1px solid #1a2c54;
}

.ttr-footer__brand {
	text-align: center;
}

.ttr-footer__brand .ttr-logo {
	display: flex;
	justify-content: center;
	margin: 0 auto 16px;
}

.ttr-footer__brand .ttr-logo__text {
	font-size: 18px;
}

.ttr-footer__brand p {
	font-size: 13.5px;
	line-height: 1.6;
	color: #d5d6db;
	margin: 0 auto 4px;
	max-width: 34ch;
}

.ttr-footer__heading {
	font-size: 11px;
	font-weight: 700;
	letter-spacing: .1em;
	text-transform: uppercase;
	color: var(--ttr-accent-soft);
	margin-bottom: 13px;
}

.ttr-footer__col {
	display: flex;
	flex-direction: column;
}

.ttr-footer__col a {
	text-decoration: none;
	color: var(--ttr-muted);
	font-size: 13px;
	margin-bottom: 9px;
	width: fit-content;
	transition: color .15s ease, transform .15s ease;
}

.ttr-footer__col a:hover {
	color: var(--ttr-accent-soft);
	transform: translateX(2px);
}

.ttr-footer__col a:last-child {
	margin-bottom: 0;
}

.ttr-footer__bottom {
	padding-top: 20px;
	display: flex;
	justify-content: center;
	text-align: center;
}

.ttr-footer__legal {
	font-size: 12.5px;
	line-height: 1.6;
	color: #b8bac2;
	width: 90%;
	margin: 0 auto;
}

.ttr-footer__legal-label {
	color: var(--ttr-accent-soft);
	font-weight: 700;
	margin-right: 4px;
}




/* ---- source: assets/css/responsive.css ---- */
/* ==========================================================================
   Tablet - intermediate step before the full mobile layout kicks in at 900px
   ========================================================================== */
@media (max-width: 1200px) and (min-width: 901px) {
	.ttr-grid-4 {
		grid-template-columns: repeat(2, 1fr);
	}
}

/* ==========================================================================
   Tablet / mobile - loosely mirrors the 390px mobile artboard in the design.
   Breakpoint chosen at 900px (rather than a fixed device width) so it works
   across real device sizes, not just the one artboard width shown in Figma.
   ========================================================================== */
@media (max-width: 900px) {

	/* Hide the date on mobile - not enough room next to search/subscribe */
	.ttr-masthead__date {
		display: none;
	}

	/* Note: nav logo image size is set via inline style in front-page.php
	   (needed !important to survive a plugin CSS conflict), so it stays
	   fixed at 52px across breakpoints rather than shrinking here - an
	   external media query can't win against inline !important anyway. */
	.ttr-masthead__logo-text {
		font-size: 16px;
	}

	/* Masthead - collapse desktop nav into hamburger + horizontal cat scroll */
	.ttr-masthead__inner {
		padding: 13px 16px;
	}

	.ttr-nav,
	.ttr-search-toggle {
		display: none;
	}

	.ttr-btn-accent {
		display: none;
	}

	/* Nav (flex:1) normally pushes actions to the right edge on desktop.
	   Since nav is hidden on mobile, nothing does that anymore - push the
	   actions group (just the hamburger, at this point) to the right edge
	   explicitly instead. */
	.ttr-masthead__actions {
		margin-left: auto;
	}

	.ttr-mobile-toggle {
		display: flex;
	}

	/* Hamburger reveals the full nav as a stacked dropdown (toggled via navigation.js) */
	.ttr-masthead--open .ttr-nav {
		display: flex;
		flex-direction: column;
		gap: 0;
		position: absolute;
		top: 100%;
		left: 0;
		right: 0;
		background: var(--ttr-ink);
		padding: 8px 16px 16px;
		z-index: 20;
		max-height: calc(100vh - 60px);
		overflow-y: auto;
	}

	.ttr-masthead--open .ttr-nav a {
		padding: 10px 0;
		border-bottom: 1px solid var(--ttr-surface-raised);
	}

	.ttr-masthead {
		position: relative;
	}

	.ttr-mobile-cats-wrap {
		position: relative;
	}

	.ttr-mobile-cats {
		display: flex;
		gap: 20px;
		padding: 0 16px 14px;
		overflow-x: auto;
		-webkit-overflow-scrolling: touch;
		scrollbar-width: none;
	}

	.ttr-mobile-cats::-webkit-scrollbar {
		display: none;
	}

	/* Fade hint on the right edge so it's visually clear there's more to
	   scroll, instead of categories just getting abruptly cut off. */
	.ttr-mobile-cats-wrap::after {
		content: '';
		position: absolute;
		top: 0;
		right: 0;
		bottom: 14px;
		width: 28px;
		background: linear-gradient(to right, transparent, var(--ttr-ink));
		pointer-events: none;
	}

	.ttr-mobile-cats a {
		font-size: 13px;
		font-weight: 500;
		color: var(--ttr-muted);
		text-decoration: none;
		white-space: nowrap;
		padding-bottom: 4px;
		border-bottom: 2px solid transparent;
		flex: 0 0 auto;
	}

	.ttr-mobile-cats a.is-active {
		font-weight: 600;
		color: #fff;
		border-bottom-color: var(--ttr-accent);
	}

	.ttr-logo__text {
		font-size: 17px;
	}

	.ttr-logo__mark {
		width: 24px;
		height: 24px;
	}

	/* Featured - stack lead + top stories, lead card becomes vertical */
	.ttr-featured {
		padding: 20px 16px 8px;
	}

	.ttr-featured__grid {
		grid-template-columns: 1fr;
		gap: 8px;
	}

	.ttr-top-stories {
		border-left: none;
		padding-left: 0;
		padding-top: 8px;
	}

	.ttr-card--hero {
		flex-direction: column;
		gap: 0;
		padding: 16px 16px 20px;
	}

	.ttr-card--hero .ttr-card__media {
		flex: none;
	}

	.ttr-card--hero .ttr-card__media--4-3 {
		aspect-ratio: 2 / 1;
	}

	.ttr-card__body--hero {
		padding: 13px 0 0;
	}

	.ttr-card__title--hero {
		font-size: 22px;
	}

	.ttr-card__dek {
		font-size: 13.5px;
		max-width: none;
	}

	/* Trust strip - stack into rows */
	.ttr-trust-strip__inner {
		grid-template-columns: 1fr;
		gap: 14px;
		padding: 18px 16px;
	}

	.ttr-trust-strip__editors {
		border-left: none;
		border-right: none;
		border-top: 1px solid var(--ttr-hairline);
		padding: 14px 0 0;
		flex-wrap: wrap;
		gap: 16px;
	}

	.ttr-trust-strip__facts {
		display: none; /* de-prioritized on small screens, matches mobile artboard */
	}

	/* Main + sidebar - stack, sidebar below main */
	.ttr-main-wrap {
		grid-template-columns: 1fr;
		padding: 24px 16px;
		gap: 30px;
	}

	.ttr-section__head h2 {
		font-size: 20px;
	}

	.ttr-grid-3 {
		grid-template-columns: 1fr;
		gap: 26px;
	}

	.ttr-grid-2 {
		grid-template-columns: 1fr;
		gap: 0;
	}

	.ttr-full-sections {
		padding: 6px 16px 32px;
	}

	.ttr-grid-4 {
		grid-template-columns: 1fr;
		gap: 26px;
	}

	.ttr-full-sections .ttr-grid-3 {
		grid-template-columns: 1fr;
		gap: 0;
	}

	/* Footer - two columns instead of four */
	.ttr-footer__inner {
		padding: 26px 16px 22px;
	}

	.ttr-footer__top {
		grid-template-columns: 1fr 1fr;
		gap: 14px 20px;
		padding-bottom: 18px;
	}

	.ttr-footer__brand {
		grid-column: 1 / -1;
	}

	.ttr-footer__bottom {
		flex-direction: column;
		align-items: center;
	}

	/* Article page */
	.ttr-article-header {
		padding: 22px 16px 0;
	}

	.ttr-article-title {
		font-size: 30px;
	}

	.ttr-article-dek {
		font-size: 16px;
	}

	.ttr-byline--article {
		text-align: left;
	}

	.ttr-article-header__inner {
		text-align: left;
	}

	.ttr-article-header .ttr-kicker {
		justify-content: flex-start;
	}

	.ttr-article-wrap {
		grid-template-columns: 1fr;
		padding: 8px 16px 40px;
		gap: 32px;
	}

	.ttr-article-body {
		padding: 22px 20px;
		border-radius: 14px;
	}

	.ttr-sidebar--article {
		position: static;
	}

	.ttr-prose {
		font-size: 16px;
	}

	.ttr-prose h2 {
		font-size: 23px;
	}

	.ttr-prose h3 {
		font-size: 19px;
	}

	.ttr-related .ttr-grid-3,
	.ttr-related__list {
		grid-template-columns: 1fr;
	}

	/* Archive / search / 404 */
	.ttr-archive-header {
		padding: 22px 16px 20px;
	}

	.ttr-archive-title {
		font-size: 26px;
	}

	.ttr-404 {
		padding: 40px 16px 50px;
	}

	.ttr-404__title {
		font-size: 24px;
	}
}

@media (max-width: 480px) {
	.ttr-card__title--hero {
		font-size: 19px;
	}

	.ttr-footer__top {
		grid-template-columns: 1fr;
	}
}

/* ==========================================================================
   Host-environment overrides — Trusted Top Casinos
   ==========================================================================
   The PostX plugin (ultimate-post) injects global frontend rules:

     html body.postx-page h1 … h6 { color: var(--postx_preset_Contrast_1_color) }

   That selector has specificity (0,1,3), which outranks this theme's own
   single-class scoping (.ttr-home h3 = (0,1,1)), so every card headline
   rendered in PostX's dark preset colour — invisible on the dark page.
   PostX forces a white body background in the same way.

   Repeating the class (.ttr-home.ttr-home) lifts specificity to (0,2,1)
   without depending on PostX's own class names, so these overrides keep
   working if PostX is deactivated, updated, or renames its selectors.
   ========================================================================== */

body.ttr-home-body.ttr-home-body {
	background: var(--ttr-page);
}

.ttr-home.ttr-home h1,
.ttr-home.ttr-home h2,
.ttr-home.ttr-home h3,
.ttr-home.ttr-home h4,
.ttr-home.ttr-home h5,
.ttr-home.ttr-home h6 {
	color: var(--ttr-headline);
}

/* PostX also forces a heading font (--postx_preset_Heading_typo_font_family,
   resolving to Roboto) at the same (0,1,3) specificity, which overrode the
   Newsreader serif this design uses for card and section headlines. Restored
   here with the same doubled-class technique. Elements the theme deliberately
   sets in the sans face (eyebrows, kickers, meta) are untouched. */

.ttr-home.ttr-home .ttr-card__title,
.ttr-home.ttr-home .ttr-card__title--hero,
.ttr-home.ttr-home .ttr-card__title--standard,
.ttr-home.ttr-home .ttr-card__title--compact,
.ttr-home.ttr-home .ttr-section__head h2,
.ttr-home.ttr-home .ttr-widget__head h2,
.ttr-home.ttr-home .ttr-top-stories__title,
.ttr-home.ttr-home .ttr-trending__item h3,
.ttr-home.ttr-home .ttr-newsletter h3 {
	font-family: var(--ttr-font-serif);
}

/* Archive, search and 404 templates render .ttr-card components outside the
   .ttr-home wrapper (they use .ttr-home-body on <body> only), so re-scope the
   same PostX overrides via the body class instead. */
body.ttr-home-body.ttr-home-body h1,
body.ttr-home-body.ttr-home-body h2,
body.ttr-home-body.ttr-home-body h3,
body.ttr-home-body.ttr-home-body h4,
body.ttr-home-body.ttr-home-body h5,
body.ttr-home-body.ttr-home-body h6 {
	color: var(--ttr-headline);
}

body.ttr-home-body.ttr-home-body .ttr-card__title,
body.ttr-home-body.ttr-home-body .ttr-archive-title,
body.ttr-home-body.ttr-home-body .ttr-404__title {
	font-family: var(--ttr-font-serif);
}

/* PostX also sets body/paragraph text colour globally
   (body.postx-page p { color: var(--postx_preset_Contrast_2_color) }, specificity
   0,1,2), which beats this theme's own single-class rules like .ttr-card__dek
   (0,1,0). Restore every themed text role explicitly rather than leaving body
   copy to inherit an undefined value. */
body.ttr-home-body.ttr-home-body p {
	color: var(--ttr-body);
}

body.ttr-home-body.ttr-home-body .ttr-eyebrow,
body.ttr-home-body.ttr-home-body .ttr-link-accent,
body.ttr-home-body.ttr-home-body .ttr-kicker {
	color: var(--ttr-accent);
}

body.ttr-home-body.ttr-home-body .ttr-eyebrow--light {
	color: var(--ttr-accent-soft);
}

body.ttr-home-body.ttr-home-body .ttr-byline__meta,
body.ttr-home-body.ttr-home-body .ttr-card__meta,
body.ttr-home-body.ttr-home-body .ttr-masthead__date {
	color: var(--ttr-muted);
}

body.ttr-home-body.ttr-home-body .ttr-byline__author {
	color: var(--ttr-headline);
}

/* PostX's global heading rule also sets font-size (via a CSS custom property,
   e.g. --postx_preset_heading_h3_typo_font_size_lg) on body.postx-page h1..h6,
   at specificity (0,1,2) — higher than every single-class selector this theme
   uses for its own headings (0,1,0), and higher than the earlier color/
   font-family overrides above, which never included font-size and so left
   every headline oversized (card titles rendering 2-3x their intended size).
   Re-declaring each explicitly here, scoped the same way, restores the base
   sizes from core-bundle.css/homepage.css/archive.css/article.css. The three
   @media blocks below mirror responsive.css's own breakpoints for these same
   classes so mobile/tablet sizing isn't regressed by this fix. */

body.ttr-home-body.ttr-home-body .ttr-card__title--hero {
	font-size: 29px;
}
body.ttr-home-body.ttr-home-body .ttr-404__title,
body.ttr-home-body.ttr-home-body .ttr-archive-title {
	font-family: var(--ttr-font-serif);
}

body.ttr-home-body.ttr-home-body .ttr-article-title {
	font-family: 'Playfair Display', Georgia, serif;
}


body.ttr-home-body.ttr-home-body .ttr-card__title--standard {
	font-size: 20.5px;
}

body.ttr-home-body.ttr-home-body .ttr-card__title--compact {
	font-size: 15px;
}

body.ttr-home-body.ttr-home-body .ttr-404__title {
	font-size: 32px;
}

body.ttr-home-body.ttr-home-body .ttr-archive-title {
	font-size: 38px;
}

body.ttr-home-body.ttr-home-body .ttr-article-title {
	font-size: 44px;
}

@media (max-width: 900px) {
	body.ttr-home-body.ttr-home-body .ttr-card__title--hero {
		font-size: 22px;
	}

	body.ttr-home-body.ttr-home-body .ttr-article-title {
		font-size: 30px;
	}

	body.ttr-home-body.ttr-home-body .ttr-archive-title {
		font-size: 26px;
	}

	body.ttr-home-body.ttr-home-body .ttr-404__title {
		font-size: 24px;
	}
}

@media (max-width: 480px) {
	body.ttr-home-body.ttr-home-body .ttr-card__title--hero {
		font-size: 19px;
	}
}

/* Native <button> form controls: some environments paint OS-controlled
   background/border on buttons unless appearance is explicitly reset, which
   silently defeated .ttr-btn-accent's background/border (the !important on
   color alone wasn't enough - only color survived, background/border did
   not). Also affects .ttr-newsletter__form button, the same component. */
body.ttr-home-body.ttr-home-body .ttr-btn-accent,
body.ttr-home-body.ttr-home-body .ttr-newsletter__form button {
	appearance: none;
	-webkit-appearance: none;
	background: var(--ttr-accent) !important;
	color: var(--ttr-on-accent) !important;
	border: none !important;
}

/* Category pills (404 page): PostX's base body text-color rule was beating
   the pill's own color declaration, rendering near-black text on a dark
   background — unreadable. */
body.ttr-home-body.ttr-home-body .ttr-404__cat-pill {
	color: var(--ttr-headline);
	background: var(--ttr-accent-tint);
}
