/* =========================================================================
   TOWN & TAILGATE — main.css
   Premium college football media design system.
   Palette, type, layout, and components matching the homepage mockup.
   Breakpoints live in responsive.css.
   ========================================================================= */

/* ----------------------------------------------------------------------
   0. DESIGN TOKENS
   ---------------------------------------------------------------------- */
:root {
	/* Color */
	--tnt-black:    #07090B;
	--tnt-navy:     #0B1117;
	--tnt-navy-2:   #0F1722;   /* raised panels on dark */
	--tnt-navy-3:   #16202c;   /* hover / borders */
	--tnt-cream:    #F4EFE4;
	--tnt-cream-2:  #EBE3D4;   /* card edges on cream */
	--tnt-orange:   #B4512A;
	--tnt-orange-2: #C76233;
	--tnt-gold:     #D6A64F;
	--tnt-gold-2:   #E2B86A;
	--tnt-maroon:   #5E161B;   /* newsletter card */
	--tnt-maroon-2: #7C1E24;
	--tnt-white:    #FFFFFF;
	--tnt-charcoal: #171717;
	--tnt-ink:      #20262e;   /* body text on cream */
	--tnt-muted:    #6b6357;   /* secondary text on cream */
	--tnt-muted-d:  #98a3b0;   /* secondary text on dark */
	--tnt-line:     rgba(255,255,255,.10);
	--tnt-line-d:   rgba(20,24,30,.12);

	/* Type */
	--tnt-display: "Oswald", "Arial Narrow", Arial, sans-serif;
	--tnt-slab:    "Zilla Slab", Georgia, "Times New Roman", serif;
	--tnt-body:    "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;

	/* Layout */
	--tnt-max:     1240px;
	--tnt-gut:     clamp(16px, 4vw, 40px);
	--tnt-radius:  4px;
	--tnt-radius-lg: 8px;

	/* Effects */
	--tnt-shadow:  0 18px 40px rgba(0,0,0,.28);
	--tnt-shadow-sm: 0 8px 22px rgba(7,9,11,.18);
	--tnt-ease:    cubic-bezier(.22,.61,.36,1);
}

/* ----------------------------------------------------------------------
   1. RESET / BASE
   ---------------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
	margin: 0;
	font-family: var(--tnt-body);
	font-size: 17px;
	line-height: 1.6;
	color: var(--tnt-ink);
	background: var(--tnt-navy);
	-webkit-font-smoothing: antialiased;
	text-rendering: optimizeLegibility;
}

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

a { color: inherit; text-decoration: none; transition: color .18s var(--tnt-ease); }

h1, h2, h3, h4 { margin: 0; line-height: 1.04; font-weight: 700; }

p { margin: 0 0 1em; }

ul, ol { margin: 0; padding: 0; list-style: none; }

button { font-family: inherit; cursor: pointer; }

:focus-visible {
	outline: 3px solid var(--tnt-gold);
	outline-offset: 2px;
}

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

.tnt-skip-link {
	position: absolute; left: 8px; top: -60px; z-index: 1000;
	background: var(--tnt-gold); color: var(--tnt-black);
	padding: 10px 18px; border-radius: var(--tnt-radius); font-weight: 600;
	transition: top .2s var(--tnt-ease);
}
.tnt-skip-link:focus { top: 8px; }

.tnt-container {
	width: 100%;
	max-width: var(--tnt-max);
	margin-inline: auto;
	padding-inline: var(--tnt-gut);
}

/* The "&" accent used across wordmarks */
.tnt-amp { color: var(--tnt-gold); }

/* ----------------------------------------------------------------------
   2. BUTTONS
   ---------------------------------------------------------------------- */
.tnt-btn {
	display: inline-flex; align-items: center; justify-content: center; gap: .5em;
	font-family: var(--tnt-display);
	font-weight: 600;
	font-size: .82rem;
	letter-spacing: .08em;
	text-transform: uppercase;
	padding: .85em 1.5em;
	border: 2px solid transparent;
	border-radius: var(--tnt-radius);
	transition: background .18s var(--tnt-ease), color .18s var(--tnt-ease), border-color .18s var(--tnt-ease), transform .18s var(--tnt-ease);
	white-space: nowrap;
}
.tnt-btn:active { transform: translateY(1px); }

.tnt-btn--gold {
	background: var(--tnt-gold); color: var(--tnt-black); border-color: var(--tnt-gold);
}
.tnt-btn--gold:hover { background: var(--tnt-gold-2); border-color: var(--tnt-gold-2); }

.tnt-btn--ghost {
	background: transparent; color: var(--tnt-white); border-color: rgba(255,255,255,.45);
}
.tnt-btn--ghost:hover { border-color: var(--tnt-gold); color: var(--tnt-gold); }

.tnt-btn--outline {
	background: transparent; color: var(--tnt-gold); border-color: var(--tnt-gold);
}
.tnt-btn--outline:hover { background: var(--tnt-gold); color: var(--tnt-black); }

.tnt-btn--outline-dark {
	background: transparent; color: var(--tnt-cream); border-color: rgba(255,255,255,.3);
	width: 100%;
}
.tnt-btn--outline-dark:hover { border-color: var(--tnt-gold); color: var(--tnt-gold); }

/* ----------------------------------------------------------------------
   3. HEADER / NAV
   ---------------------------------------------------------------------- */
.tnt-header {
	position: sticky; top: 0; z-index: 100;
	background: var(--tnt-black);
	border-bottom: 1px solid var(--tnt-line);
}
.tnt-header__inner {
	display: flex; align-items: center; gap: 22px;
	min-height: 80px;
	padding-block: 9px;
}

.tnt-brand { flex: 0 0 auto; }
.tnt-brand__text { display: inline-flex; flex-direction: column; line-height: 1; }
.tnt-wordmark {
	display: flex;
	flex-direction: column;
	font-family: var(--tnt-slab);
	font-weight: 700;
	font-size: clamp(1.6rem, 2.4vw, 2.15rem);
	line-height: .88;
	color: var(--tnt-white);
	letter-spacing: .005em;
	text-transform: uppercase;
}
.tnt-wordmark__line { display: block; }
.tnt-brand__tagline {
	margin-top: 7px;
	font-family: var(--tnt-display);
	font-weight: 500;
	font-size: .58rem;
	letter-spacing: .24em;
	text-transform: uppercase;
	color: var(--tnt-gold);
	border-top: 1px solid rgba(214,166,79,.45);
	padding-top: 6px;
}
.tnt-brand__logo img { max-height: 64px; width: auto; }

.tnt-nav { margin-left: auto; }
.tnt-nav__list { display: flex; align-items: center; gap: 17px; }
.tnt-nav__list a {
	font-family: var(--tnt-display);
	font-weight: 500;
	font-size: .8rem;
	letter-spacing: .04em;
	text-transform: uppercase;
	color: rgba(255,255,255,.82);
	padding: 6px 0;
	position: relative;
	white-space: nowrap;
}
.tnt-nav__list a::after {
	content: ""; position: absolute; left: 0; right: 100%; bottom: -2px; height: 2px;
	background: var(--tnt-gold); transition: right .22s var(--tnt-ease);
}
.tnt-nav__list a:hover { color: var(--tnt-white); }
.tnt-nav__list a:hover::after,
.tnt-nav__list .current-menu-item > a::after,
.tnt-nav__list .current_page_item > a::after { right: 0; }
.tnt-nav__list .current-menu-item > a,
.tnt-nav__list .current_page_item > a { color: var(--tnt-white); }

/* subtle dropdown caret on parent items (e.g. Football ▾) */
.tnt-nav__list .menu-item-has-children > a {
	padding-right: 16px;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'%3E%3Cpath d='M1 1l4 4 4-4' fill='none' stroke='%23ffffff' stroke-opacity='0.65' stroke-width='1.4' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: right center;
	background-size: 9px 6px;
}
.tnt-nav__list .menu-item-has-children > a:hover {
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'%3E%3Cpath d='M1 1l4 4 4-4' fill='none' stroke='%23D6A64F' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

/* sub-menus */
.tnt-nav__list .sub-menu {
	position: absolute; top: 100%; left: 0; min-width: 210px;
	background: var(--tnt-navy-2); border: 1px solid var(--tnt-line);
	padding: 8px; display: none; flex-direction: column; gap: 2px; z-index: 50;
	box-shadow: var(--tnt-shadow);
}
.tnt-nav__list li { position: relative; }
.tnt-nav__list li:hover > .sub-menu { display: flex; }
.tnt-nav__list .sub-menu a { padding: 8px 12px; }
.tnt-nav__list .sub-menu a::after { display: none; }

.tnt-header__actions { display: flex; align-items: center; gap: 16px; flex: 0 0 auto; }
.tnt-search-toggle {
	background: none; border: none; color: rgba(255,255,255,.85);
	display: inline-flex; padding: 6px; border-radius: var(--tnt-radius);
}
.tnt-search-toggle:hover { color: var(--tnt-gold); }
.tnt-subscribe { padding-block: .6em; }

.tnt-menu-toggle { display: none; background: none; border: none; padding: 8px; }
.tnt-menu-toggle span {
	display: block; width: 24px; height: 2px; background: var(--tnt-white);
	margin: 5px 0; transition: transform .2s var(--tnt-ease), opacity .2s var(--tnt-ease);
}
.tnt-menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.tnt-menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.tnt-menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.tnt-search-panel {
	background: var(--tnt-navy-2); border-bottom: 1px solid var(--tnt-line);
	padding-block: 18px;
}
.tnt-searchform { display: flex; gap: 10px; }
.tnt-searchform__input {
	flex: 1; background: var(--tnt-black); border: 1px solid var(--tnt-line);
	color: var(--tnt-white); padding: 12px 16px; border-radius: var(--tnt-radius);
	font-size: 1rem;
}
.tnt-searchform__input::placeholder { color: var(--tnt-muted-d); }
.tnt-searchform__submit {
	background: var(--tnt-gold); border: none; color: var(--tnt-black);
	padding: 0 18px; border-radius: var(--tnt-radius); display: inline-flex; align-items: center;
}

/* ----------------------------------------------------------------------
   4. HERO
   ---------------------------------------------------------------------- */
.tnt-hero {
	position: relative; isolation: isolate; overflow: hidden;
	display: flex; align-items: center;
	min-height: clamp(540px, 70vh, 720px);
}
.tnt-hero__media { position: absolute; inset: 0; z-index: -1; }
.tnt-hero__img { width: 100%; height: 100%; object-fit: cover; }
.tnt-hero__overlay {
	position: absolute; inset: 0;
	background:
		linear-gradient(90deg, rgba(7,9,11,.92) 0%, rgba(7,9,11,.72) 38%, rgba(7,9,11,.25) 70%, rgba(7,9,11,.45) 100%),
		linear-gradient(0deg, rgba(7,9,11,.85) 0%, rgba(7,9,11,0) 45%);
}
.tnt-hero__inner {
	padding-block: clamp(56px, 8vw, 104px);
	max-width: var(--tnt-max);
}
.tnt-hero__eyebrow,
.tnt-hero__title,
.tnt-hero__cta { max-width: 700px; }
.tnt-hero__eyebrow {
	font-family: var(--tnt-display);
	font-weight: 500;
	font-size: clamp(.78rem, 1.4vw, .95rem);
	letter-spacing: .12em;
	text-transform: uppercase;
	color: var(--tnt-gold);
	margin: 0 0 20px;
}
.tnt-hero__title {
	font-family: var(--tnt-display);
	font-weight: 700;
	font-size: clamp(3rem, 8.2vw, 6.4rem);
	line-height: .92;
	letter-spacing: -.01em;
	text-transform: uppercase;
	color: var(--tnt-white);
	margin: 0 0 24px;
	text-shadow: 0 2px 30px rgba(0,0,0,.4);
}
.tnt-hero__title span { display: block; }
.tnt-hero__sub {
	font-size: clamp(1rem, 1.5vw, 1.18rem);
	color: rgba(255,255,255,.88);
	max-width: 540px;
	margin: 0 0 34px;
}
.tnt-hero__cta { display: flex; flex-wrap: wrap; gap: 14px; }

/* ----------------------------------------------------------------------
   5. BANDS
   ---------------------------------------------------------------------- */
.tnt-band { padding-block: clamp(48px, 6vw, 84px); }
.tnt-band--dark  { background: var(--tnt-navy); color: var(--tnt-cream); }
.tnt-band--cream { background: var(--tnt-cream); color: var(--tnt-ink); }
.tnt-band--tight { padding-top: 0; padding-bottom: clamp(40px, 4.5vw, 60px); }

/* subtle playbook texture on the dark board band */
.tnt-band--dark {
	background-image:
		repeating-linear-gradient(0deg, rgba(255,255,255,.018) 0 1px, transparent 1px 64px),
		linear-gradient(180deg, var(--tnt-black), var(--tnt-navy));
}

/* ----------------------------------------------------------------------
   6. SECTION HEADS
   ---------------------------------------------------------------------- */
.tnt-section-head {
	display: flex; align-items: flex-end; justify-content: space-between; gap: 20px;
	margin-bottom: 28px; flex-wrap: wrap;
}
.tnt-section-head__title {
	font-family: var(--tnt-display);
	font-weight: 700;
	font-size: clamp(1.6rem, 3vw, 2.3rem);
	letter-spacing: .01em;
	text-transform: uppercase;
	color: inherit;
}
.tnt-band--cream .tnt-section-head__title,
.tnt-section-head--latest .tnt-section-head__title,
.tnt-section-head--index .tnt-section-head__title { color: var(--tnt-charcoal); }
.tnt-band--dark .tnt-section-head__title,
.tnt-section-head--dark .tnt-section-head__title { color: var(--tnt-white); }

.tnt-section-head__title--sm { font-size: clamp(1.25rem, 2vw, 1.55rem); }
.tnt-section-head__sub {
	margin: 8px 0 0; font-size: .82rem; letter-spacing: .12em;
	text-transform: uppercase; font-family: var(--tnt-display); font-weight: 400;
	color: var(--tnt-muted-d);
}
.tnt-band--cream .tnt-section-head__sub { color: var(--tnt-muted); }
.tnt-section-head__link {
	font-family: var(--tnt-display); font-weight: 600; font-size: .76rem;
	letter-spacing: .1em; text-transform: uppercase; color: var(--tnt-gold);
	display: inline-flex; align-items: center; gap: .4em; white-space: nowrap;
}
.tnt-section-head__link:hover { color: var(--tnt-gold-2); transform: translateX(2px); }

/* ----------------------------------------------------------------------
   7. HOMEPAGE GRIDS
   ---------------------------------------------------------------------- */
.tnt-board-grid { display: grid; grid-template-columns: 1fr 340px; gap: 40px; align-items: start; }
.tnt-playbooks-grid { display: grid; grid-template-columns: 1fr 320px; gap: 40px; align-items: start; }
.tnt-latest-grid { display: grid; grid-template-columns: 1.4fr 1fr; gap: 48px; align-items: start; }
.tnt-latest-grid__aside { display: flex; flex-direction: column; gap: 48px; }

/* ----------------------------------------------------------------------
   8. CARDS — shared
   ---------------------------------------------------------------------- */
.tnt-card { display: flex; flex-direction: column; }
.tnt-card__media {
	position: relative; display: block; overflow: hidden; border-radius: var(--tnt-radius);
	aspect-ratio: 16 / 10; background: var(--tnt-navy-2);
}
.tnt-card__media--tall { aspect-ratio: 4 / 5; }
.tnt-card__img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s var(--tnt-ease); }
.tnt-card__media:hover .tnt-card__img,
.tnt-card__media:hover .tnt-ph { transform: scale(1.04); }

/* placeholder image block — layered to read like an editorial sports photo */
.tnt-ph {
	position: absolute; inset: 0; display: flex; align-items: flex-end;
	padding: 14px; overflow: hidden; transition: transform .4s var(--tnt-ease);
}
.tnt-ph::before {
	content: ""; position: absolute; inset: 0; z-index: 1;
	background:
		radial-gradient(120% 85% at 78% 12%, rgba(255,255,255,.18), rgba(255,255,255,0) 52%),
		radial-gradient(150% 130% at 50% 125%, rgba(0,0,0,.5), rgba(0,0,0,0) 58%),
		linear-gradient(180deg, rgba(7,9,11,0) 42%, rgba(7,9,11,.62) 100%);
}
.tnt-ph::after {
	content: ""; position: absolute; inset: 0; z-index: 1;
	background-image: radial-gradient(rgba(255,255,255,.05) 1px, transparent 1px);
	background-size: 16px 16px; opacity: .45; mix-blend-mode: overlay;
}
.tnt-ph__label {
	position: relative; z-index: 2;
	font-family: var(--tnt-display); font-weight: 500; font-size: .68rem;
	letter-spacing: .08em; text-transform: uppercase; color: rgba(255,255,255,.62);
	max-width: 80%;
}

/* badge */
.tnt-badge {
	position: absolute; top: 12px; left: 12px; z-index: 2;
	font-family: var(--tnt-display); font-weight: 600; font-size: .66rem;
	letter-spacing: .1em; text-transform: uppercase; color: var(--tnt-white);
	background: var(--tnt-orange); padding: 5px 10px; border-radius: 3px;
}
.tnt-badge--solid { background: var(--tnt-orange); }

.tnt-card__body { padding-top: 16px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.tnt-card__title {
	font-family: var(--tnt-display); font-weight: 600; line-height: 1.08;
	font-size: 1.25rem; text-transform: uppercase; letter-spacing: .005em;
}
.tnt-card__title--lg { font-size: clamp(1.6rem, 2.6vw, 2.1rem); }
.tnt-card__title a:hover { color: var(--tnt-orange); }
.tnt-band--dark .tnt-card__title a:hover { color: var(--tnt-gold); }
.tnt-card__excerpt { font-size: .98rem; color: var(--tnt-muted); margin: 0; }
.tnt-band--dark .tnt-card__excerpt { color: var(--tnt-muted-d); }
.tnt-card__more {
	margin-top: auto;
	font-family: var(--tnt-display); font-weight: 600; font-size: .74rem;
	letter-spacing: .1em; text-transform: uppercase; color: var(--tnt-orange);
	display: inline-flex; align-items: center; gap: .4em;
}
.tnt-band--dark .tnt-card__more { color: var(--tnt-gold); }
.tnt-card__more:hover { transform: translateX(2px); }
.tnt-card__foot { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-top: auto; }
.tnt-card__meta { font-size: .78rem; color: var(--tnt-muted); }

/* board grid of article cards */
.tnt-card-grid { display: grid; gap: 26px; }
.tnt-card-grid--board { grid-template-columns: repeat(2, 1fr); gap: 30px; }

/* two-up board cards: larger imagery, balanced against the Fourth Down aside */
.tnt-card-grid--board .tnt-card { gap: 0; }
.tnt-card-grid--board .tnt-card__title {
	font-size: clamp(1.2rem, 1.5vw, 1.5rem);
	line-height: 1.1;
	letter-spacing: 0;
}
.tnt-card-grid--board .tnt-card__body { gap: 12px; padding-top: 16px; }
.tnt-card-grid--3 { grid-template-columns: repeat(3, 1fr); }

/* town card */
.tnt-card--town .tnt-card__media--tall { aspect-ratio: 4 / 3; }
.tnt-card__media-grad {
	position: absolute; inset: 0; z-index: 1; pointer-events: none;
	background: linear-gradient(180deg, rgba(7,9,11,0) 26%, rgba(7,9,11,.55) 64%, rgba(7,9,11,.94) 100%);
}
.tnt-card__townline { position: absolute; left: 20px; bottom: 20px; z-index: 2; }
.tnt-card__town {
	display: block; font-family: var(--tnt-display); font-weight: 700;
	font-size: 1.95rem; text-transform: uppercase; color: var(--tnt-white); line-height: 1;
	text-shadow: 0 2px 14px rgba(0,0,0,.5);
}
.tnt-card__school {
	display: block; font-family: var(--tnt-slab); font-style: italic; font-weight: 600;
	font-size: 1.1rem; color: var(--tnt-gold); margin-top: 5px;
}
.tnt-card--town .tnt-card__body { gap: 14px; }
.tnt-feature-list { display: flex; flex-direction: column; gap: 9px; }
.tnt-feature-list li {
	display: flex; align-items: center; gap: 10px;
	font-size: .9rem; color: var(--tnt-ink);
}
.tnt-feature-list svg { color: var(--tnt-orange); flex: 0 0 auto; }
.tnt-card__guide { margin-top: 4px; width: 100%; }

/* town cards inside dark playbooks band use light text */
.tnt-band--cream .tnt-card--town .tnt-feature-list li { color: var(--tnt-ink); }

/* ----------------------------------------------------------------------
   9. CAROUSEL
   ---------------------------------------------------------------------- */
.tnt-carousel { position: relative; }
.tnt-carousel__track {
	display: grid; grid-auto-flow: column; grid-auto-columns: calc((100% - 3 * 22px) / 3.3);
	gap: 22px; overflow-x: auto; scroll-snap-type: x mandatory;
	scrollbar-width: none; padding-bottom: 4px;
}
.tnt-carousel__track::-webkit-scrollbar { display: none; }
.tnt-carousel__track > * { scroll-snap-align: start; }
.tnt-carousel__arrow {
	position: absolute; top: 38%; transform: translateY(-50%); z-index: 5;
	width: 44px; height: 44px; border-radius: 50%;
	background: var(--tnt-cream); border: 1px solid var(--tnt-cream-2);
	color: var(--tnt-charcoal); display: inline-flex; align-items: center; justify-content: center;
	box-shadow: var(--tnt-shadow-sm);
}
.tnt-carousel__arrow:hover { background: var(--tnt-gold); color: var(--tnt-black); }
.tnt-carousel__arrow--prev { left: -14px; }
.tnt-carousel__arrow--next { right: -14px; }

/* On the cream band the playbook cards use a darker treatment for the card body */
.tnt-band--cream .tnt-card--town { background: var(--tnt-navy); border-radius: var(--tnt-radius-lg); overflow: hidden; box-shadow: var(--tnt-shadow-sm); }
.tnt-band--cream .tnt-card--town .tnt-card__media { border-radius: 0; }
.tnt-band--cream .tnt-card--town .tnt-card__body { padding: 22px 20px 20px; }
.tnt-band--cream .tnt-card--town .tnt-feature-list li { color: rgba(244,239,228,.9); }
.tnt-band--cream .tnt-card--town .tnt-feature-list svg { color: var(--tnt-gold); }

/* ----------------------------------------------------------------------
   10. THE FOURTH DOWN
   ---------------------------------------------------------------------- */
.tnt-fourth {
	background: var(--tnt-black);
	border: 1px solid rgba(214,166,79,.35);
	border-radius: var(--tnt-radius-lg);
	padding: 26px 24px;
}
.tnt-fourth__head { border-bottom: 1px solid var(--tnt-line); padding-bottom: 16px; margin-bottom: 16px; }
.tnt-fourth__title {
	font-family: var(--tnt-display); font-weight: 700; font-size: 1.55rem;
	text-transform: uppercase; color: var(--tnt-white); letter-spacing: .02em;
}
.tnt-fourth__sub { margin: 6px 0 0; font-size: .88rem; color: var(--tnt-muted-d); }
.tnt-fourth__diagram {
	background: linear-gradient(180deg, #0c1a12, #08110b);
	border: 1px solid var(--tnt-line); border-radius: var(--tnt-radius);
	padding: 14px 18px; margin-bottom: 18px;
}
.tnt-fourth__setup { font-size: 1rem; color: var(--tnt-cream); margin: 0 0 18px; line-height: 1.5; }
.tnt-fourth__q {
	font-family: var(--tnt-display); font-weight: 600; font-size: .82rem;
	letter-spacing: .12em; text-transform: uppercase; color: var(--tnt-gold);
	margin: 0 0 14px;
}
.tnt-fourth__options { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-bottom: 16px; }
.tnt-fourth__option {
	background: var(--tnt-navy-2); border: 1px solid var(--tnt-line);
	color: var(--tnt-cream); padding: 12px 10px; border-radius: var(--tnt-radius);
	font-family: var(--tnt-display); font-weight: 500; font-size: .92rem;
	letter-spacing: .03em; text-transform: uppercase;
	transition: background .15s var(--tnt-ease), border-color .15s var(--tnt-ease), color .15s var(--tnt-ease);
}
.tnt-fourth__option:hover:not(:disabled) { background: var(--tnt-navy-3); border-color: var(--tnt-gold); color: var(--tnt-white); }
.tnt-fourth__option:disabled { opacity: .45; cursor: not-allowed; }
.tnt-fourth__option.is-picked { border-color: var(--tnt-gold); color: var(--tnt-gold); }
.tnt-fourth__option.is-correct { background: rgba(47,125,79,.22); border-color: #3f9d63; color: #c7e6d4; }
.tnt-fourth__option.is-wrong { background: rgba(180,81,42,.18); border-color: var(--tnt-orange); color: #f3c8b4; }
.tnt-fourth__cta {
	font-family: var(--tnt-display); font-weight: 600; font-size: .78rem;
	letter-spacing: .12em; text-transform: uppercase; color: var(--tnt-gold);
	display: inline-flex; align-items: center; gap: .4em;
}
.tnt-fourth__result { border-top: 1px solid var(--tnt-line); padding-top: 16px; margin-top: 4px; }
.tnt-fourth__result-title {
	font-family: var(--tnt-display); font-weight: 700; font-size: 1.2rem;
	text-transform: uppercase; color: var(--tnt-gold); margin: 0 0 8px;
}
.tnt-fourth__result-text { font-size: .96rem; color: var(--tnt-cream); margin: 0 0 14px; line-height: 1.55; }
.tnt-fourth__replay {
	background: none; border: none; padding: 0; color: var(--tnt-muted-d);
	font-family: var(--tnt-display); font-weight: 600; font-size: .74rem;
	letter-spacing: .1em; text-transform: uppercase; display: inline-flex; align-items: center; gap: .4em;
}
.tnt-fourth__replay:hover { color: var(--tnt-gold); }

/* ----------------------------------------------------------------------
   11. NEWSLETTER CARD
   ---------------------------------------------------------------------- */
.tnt-newsletter {
	background: linear-gradient(165deg, var(--tnt-maroon-2), var(--tnt-maroon));
	border-radius: var(--tnt-radius-lg);
	padding: 28px 26px;
	color: var(--tnt-cream);
	box-shadow: var(--tnt-shadow);
}
.tnt-newsletter__head { display: flex; align-items: flex-start; justify-content: space-between; gap: 14px; }
.tnt-newsletter__title {
	font-family: var(--tnt-display); font-weight: 700; font-size: 1.85rem;
	line-height: .98; text-transform: uppercase; color: var(--tnt-white);
}
.tnt-newsletter__crest {
	flex: 0 0 auto; width: 46px; height: 46px; border-radius: 50%;
	border: 2px solid rgba(214,166,79,.6); color: var(--tnt-gold);
	display: inline-flex; align-items: center; justify-content: center;
	font-family: var(--tnt-slab); font-weight: 700; font-size: .85rem;
}
.tnt-newsletter__copy { margin: 16px 0 18px; font-size: 1rem; color: rgba(244,239,228,.92); }
.tnt-newsletter__list { display: flex; flex-direction: column; gap: 10px; margin-bottom: 22px; }
.tnt-newsletter__list li { display: flex; align-items: flex-start; gap: 10px; font-size: .95rem; }
.tnt-check { color: var(--tnt-gold); font-weight: 700; flex: 0 0 auto; }
.tnt-newsletter__form { display: flex; flex-direction: column; gap: 10px; }
.tnt-newsletter__input {
	background: rgba(255,255,255,.96); border: none; border-radius: var(--tnt-radius);
	padding: 13px 16px; font-size: 1rem; color: var(--tnt-charcoal);
}
.tnt-newsletter__input::placeholder { color: #8a8278; text-transform: uppercase; font-size: .8rem; letter-spacing: .06em; font-family: var(--tnt-display); }
.tnt-newsletter__submit { width: 100%; }
.tnt-newsletter__msg { margin: 4px 0 0; font-size: .85rem; min-height: 1em; color: var(--tnt-gold-2); }

/* ----------------------------------------------------------------------
   12. LATEST / TABS / LIST
   ---------------------------------------------------------------------- */
.tnt-section-head--latest {
	align-items: center; border-bottom: 2px solid var(--tnt-cream-2);
	padding-bottom: 14px; margin-bottom: 26px;
}
.tnt-tabs { display: flex; gap: 22px; }
.tnt-tabs__btn {
	background: none; border: none; padding: 4px 0;
	font-family: var(--tnt-display); font-weight: 500; font-size: .8rem;
	letter-spacing: .08em; text-transform: uppercase; color: var(--tnt-muted);
	position: relative;
}
.tnt-tabs__btn.is-active { color: var(--tnt-charcoal); }
.tnt-tabs__btn.is-active::after {
	content: ""; position: absolute; left: 0; right: 0; bottom: -16px; height: 2px; background: var(--tnt-orange);
}
.tnt-tabs__btn:hover { color: var(--tnt-charcoal); }

.tnt-latest { display: grid; gap: 22px; }
.tnt-card--feature .tnt-card__media { aspect-ratio: 16 / 10; }
.tnt-latest__list { display: flex; flex-direction: column; }
.tnt-latest__item {
	display: flex; gap: 16px; align-items: center;
	padding: 16px 0; border-top: 1px solid var(--tnt-cream-2);
}
.tnt-latest__item:first-child { border-top: none; padding-top: 0; }
.tnt-latest__thumb {
	flex: 0 0 86px; width: 86px; height: 86px; border-radius: var(--tnt-radius);
	overflow: hidden; position: relative; background: var(--tnt-navy-2);
}
.tnt-latest__thumb .tnt-ph { padding: 8px; }
.tnt-latest__thumb .tnt-ph__label { display: none; }
.tnt-eyebrow {
	font-family: var(--tnt-display); font-weight: 600; font-size: .66rem;
	letter-spacing: .1em; text-transform: uppercase; color: var(--tnt-orange);
}
.tnt-latest__title { font-family: var(--tnt-display); font-weight: 600; font-size: 1.05rem; line-height: 1.12; margin: 5px 0 6px; text-transform: uppercase; }
.tnt-latest__title a:hover { color: var(--tnt-orange); }
.tnt-latest__time { font-size: .76rem; color: var(--tnt-muted); }

/* ----------------------------------------------------------------------
   13. PRESSURE INDEX
   ---------------------------------------------------------------------- */
.tnt-section-head--index { align-items: center; margin-bottom: 18px; }
.tnt-index { display: flex; flex-direction: column; }
.tnt-index__row {
	display: grid; grid-template-columns: 22px 34px 1fr auto; align-items: center; gap: 12px;
	padding: 13px 0; border-top: 1px solid var(--tnt-cream-2);
}
.tnt-index__row:first-child { border-top: none; }
.tnt-index__rank { font-family: var(--tnt-display); font-weight: 700; font-size: 1.05rem; color: var(--tnt-charcoal); text-align: center; }
.tnt-index__crest {
	width: 34px; height: 34px; border-radius: 50%; display: inline-flex; align-items: center; justify-content: center;
	font-family: var(--tnt-display); font-weight: 700; font-size: .6rem; color: var(--tnt-white); letter-spacing: .02em;
}
.tnt-index__crest--navy { background: #1b2a3c; }
.tnt-index__crest--crimson { background: #7a1620; }
.tnt-index__crest--orange { background: var(--tnt-orange); }
.tnt-index__team { font-family: var(--tnt-display); font-weight: 600; font-size: 1rem; text-transform: uppercase; color: var(--tnt-charcoal); }
.tnt-index__gauge { display: flex; flex-direction: column; align-items: flex-end; gap: 5px; min-width: 116px; }
.tnt-index__label { font-family: var(--tnt-display); font-weight: 600; font-size: .58rem; letter-spacing: .08em; text-transform: uppercase; }
.tnt-index__label--high { color: #b3402a; }
.tnt-index__label--mod  { color: #b08227; }
.tnt-index__label--low  { color: #4a7a4f; }
.tnt-index__bar { width: 96px; height: 5px; background: var(--tnt-cream-2); border-radius: 3px; overflow: hidden; }
.tnt-index__fill { display: block; height: 100%; border-radius: 3px; }
.tnt-index__fill--high { background: linear-gradient(90deg, var(--tnt-orange), #d4462a); }
.tnt-index__fill--mod  { background: linear-gradient(90deg, var(--tnt-gold), #c8902f); }
.tnt-index__fill--low  { background: #5a9a64; }

/* ----------------------------------------------------------------------
   14. TRENDING NOW
   ---------------------------------------------------------------------- */
.tnt-trending { display: flex; flex-direction: column; }
.tnt-trending__row {
	display: flex; gap: 14px; align-items: flex-start;
	padding: 13px 0; border-top: 1px solid var(--tnt-cream-2);
}
.tnt-trending__row:first-child { border-top: none; }
.tnt-trending__rank {
	flex: 0 0 26px; width: 26px; height: 26px; border-radius: 50%;
	background: var(--tnt-charcoal); color: var(--tnt-cream);
	display: inline-flex; align-items: center; justify-content: center;
	font-family: var(--tnt-display); font-weight: 600; font-size: .8rem;
}
.tnt-trending__title { font-size: .98rem; line-height: 1.3; color: var(--tnt-ink); font-weight: 500; }
.tnt-trending__title:hover { color: var(--tnt-orange); }

/* ----------------------------------------------------------------------
   15. FOOTER
   ---------------------------------------------------------------------- */
.tnt-footer { background: var(--tnt-black); color: var(--tnt-cream); }
.tnt-footer__cols {
	display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px;
	padding-block: clamp(44px, 6vw, 72px);
	border-bottom: 1px solid var(--tnt-line);
}
.tnt-footer__brand { font-family: var(--tnt-slab); font-weight: 700; font-size: 1.7rem; text-transform: uppercase; color: var(--tnt-white); }
.tnt-footer__desc { margin: 14px 0 0; color: var(--tnt-muted-d); max-width: 36ch; font-size: .96rem; }
.tnt-footer__heading {
	font-family: var(--tnt-display); font-weight: 600; font-size: .82rem;
	letter-spacing: .12em; text-transform: uppercase; color: var(--tnt-gold); margin: 0 0 16px;
}
.tnt-footer__list { display: flex; flex-direction: column; gap: 10px; }
.tnt-footer__list a { color: rgba(244,239,228,.78); font-size: .95rem; }
.tnt-footer__list a:hover { color: var(--tnt-white); }

.tnt-footer__band {
	text-align: center; padding-block: clamp(40px, 5vw, 64px);
	background:
		linear-gradient(180deg, rgba(7,9,11,.82), rgba(7,9,11,.92)),
		url("../images/footer-bg.svg") center/cover no-repeat;
}
.tnt-footer__wordmark {
	display: inline-block; font-family: var(--tnt-slab); font-weight: 700;
	font-size: clamp(2rem, 5vw, 3.2rem); text-transform: uppercase; color: var(--tnt-white);
}
.tnt-footer__rule {
	margin: 14px auto 0; font-family: var(--tnt-display); font-weight: 400;
	font-size: .72rem; letter-spacing: .26em; text-transform: uppercase; color: var(--tnt-gold);
	position: relative; display: inline-block; padding: 0 26px;
}
.tnt-footer__rule::before, .tnt-footer__rule::after {
	content: ""; position: absolute; top: 50%; width: 18px; height: 1px; background: rgba(214,166,79,.5);
}
.tnt-footer__rule::before { left: 0; } .tnt-footer__rule::after { right: 0; }

.tnt-social { display: flex; justify-content: center; gap: 18px; margin-top: 26px; }
.tnt-social a {
	width: 42px; height: 42px; border-radius: 50%; border: 1px solid var(--tnt-line);
	display: inline-flex; align-items: center; justify-content: center; color: rgba(244,239,228,.85);
}
.tnt-social a:hover { border-color: var(--tnt-gold); color: var(--tnt-gold); }

.tnt-footer__legal { padding-block: 20px; background: var(--tnt-black); border-top: 1px solid var(--tnt-line); }
.tnt-footer__legal p { margin: 0; font-size: .82rem; color: var(--tnt-muted-d); text-align: center; }

/* ----------------------------------------------------------------------
   16. ARCHIVE / PAGINATION / MISC
   ---------------------------------------------------------------------- */
.tnt-site-main { display: block; }
.tnt-archive { padding-block: clamp(40px, 6vw, 72px); background: var(--tnt-cream); }
.tnt-archive__header { margin-bottom: 30px; }
.tnt-archive__title { font-family: var(--tnt-display); font-weight: 700; font-size: clamp(1.8rem, 4vw, 2.8rem); text-transform: uppercase; color: var(--tnt-charcoal); }
.tnt-empty { color: var(--tnt-muted); }
.tnt-pagination { margin-top: 40px; }
.tnt-pagination .nav-links { display: flex; gap: 8px; flex-wrap: wrap; }
.tnt-pagination a, .tnt-pagination span {
	font-family: var(--tnt-display); font-weight: 600; padding: 8px 14px;
	border: 1px solid var(--tnt-cream-2); border-radius: var(--tnt-radius); color: var(--tnt-charcoal);
}
.tnt-pagination .current { background: var(--tnt-charcoal); color: var(--tnt-cream); border-color: var(--tnt-charcoal); }

@media (prefers-reduced-motion: reduce) {
	* { animation-duration: .001ms !important; transition-duration: .001ms !important; scroll-behavior: auto !important; }
}

/* ---------------------------------------------------------------------------
   Game Strip (curated "This Week's Games")
--------------------------------------------------------------------------- */
.tnt-gamestrip {
	background: var(--tnt-black);
	border-top: 1px solid rgba(214, 166, 79, .28);
	color: var(--tnt-cream);
}
.tnt-gamestrip__inner {
	display: flex; align-items: center; gap: 22px;
	min-height: 52px; padding-top: 8px; padding-bottom: 8px;
}
.tnt-gamestrip__label {
	flex: 0 0 auto;
	font-family: var(--tnt-display); font-weight: 600;
	text-transform: uppercase; letter-spacing: .12em;
	font-size: .82rem; color: var(--tnt-gold);
	padding-right: 20px; border-right: 1px solid rgba(244, 239, 228, .16);
}
.tnt-gamestrip__rail {
	display: flex; align-items: stretch; gap: 0;
	overflow-x: auto; flex: 1 1 auto;
	scrollbar-width: thin; scrollbar-color: rgba(244,239,228,.25) transparent;
}
.tnt-gamestrip__rail::-webkit-scrollbar { height: 4px; }
.tnt-gamestrip__rail::-webkit-scrollbar-thumb { background: rgba(244,239,228,.22); border-radius: 4px; }
.tnt-gamestrip__game {
	flex: 0 0 auto;
	display: flex; flex-direction: column; gap: 2px;
	padding: 2px 22px; white-space: nowrap;
	border-left: 1px solid rgba(244, 239, 228, .1);
}
.tnt-gamestrip__game:first-child { border-left: none; padding-left: 0; }
.tnt-gamestrip__teams {
	font-family: var(--tnt-display); font-weight: 600;
	text-transform: uppercase; letter-spacing: .02em;
	font-size: .92rem; line-height: 1; color: var(--tnt-cream);
	display: inline-flex; align-items: baseline; gap: 7px;
}
.tnt-gamestrip__vs {
	font-style: normal; font-weight: 500;
	font-size: .68rem; color: var(--tnt-muted);
	letter-spacing: .08em;
}
.tnt-gamestrip__meta {
	font-size: .72rem; color: var(--tnt-muted);
	letter-spacing: .02em; line-height: 1;
}
.tnt-gamestrip__tv { color: var(--tnt-gold); }
.tnt-gamestrip__link {
	flex: 0 0 auto;
	font-family: var(--tnt-display); font-weight: 600;
	text-transform: uppercase; letter-spacing: .1em;
	font-size: .76rem; color: var(--tnt-gold);
	padding-left: 20px; border-left: 1px solid rgba(244, 239, 228, .16);
}
.tnt-gamestrip__link:hover { color: var(--tnt-cream); }
.tnt-gamestrip--off .tnt-gamestrip__off {
	font-size: .84rem; color: var(--tnt-muted); letter-spacing: .02em;
}
@media (max-width: 640px) {
	.tnt-gamestrip__label { font-size: .72rem; padding-right: 14px; }
	.tnt-gamestrip__game { padding: 2px 16px; }
	.tnt-gamestrip__inner { gap: 14px; }
}

/* ===========================================================================
   SPORTY SECTION TREATMENT — broadcast headers, chyron badges, card energy
   (additive; scoped to skip the small index/trending heads)
   =========================================================================== */

/* Section header: two-tone "stat bar" underline */
.tnt-section-head:not(.tnt-section-head--index) { position: relative; }
.tnt-section-head:not(.tnt-section-head--index)::after {
	content: ""; position: absolute; left: 0; right: 0; bottom: -14px; height: 3px;
	background: linear-gradient(90deg,
		var(--tnt-orange) 0, var(--tnt-orange) 38px,
		var(--tnt-gold) 38px, var(--tnt-gold) 72px,
		rgba(255,255,255,.14) 72px, rgba(255,255,255,.14) 100%);
}
.tnt-band--cream .tnt-section-head:not(.tnt-section-head--index)::after {
	background: linear-gradient(90deg,
		var(--tnt-orange) 0, var(--tnt-orange) 38px,
		var(--tnt-gold) 38px, var(--tnt-gold) 72px,
		rgba(7,9,11,.1) 72px, rgba(7,9,11,.1) 100%);
}

/* Accent bar before the title — broadcast lower-third marker */
.tnt-section-head__title:not(.tnt-section-head__title--sm) {
	position: relative; padding-left: 20px;
	letter-spacing: -.005em;
	font-size: clamp(1.7rem, 3.1vw, 2.45rem);
}
.tnt-section-head__title:not(.tnt-section-head__title--sm)::before {
	content: ""; position: absolute; left: 0; top: .12em; bottom: .12em; width: 7px;
	background: linear-gradient(180deg, var(--tnt-orange), var(--tnt-gold));
	border-radius: 1px;
}

/* "View all" link → broadcast tab/button */
.tnt-section-head__link {
	border: 1.5px solid currentColor; padding: 8px 14px; border-radius: 2px;
	transition: background .2s var(--tnt-ease), color .2s var(--tnt-ease), border-color .2s var(--tnt-ease);
}
.tnt-section-head__link:hover {
	background: var(--tnt-gold); color: var(--tnt-black);
	border-color: var(--tnt-gold); transform: none;
}

/* Sportier badge — angled chyron, heavier weight */
.tnt-badge {
	font-weight: 700; font-size: .64rem; letter-spacing: .12em;
	padding: 6px 15px 6px 11px; border-radius: 0;
	clip-path: polygon(0 0, 100% 0, calc(100% - 9px) 100%, 0 100%);
}

/* Card energy — lift on hover + a growing accent line across the image */
.tnt-card--article { transition: transform .25s var(--tnt-ease); }
.tnt-card--article:hover { transform: translateY(-4px); }
.tnt-card--article .tnt-card__media::after {
	content: ""; position: absolute; left: 0; bottom: 0; height: 3px; width: 0; z-index: 2;
	background: linear-gradient(90deg, var(--tnt-orange), var(--tnt-gold));
	transition: width .35s var(--tnt-ease);
}
.tnt-card--article:hover .tnt-card__media::after { width: 100%; }

/* ===========================================================================
   SPORTY v2 — CRANKED: big italic broadcast headlines, skewed slash, yard-line rule
   =========================================================================== */

/* Oversized ITALIC condensed section headlines */
.tnt-section-head__title:not(.tnt-section-head__title--sm) {
	font-style: italic;
	font-weight: 700;
	font-size: clamp(2.1rem, 4.6vw, 3.5rem);
	line-height: .9;
	letter-spacing: -.02em;
	padding-left: 26px;
}
/* Chunky skewed accent slash before the title */
.tnt-section-head__title:not(.tnt-section-head__title--sm)::before {
	content: ""; position: absolute; left: 0; top: .02em; bottom: .06em; width: 13px;
	background: linear-gradient(180deg, var(--tnt-orange), var(--tnt-gold));
	transform: skewX(-12deg); border-radius: 0;
}

/* Heavier yard-line "stat" rule under the header */
.tnt-section-head:not(.tnt-section-head--index)::after {
	height: 6px; bottom: -16px;
	background:
		linear-gradient(90deg, var(--tnt-orange) 0, var(--tnt-orange) 40px, var(--tnt-gold) 40px, var(--tnt-gold) 74px, transparent 74px),
		repeating-linear-gradient(90deg, rgba(255,255,255,.22) 0, rgba(255,255,255,.22) 2px, transparent 2px, transparent 11px);
}
.tnt-band--cream .tnt-section-head:not(.tnt-section-head--index)::after {
	background:
		linear-gradient(90deg, var(--tnt-orange) 0, var(--tnt-orange) 40px, var(--tnt-gold) 40px, var(--tnt-gold) 74px, transparent 74px),
		repeating-linear-gradient(90deg, rgba(7,9,11,.16) 0, rgba(7,9,11,.16) 2px, transparent 2px, transparent 11px);
}

/* Tighter kicker subhead */
.tnt-section-head__sub { font-weight: 600; letter-spacing: .16em; }

/* Sharper chyron badge slant */
.tnt-badge {
	clip-path: polygon(0 0, 100% 0, calc(100% - 12px) 100%, 0 100%);
	padding: 6px 17px 6px 11px;
}

/* ===========================================================================
   ELITE PLAYBOOKS — clean symmetrical carousel, no duplicate labels
   =========================================================================== */

/* Kill the duplicate town name: placeholder cards already show the townline */
.tnt-card--town .tnt-ph__label { display: none; }

/* Show exactly 3 full cards (was 3.3 — the stray peek collided with the aside) */
.tnt-carousel__track { grid-auto-columns: calc((100% - 2 * 22px) / 3); }

/* Uniform cards: pin the button to a shared baseline regardless of list length */
.tnt-card--town .tnt-card__body { flex: 1; }
.tnt-card__guide { margin-top: auto; }

/* Premium hover energy + cleaner overlay legibility */
.tnt-card--town { transition: transform .25s var(--tnt-ease), box-shadow .25s var(--tnt-ease); }
.tnt-card--town:hover { transform: translateY(-5px); }
.tnt-band--cream .tnt-card--town:hover { box-shadow: 0 16px 38px rgba(7,9,11,.24); }
.tnt-card--town .tnt-card__media-grad {
	background: linear-gradient(180deg, rgba(7,9,11,0) 20%, rgba(7,9,11,.5) 58%, rgba(7,9,11,.96) 100%);
}

/* Tighten the townline so the name + school read as one elite lockup */
.tnt-card__town { font-size: 2.05rem; letter-spacing: -.01em; }
.tnt-card__school { font-size: 1.05rem; margin-top: 4px; }

/* ===========================================================================
   PLAYBOOKS ALIGNMENT — newsletter lines up with the card row (top + bottom)
   =========================================================================== */
.tnt-playbooks-grid { align-items: stretch; }
.tnt-playbooks-grid__aside { display: flex; }
.tnt-playbooks-grid__aside .tnt-newsletter { width: 100%; display: flex; flex-direction: column; }
/* push the form to the bottom so the taller card fills cleanly */
.tnt-playbooks-grid__aside .tnt-newsletter__form { margin-top: auto; }
