/* TXK Today — Guides post styles. Field's bespoke guide design, scoped under .txk-guide so it can't
   leak into the rest of the site. Enqueued ONLY on single posts in the Guides category (functions.php).
   Source: Field's standalone HTML; global resets/body/masthead/footer-chrome dropped, all element
   selectors prefixed, wrapper made full-bleed to escape Blocksy's constrained post column. 2026-06-07 */

/* Hide Blocksy's own post title/hero band on Guides posts — the guide supplies its own hero. */
.txk-guide-single .hero-section { display: none; }
/* Let the guide bands run edge-to-edge: drop the post content container's side padding/limits. */
.txk-guide-single .entry-content { overflow: visible; }

/* ---------- Wrapper: full-bleed + design base (was <body>) ---------- */
.txk-guide {
	--orange:#FF9000; --red:#C8102E; --peach:#FBE5D6; --ink:#141210; --ink-soft:#3a352f;
	--paper:#FBF8F4; --line:#e4dcd2;
	--display:"Archivo",system-ui,sans-serif; --body:"Newsreader",Georgia,serif;
	/* break out of the constrained content column to the viewport edges. WP's is-layout-constrained
	   centers children with `margin:auto !important` (via a zero-specificity :where() rule), so the
	   bleed margins need !important to win; max-width:none defeats the child content-size cap. */
	width: auto; max-width: none;
	margin-left: calc(50% - 50vw) !important; margin-right: calc(50% - 50vw) !important;
	font-family: var(--body); color: var(--ink); background: var(--paper);
	line-height: 1.6; font-size: 18px; text-align: left; -webkit-font-smoothing: antialiased;
}
.txk-guide * { box-sizing: border-box; margin: 0; padding: 0; }
.txk-guide .wrap { max-width: 920px; margin: 0 auto; padding: 0 22px; }

/* ---------- Hero ---------- */
.txk-guide .hero { background: var(--peach); border-bottom: 1px solid var(--line); }
.txk-guide .hero .wrap { padding: 54px 22px 46px; }
.txk-guide .eyebrow { font-family: var(--display); font-weight: 700; text-transform: uppercase; letter-spacing: 3px; font-size: 13px; color: var(--red); }
.txk-guide .hero h1 { font-family: var(--display); font-weight: 900; line-height: .98; font-size: clamp(38px,7vw,68px); letter-spacing: -1.5px; margin: 14px 0 18px; color: var(--ink); }
.txk-guide .hero p { font-size: clamp(19px,2.4vw,23px); max-width: 680px; color: var(--ink-soft); }
.txk-guide .updated { margin-top: 22px; font-family: var(--display); font-size: 13px; letter-spacing: .5px; text-transform: uppercase; color: var(--ink-soft); font-weight: 600; }

/* ---------- Key dates strip ---------- */
.txk-guide .keydates { background: #000; color: #fff; }
.txk-guide .keydates .wrap { padding: 30px 22px; }
.txk-guide .keydates h2 { font-family: var(--display); font-weight: 800; text-transform: uppercase; letter-spacing: 1px; font-size: 15px; color: var(--orange); margin-bottom: 18px; }
.txk-guide .date-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 1px; background: #2a2723; border: 1px solid #2a2723; }
.txk-guide .date-cell { background: #000; padding: 18px 16px; }
.txk-guide .date-cell .d { font-family: var(--display); font-weight: 900; font-size: 26px; color: var(--orange); line-height: 1.05; }
.txk-guide .date-cell .l { font-family: var(--body); font-size: 15px; color: #d9d2c8; margin-top: 6px; line-height: 1.35; }

/* ---------- Jump nav (sticky; offset to clear Blocksy's sticky header) ---------- */
.txk-guide .jump { position: sticky; top: 60px; z-index: 20; background: var(--paper); border-bottom: 1px solid var(--line); }
.txk-guide .jump .wrap { display: flex; gap: 6px; overflow-x: auto; padding: 10px 22px; -ms-overflow-style: none; scrollbar-width: none; }
.txk-guide .jump .wrap::-webkit-scrollbar { display: none; }
.txk-guide .jump a { flex: 0 0 auto; font-family: var(--display); font-weight: 600; font-size: 13px; text-transform: uppercase; letter-spacing: .5px; color: var(--ink-soft); text-decoration: none; padding: 7px 12px; border-radius: 999px; white-space: nowrap; border: 1px solid var(--line); }
.txk-guide .jump a:hover { background: var(--orange); color: #000; border-color: var(--orange); }

/* ---------- Sections ---------- */
.txk-guide section { padding: 48px 0; border-bottom: 1px solid var(--line); }
.txk-guide .sec-head { display: flex; align-items: flex-start; gap: 14px; margin-bottom: 18px; }
.txk-guide .sec-head .bar { flex: 0 0 6px; align-self: stretch; background: var(--orange); min-height: 42px; border-radius: 2px; }
.txk-guide h2.sec { font-family: var(--display); font-weight: 800; font-size: clamp(26px,4vw,36px); letter-spacing: -.5px; line-height: 1.05; }
.txk-guide h3 { font-family: var(--display); font-weight: 700; font-size: 21px; margin: 26px 0 8px; letter-spacing: -.2px; }
.txk-guide p { margin: 0 0 14px; }
.txk-guide a { color: var(--red); text-decoration: underline; text-underline-offset: 2px; }
.txk-guide ul, .txk-guide ol { margin: 0 0 16px 22px; }
.txk-guide li { margin-bottom: 8px; }
.txk-guide strong { font-weight: 600; }

.txk-guide .card { background: #fff; border: 1px solid var(--line); border-left: 6px solid var(--orange); border-radius: 4px; padding: 22px 24px; margin: 20px 0; }
.txk-guide .card.peach { background: var(--peach); border-left-color: var(--red); }
.txk-guide .card h3 { margin-top: 0; }
.txk-guide .note { font-size: 16px; color: var(--ink-soft); font-style: italic; }

.txk-guide .ways { display: grid; grid-template-columns: repeat(3,1fr); gap: 14px; margin-top: 8px; }
.txk-guide .way { background: #fff; border: 1px solid var(--line); border-top: 5px solid var(--orange); border-radius: 4px; padding: 20px; }
.txk-guide .way .num { font-family: var(--display); font-weight: 900; font-size: 14px; color: var(--orange); letter-spacing: 1px; }
.txk-guide .way h3 { margin: 6px 0 6px; font-size: 19px; }
.txk-guide .way p { font-size: 16px; margin-bottom: 0; color: var(--ink-soft); }

.txk-guide table { width: 100%; border-collapse: collapse; margin: 16px 0; font-size: 16px; }
.txk-guide th, .txk-guide td { text-align: left; padding: 11px 12px; border-bottom: 1px solid var(--line); vertical-align: top; }
.txk-guide th { font-family: var(--display); font-weight: 700; background: var(--peach); font-size: 13px; text-transform: uppercase; letter-spacing: .5px; }

.txk-guide .contacts { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.txk-guide .contacts .c { background: #fff; border: 1px solid var(--line); border-radius: 4px; padding: 18px 20px; }
.txk-guide .contacts .c .lab { font-family: var(--display); font-weight: 800; text-transform: uppercase; letter-spacing: .5px; font-size: 12px; color: var(--red); margin-bottom: 6px; }
.txk-guide .contacts .c .big { font-family: var(--display); font-weight: 700; font-size: 18px; line-height: 1.25; }
.txk-guide .contacts .c .sub { font-size: 15px; color: var(--ink-soft); margin-top: 4px; }

.txk-guide .btn { display: inline-block; font-family: var(--display); font-weight: 700; text-transform: uppercase; letter-spacing: .5px; font-size: 14px; background: var(--orange); color: #000; text-decoration: none; padding: 13px 22px; border-radius: 3px; margin-top: 6px; }
.txk-guide .btn:hover { background: var(--red); color: #fff; }

/* ---------- Closing disclaimer band (kept from Field's footer; chrome removed) ---------- */
.txk-guide .guide-disclaimer { background: #000; color: #cfc8be; }
.txk-guide .guide-disclaimer .wrap { padding: 36px 22px; }
.txk-guide .guide-disclaimer .fine { font-size: 14px; line-height: 1.6; color: #9b948a; }
.txk-guide .guide-disclaimer .fine a { color: #cfc8be; }
.txk-guide .guide-disclaimer .sources { margin-top: 14px; font-size: 13px; color: #7d776e; }

/* ---------- Officeholder photo roster (e.g. county commissioners) ---------- */
.txk-guide .roster { display: grid; grid-template-columns: repeat(4,1fr); gap: 16px; margin: 18px 0 8px; }
.txk-guide .roster .person { display: block; background: #fff; border: 1px solid var(--line); border-radius: 6px; overflow: hidden; text-align: center; text-decoration: none; color: inherit; }
.txk-guide .roster a.person:hover { border-color: var(--orange); }
.txk-guide .roster .person img { display: block; width: 100%; height: 200px; object-fit: cover; object-position: top center; background: #ece7df; }
.txk-guide .roster .person .nm { font-family: var(--display); font-weight: 700; font-size: 15px; padding: 10px 8px 2px; line-height: 1.2; }
.txk-guide .roster .person .pct { font-size: 13px; color: var(--ink-soft); padding: 0 8px 12px; }

/* ---------- In-content figure (e.g. a group/building photo with caption) ---------- */
.txk-guide .txk-guide-fig { margin: 22px 0 8px; }
.txk-guide .txk-guide-fig img { width: 100%; height: auto; display: block; border-radius: 6px; border: 1px solid var(--line); }
.txk-guide .txk-guide-fig figcaption { font-size: 14px; color: var(--ink-soft); font-style: italic; margin-top: 8px; text-align: center; }

/* ---------- Responsive ---------- */
@media (max-width: 680px) {
	.txk-guide .date-grid { grid-template-columns: repeat(2,1fr); }
	.txk-guide .ways { grid-template-columns: 1fr; }
	.txk-guide .contacts { grid-template-columns: 1fr; }
	.txk-guide .roster { grid-template-columns: repeat(2,1fr); }
}
