/* ============================================================
   Bohol Light — pages.css
   Inner-page hero band, single-post content column, archive
   pagination, search results, 404, and empty states.
   Extends theme.css tokens — no new colours, no new fonts.
   ============================================================ */

/* ===== Inner-page hero band ===== */
.ph {
	position: relative;
	color: #fff;
	background: linear-gradient(135deg, var(--green-deep), var(--green));
	isolation: isolate;
	overflow: hidden;
}
/* Banner photo layer + green overlay (only when the page has a Featured Image). */
.ph-bg {
	position: absolute;
	inset: 0;
	z-index: -2;
}
.ph-bg img { width: 100%; height: 100%; object-fit: cover; }
.ph--image::after {
	content: "";
	position: absolute;
	inset: 0;
	z-index: -1;
	/* Left-weighted: dark behind the heading, lighter on the right so the
	   photo reads through without hurting legibility. */
	background: linear-gradient(100deg, rgba(16, 54, 22, .95) 0%, rgba(20, 70, 30, .86) 42%, rgba(30, 143, 44, .55) 100%);
}
.ph--image .ph-inner { padding-block: clamp(3.2rem, 7vw, 5.4rem); }
.ph-inner {
	padding-block: clamp(2.6rem, 6vw, 4.6rem);
}
.ph-eyebrow {
	display: inline-flex;
	align-items: center;
	gap: .5rem;
	background: rgba(255, 255, 255, .14);
	color: #fff;
	font-family: var(--f);
	font-weight: 800;
	font-size: .72rem;
	text-transform: uppercase;
	letter-spacing: .06em;
	padding: .4rem .85rem;
	border-radius: var(--pill);
	margin-bottom: 1.1rem;
}
.ph-eyebrow.maint { background: var(--orange); }
.ph-eyebrow.emer { background: var(--red); }
.ph-title {
	font-size: clamp(2rem, 1.5rem + 2.4vw, 3.4rem);
	letter-spacing: -.02em;
	line-height: 1.04;
	color: #fff;
	max-width: 22ch;
}
.ph-meta {
	margin-top: 1rem;
	font-family: var(--mono);
	font-size: .84rem;
	font-weight: 600;
	letter-spacing: .04em;
	color: rgba(255, 255, 255, .85);
}
.ph-desc {
	margin-top: 1.1rem;
	max-width: 60ch;
	color: rgba(255, 255, 255, .9);
	font-size: 1.05rem;
}
.ph-desc p { margin-bottom: .6rem; }
.ph-desc p:last-child { margin-bottom: 0; }

/* ===== Single post ===== */
.single-post { padding-block: clamp(2.5rem, 5vw, 4rem) 0; }
.single-wrap { display: flex; flex-direction: column; }

/* ===== Single-post layout variants (Standard / Gallery / Advisory) ===== */
/* Photo Gallery: wider column so grids get 4 columns, but keep prose readable. */
.single-post--gallery .single-content { max-width: 76rem; }
.single-post--gallery .single-content > :not(.bl-gallery):not(.gallery) {
	max-width: 68ch;
	margin-inline: auto;
}
.single-post--gallery .single-content .bl-gallery,
.single-post--gallery .single-content .gallery { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 900px) {
	.single-post--gallery .single-content .bl-gallery,
	.single-post--gallery .single-content .gallery { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 600px) {
	.single-post--gallery .single-content .bl-gallery,
	.single-post--gallery .single-content .gallery { grid-template-columns: repeat(2, 1fr); }
}
/* Advisory · Notice: emergency hotline callout below the notice. */
.advisory-hotline {
	max-width: 68ch;
	width: 100%;
	margin: clamp(2rem, 5vw, 3rem) auto 0;
	padding: clamp(1.4rem, 3vw, 2rem);
	border-radius: var(--r);
	background: var(--green-deep);
	color: #fff;
	text-align: center;
}
.advisory-hotline h2 { color: #fff; margin: 0 0 .5rem; font-size: 1.4rem; }
.advisory-hotline p { color: rgba(255, 255, 255, .9); margin: 0 auto 1.1rem; max-width: 48ch; }
/* Advisory in-body posters. One or two posters (not enough for a grid) are
   centred as readable cards; three or more get wrapped into the .bl-gallery
   grid above (compact tiles + lightbox). The card rule is scoped to images
   still in a paragraph, so it never fights the gallery grid. */
.single-post--advisory .single-content p img,
.single-post--advisory .single-content > img {
	display: block;
	width: 100%;
	max-width: 560px;
	margin: 1.3rem auto;
	aspect-ratio: auto;
	object-fit: contain;
	background: #fff;
	border: 1px solid var(--line);
	border-radius: 14px;
	padding: .5rem;
	box-shadow: 0 20px 44px -28px rgba(18, 58, 24, .4);
	cursor: default;
}
.single-post--advisory .single-content a br { display: none; }
.single-post--advisory .single-content > p:first-child { margin-top: 0; }

/* Document download card (rebuilt from broken migrated PDF file-blocks). */
.bl-doc {
	display: flex;
	align-items: center;
	gap: 1rem;
	max-width: 68ch;
	margin: 1.6rem auto;
	padding: 1rem 1.25rem;
	border: 1px solid var(--line);
	border-radius: var(--r);
	background: #fff;
	text-decoration: none;
	transition: box-shadow .2s ease, transform .2s ease;
}
.bl-doc:hover { box-shadow: 0 16px 34px -20px rgba(18, 58, 24, .45); transform: translateY(-2px); }
.bl-doc-ic { flex: 0 0 auto; width: 40px; color: #d0342c; }
.bl-doc-ic svg { display: block; width: 40px; height: auto; fill: currentColor; }
.bl-doc-tx { display: flex; flex-direction: column; gap: .15rem; }
.bl-doc-tx strong { color: var(--green-deep); font-weight: 700; line-height: 1.3; }
.bl-doc-tx span { font-size: .85rem; color: var(--body); }
.bl-doc.is-nolink { cursor: default; }
/* Safety net: any file-type icon left inline stays small, never full-width. */
.single-content svg[viewBox="0 0 384 512"] { width: 48px; height: auto; }

/* ===== Document repository (Notice to the Public CSP files) ===== */
.doc-wrap { max-width: 60rem; margin-inline: auto; display: flex; flex-direction: column; gap: 1rem; }
.doc-acc {
	border: 1px solid var(--line);
	border-radius: var(--r);
	background: #fff;
	overflow: hidden;
}
.doc-acc-hd {
	display: flex;
	align-items: center;
	gap: 1rem;
	padding: 1.15rem clamp(1.1rem, 3vw, 1.6rem);
	cursor: pointer;
	list-style: none;
	font-family: var(--d);
	font-weight: 700;
	color: var(--green-deep);
	transition: background .2s ease;
}
.doc-acc-hd::-webkit-details-marker { display: none; }
.doc-acc-hd:hover { background: var(--mist); }
.doc-acc-hd:focus-visible { outline: 3px solid var(--green); outline-offset: -3px; }
.doc-acc-title { flex: 1 1 auto; line-height: 1.35; }
.doc-acc-count {
	flex: 0 0 auto;
	font-family: var(--f);
	font-weight: 600;
	font-size: .8rem;
	color: var(--body);
	background: var(--mist);
	padding: .2rem .6rem;
	border-radius: 999px;
}
.doc-acc-chev {
	flex: 0 0 auto;
	width: .7rem; height: .7rem;
	border-right: 2px solid currentColor;
	border-bottom: 2px solid currentColor;
	transform: rotate(45deg);
	transition: transform .25s cubic-bezier(.22,1,.36,1);
}
.doc-acc[open] .doc-acc-chev { transform: rotate(-135deg); }
.doc-list { list-style: none; margin: 0; padding: 0 clamp(.6rem, 2vw, 1rem) .6rem; border-top: 1px solid var(--line); }
.doc-row {
	display: flex;
	align-items: center;
	gap: .9rem;
	padding: .85rem .6rem;
	text-decoration: none;
	border-radius: calc(var(--r) - 4px);
	transition: background .18s ease;
}
.doc-list li + li { border-top: 1px solid var(--line); }
.doc-row:hover { background: var(--mist); }
.doc-row:focus-visible { outline: 3px solid var(--green); outline-offset: -3px; }
.doc-row-ic { flex: 0 0 auto; width: 22px; color: #d0342c; }
.doc-row-ic svg { display: block; width: 22px; height: auto; fill: currentColor; }
.doc-row-tx { flex: 1 1 auto; color: var(--body); line-height: 1.4; }
.doc-row-dl {
	flex: 0 0 auto;
	font-size: .78rem;
	font-weight: 700;
	color: var(--green-deep);
	white-space: nowrap;
}
@media (prefers-reduced-motion: reduce) {
	.doc-acc-chev, .doc-row, .doc-acc-hd { transition: none; }
}

/* Featured image. Advisory posters are portrait — centre them on a light card,
   uncropped, capped width. News images run full-width and rounded. */
.single-featured { margin: 0 0 clamp(1.8rem, 4vw, 2.8rem); }
.single-featured img { display: block; border-radius: var(--r); }
.single-featured.is-poster {
	display: flex;
	justify-content: center;
}
.single-featured.is-poster img {
	max-width: 520px;
	width: 100%;
	height: auto;
	background: #fff;
	border: 1px solid var(--line);
	padding: .5rem;
	box-shadow: 0 24px 50px -30px rgba(18, 58, 24, .4);
}
.single-featured.is-wide img {
	width: 100%;
	height: auto;
	border: 1px solid var(--line);
}

/* Readable typographic column. */
.single-content {
	max-width: 68ch;
	margin-inline: auto;
	width: 100%;
	color: var(--body);
	font-size: 1.05rem;
	line-height: 1.75;
}
.single-content > * { margin-bottom: 1.15rem; }
.single-content > *:last-child { margin-bottom: 0; }
.single-content h2 {
	font-size: clamp(1.5rem, 1.2rem + 1vw, 2rem);
	color: var(--green-ink);
	margin-top: 2rem;
}
.single-content h3 {
	font-size: 1.3rem;
	color: var(--green-ink);
	margin-top: 1.6rem;
}
.single-content h4 { font-size: 1.1rem; color: var(--green-ink); margin-top: 1.4rem; }
.single-content a {
	color: var(--green-deep);
	text-decoration: underline;
	text-underline-offset: 3px;
	text-decoration-color: rgba(30, 143, 44, .4);
}
.single-content a:hover { color: var(--orange-deep); text-decoration-color: var(--orange); }
.single-content ul,
.single-content ol { padding-left: 1.4rem; }
.single-content li { margin-bottom: .5rem; }
.single-content img { border-radius: 14px; height: auto; max-width: 100%; }
.single-content figure { margin: 1.6rem 0; }
.single-content figure img { width: 100%; }
.single-content figcaption { font-size: .85rem; color: var(--body); opacity: .8; margin-top: .5rem; text-align: center; }
/* ===== Migrated rich content: tables, quotes, embeds ===== */
.tbl-scroll { overflow-x: auto; -webkit-overflow-scrolling: touch; margin: 1.6rem 0; }
.single-content table {
	width: 100%;
	border-collapse: collapse;
	font-size: .96rem;
	background: #fff;
	border: 1px solid var(--line);
}
.single-content .tbl-scroll > table { margin: 0; }
.single-content th,
.single-content td {
	padding: .7rem .9rem;
	border: 1px solid var(--line);
	text-align: left;
	vertical-align: top;
	line-height: 1.55;
}
.single-content thead th,
.single-content tr:first-child th {
	background: var(--mist2);
	color: var(--green-ink);
	font-weight: 700;
}
.single-content tbody tr:nth-child(even) td { background: var(--mist); }
.single-content blockquote {
	margin: 1.6rem 0;
	padding: 1rem 1.3rem;
	background: var(--mist);
	border-radius: var(--r);
	color: var(--green-ink);
	font-style: italic;
}
.single-content blockquote > :last-child { margin-bottom: 0; }
.single-content hr { border: 0; border-top: 1px solid var(--line); margin: 2rem 0; }
.single-content iframe,
.single-content video { max-width: 100%; border-radius: 14px; }
/* ===== Legacy photo galleries (wrapped by bl_tidy_gallery_content) ===== */
.single-content .bl-gallery,
.single-content .gallery {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: .8rem;
	margin: 1.8rem 0;
}
.single-content .bl-gallery .gallery-item,
.single-content .bl-gallery figure,
.single-content .gallery .gallery-item {
	margin: 0;
	width: auto;
}
.single-content .gallery-item a,
.single-content .bl-gallery a { display: block; line-height: 0; }
.single-content .bl-gallery img,
.single-content .gallery img {
	width: 100%;
	aspect-ratio: 1 / 1;
	object-fit: cover;
	border-radius: 12px;
	border: 1px solid var(--line);
	display: block;
	cursor: zoom-in;
	transition: transform .3s var(--ease), box-shadow .3s;
}
.single-content .bl-gallery img:hover,
.single-content .gallery img:hover {
	transform: translateY(-3px);
	box-shadow: 0 18px 40px -24px rgba(18, 58, 24, .4);
}
@media (max-width: 600px) {
	.single-content .bl-gallery,
	.single-content .gallery { grid-template-columns: repeat(2, 1fr); gap: .55rem; }
}
/* Document galleries: multi-page scanned docs (ERC orders, notices, annexes).
   Portrait pages shown uncropped on white so the text stays readable; click to
   open full-size in the lightbox. */
.single-content .bl-gallery.is-docs { grid-template-columns: repeat(4, 1fr); }
.single-content .bl-gallery.is-docs > a { display: block; line-height: 0; }
.single-content .bl-gallery.is-docs img {
	width: 100%;
	aspect-ratio: 3 / 4;
	object-fit: contain;
	object-position: top;
	background: #fff;
	border: 1px solid var(--line);
	border-radius: 8px;
	padding: 4px;
	cursor: zoom-in;
	transition: transform .3s var(--ease), box-shadow .3s;
}
.single-content .bl-gallery.is-docs > a:hover img {
	transform: translateY(-3px);
	box-shadow: 0 18px 40px -24px rgba(18, 58, 24, .4);
}
@media (max-width: 900px) { .single-content .bl-gallery.is-docs { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 600px) { .single-content .bl-gallery.is-docs { grid-template-columns: repeat(2, 1fr); } }
/* ===== Lightbox overlay (assets/js/app.js) ===== */
.bl-lb {
	position: fixed;
	inset: 0;
	z-index: 1000;
	display: flex;
	align-items: center;
	justify-content: center;
	background: rgba(12, 40, 18, .92);
	backdrop-filter: blur(4px);
}
.bl-lb[hidden] { display: none; }
.bl-lb-img {
	max-width: 90vw;
	max-height: 86vh;
	border-radius: 10px;
	box-shadow: 0 30px 80px -20px rgba(0, 0, 0, .6);
	background: #fff;
}
.bl-lb button {
	position: absolute;
	background: rgba(255, 255, 255, .14);
	color: #fff;
	border: 0;
	width: 48px;
	height: 48px;
	border-radius: 50%;
	font-size: 1.6rem;
	line-height: 1;
	cursor: pointer;
	display: grid;
	place-items: center;
	transition: background .2s;
}
.bl-lb button:hover { background: var(--orange); }
.bl-lb-close { top: 1.2rem; right: 1.2rem; }
.bl-lb-prev { left: 1.2rem; top: 50%; transform: translateY(-50%); }
.bl-lb-next { right: 1.2rem; top: 50%; transform: translateY(-50%); }
.bl-lb-count { position: absolute; bottom: 1.1rem; left: 0; right: 0; text-align: center; color: rgba(255,255,255,.8); font-family: var(--mono); font-size: .8rem; }
@media (max-width: 600px) { .bl-lb-prev { left: .4rem; } .bl-lb-next { right: .4rem; } }
/* ===== About page lead photo ===== */
.about-photo {
	margin: 0 0 2rem;
	border-radius: var(--r);
	overflow: hidden;
	border: 1px solid var(--line);
	box-shadow: 0 24px 60px -34px rgba(18, 58, 24, .5);
}
.about-photo img { display: block; width: 100%; height: auto; }
/* ===== How to Apply: customer-type card illustration ===== */
.req-illus {
	margin: 0 0 1rem;
	border-radius: 14px;
	overflow: hidden;
	background: var(--cream, #f4f7f2);
	aspect-ratio: 16 / 10;
}
.req-illus img { display: block; width: 100%; height: 100%; object-fit: cover; }
/* ===== Downloadable application-form links ===== */
.forms-list a.form-dl {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	width: 100%;
	text-decoration: none;
	color: inherit;
}
.forms-list a.form-dl .form-dl-badge {
	flex: none;
	font-family: var(--mono);
	font-size: .72rem;
	font-weight: 600;
	letter-spacing: .04em;
	color: var(--orange-deep, var(--orange));
	background: rgba(242, 106, 34, .1);
	border-radius: var(--pill, 999px);
	padding: .2rem .6rem;
	transition: background .2s, color .2s;
}
.forms-list a.form-dl:hover .form-dl-badge { background: var(--orange); color: #fff; }
.single-content figcaption {
	font-family: var(--mono);
	font-size: .8rem;
	color: var(--body);
	opacity: .75;
	margin-top: .5rem;
	text-align: center;
}
.single-content blockquote {
	margin: 1.6rem 0;
	padding: 1rem 1.4rem;
	border-left: 4px solid var(--green);
	background: var(--mist);
	border-radius: 0 12px 12px 0;
	color: var(--green-ink);
	font-style: italic;
}
.single-content blockquote p:last-child { margin-bottom: 0; }
.single-content code,
.single-content pre {
	font-family: var(--mono);
	font-size: .9em;
}
.single-content pre {
	background: var(--green-ink);
	color: #fff;
	padding: 1.1rem 1.3rem;
	border-radius: 14px;
	overflow-x: auto;
}
/* Tables (power-rates-style, kept readable). */
.single-content table {
	width: 100%;
	border-collapse: collapse;
	margin: 1.6rem 0;
	font-size: .95rem;
	border: 1px solid var(--line);
	border-radius: 12px;
	overflow: hidden;
}
.single-content th,
.single-content td {
	padding: .75rem 1rem;
	text-align: left;
	border-bottom: 1px solid var(--line);
}
.single-content thead th {
	background: var(--green);
	color: #fff;
	font-family: var(--d);
	font-weight: 600;
}
.single-content tbody tr:nth-child(even) { background: var(--mist); }
.single-content tbody tr:last-child td { border-bottom: 0; }

/* Dead Elementor lightbox anchors: degrade gracefully (no cursor trap). */
.single-content a[data-elementor-open-lightbox] { pointer-events: auto; }

.single-back {
	max-width: 68ch;
	margin: clamp(2rem, 4vw, 3rem) auto 0;
	width: 100%;
}

/* ===== Pagination (the_posts_pagination) ===== */
.blk .pagination { margin-top: clamp(2.5rem, 5vw, 3.5rem); }
.pagination .screen-reader-text {
	position: absolute;
	width: 1px;
	height: 1px;
	margin: -1px;
	padding: 0;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	border: 0;
}
.pagination .nav-links {
	display: flex;
	flex-wrap: wrap;
	gap: .5rem;
	justify-content: center;
	align-items: center;
}
.pagination .page-numbers {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 44px;
	height: 44px;
	padding: 0 .9rem;
	border-radius: var(--pill);
	border: 1px solid var(--line);
	background: #fff;
	color: var(--green-ink);
	font-weight: 800;
	font-size: .92rem;
	transition: transform .25s var(--ease), background .2s, border-color .2s, color .2s;
}
.pagination a.page-numbers:hover {
	transform: translateY(-2px);
	border-color: var(--green);
	color: var(--green-deep);
}
.pagination .page-numbers.current {
	background: var(--orange);
	border-color: var(--orange);
	color: #fff;
}
.pagination .page-numbers.dots {
	border-color: transparent;
	background: transparent;
}

/* ===== Search form ===== */
.bl-searchform {
	display: flex;
	gap: .6rem;
	flex-wrap: wrap;
	max-width: 620px;
}
.bl-search-field {
	flex: 1;
	min-width: 200px;
	padding: .85rem 1.1rem;
	border-radius: var(--pill);
	border: 1px solid var(--line);
	background: #fff;
	color: var(--green-ink);
	font-family: var(--f);
	font-size: 1rem;
	transition: border-color .2s;
}
.bl-search-field:focus { outline: none; border-color: var(--green); }
.bl-search-field::placeholder { color: var(--body); opacity: .6; }
.bl-search-submit { border: 0; }
.screen-reader-text {
	position: absolute;
	width: 1px;
	height: 1px;
	margin: -1px;
	padding: 0;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	border: 0;
}

/* ===== Search results list ===== */
.search-tools { margin-bottom: clamp(1.8rem, 4vw, 2.6rem); }
.search-results { list-style: none; margin: 0; padding: 0; display: grid; gap: 1rem; }
.search-result {
	background: #fff;
	border: 1px solid var(--line);
	border-radius: var(--r);
	padding: 1.4rem 1.6rem;
	transition: transform .3s var(--ease), box-shadow .3s;
}
.search-result:hover {
	transform: translateY(-4px);
	box-shadow: 0 20px 44px -28px rgba(18, 58, 24, .3);
}
.search-result-title {
	font-size: 1.25rem;
	color: var(--green-ink);
	margin: 0;
}
.search-result-link:hover .search-result-title { color: var(--orange-deep); }
.search-result-meta {
	margin: .4rem 0 .6rem;
	font-family: var(--mono);
	font-size: .78rem;
	font-weight: 600;
	letter-spacing: .04em;
	color: var(--body);
	opacity: .8;
}
.search-result-excerpt { color: var(--body); font-size: .95rem; }

/* ===== 404 ===== */
.error-404 { max-width: 640px; }
.error-404-lead { color: var(--body); font-size: 1.1rem; margin-bottom: 1.6rem; }
.error-404-search { margin-bottom: 1.8rem; }
.error-404-links { display: flex; flex-wrap: wrap; gap: .7rem; }

/* ===== Empty state ===== */
.content-none {
	background: #fff;
	border: 1px dashed var(--line);
	border-radius: var(--r);
	padding: clamp(2rem, 5vw, 3.2rem);
	text-align: center;
	color: var(--body);
	max-width: 640px;
	margin-inline: auto;
}
.content-none h2 {
	font-size: clamp(1.4rem, 1.2rem + 1vw, 1.9rem);
	color: var(--green-ink);
	margin-bottom: .7rem;
}
.content-none p { margin-bottom: 1.2rem; }
.content-none-search .bl-searchform { margin-inline: auto; justify-content: center; }

/* ============================================================
   Phase 3 — inner content pages (About, Commitments, How to
   Apply, Power Rates, Contact). Extends the same tokens.
   ============================================================ */

/* ===== Responsive video / oEmbed embed (16:9) ===== */
.bl-embed {
	position: relative;
	max-width: 860px;
	margin: clamp(1.8rem, 4vw, 2.6rem) auto 0;
	aspect-ratio: 16 / 9;
	border-radius: var(--r);
	overflow: hidden;
	border: 1px solid var(--line);
	background: var(--green-ink);
}
.bl-embed iframe {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	border: 0;
	display: block;
}

/* ===== People / leadership grid (About) ===== */
.people-group { margin-top: clamp(1.6rem, 3vw, 2.4rem); }
.people-org {
	font-size: 1.2rem;
	color: var(--green);
	margin-bottom: 1.1rem;
	padding-bottom: .6rem;
	border-bottom: 1px solid var(--line);
}
.people {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1rem;
}
.person {
	display: flex;
	align-items: center;
	gap: .9rem;
	background: #fff;
	border: 1px solid var(--line);
	border-radius: var(--r);
	padding: 1.1rem 1.2rem;
	transition: transform .3s var(--ease), box-shadow .3s;
}
.person:hover { transform: translateY(-4px); box-shadow: 0 20px 44px -28px rgba(18, 58, 24, .3); }
.person-avatar {
	flex: none;
	width: 48px;
	height: 48px;
	border-radius: 50%;
	background: var(--mist2);
	color: var(--green-deep);
	display: grid;
	place-items: center;
	font-family: var(--d);
	font-weight: 600;
	font-size: 1rem;
	letter-spacing: .02em;
}
.person-name { font-family: var(--d); font-weight: 600; color: var(--green-ink); font-size: 1rem; line-height: 1.2; }
.person-title { color: var(--body); font-size: .85rem; margin-top: .2rem; }

/* ===== Shared CTA message band (content pages) =====
   Left-aligned to match the homepage contact section; heading + lead sizing
   are inherited from home.css `.cta h2` / `.cta .lead` so both read as one. */
.cta-msg { max-width: 48ch; }
.cta-msg .row { display: flex; gap: 1rem; flex-wrap: wrap; }

/* ===== Commitments hotline card ===== */
.hotline-card { background: var(--mist); border-color: var(--mist2); }
.hotline-nums {
	margin-top: 1rem;
	display: flex;
	flex-direction: column;
	gap: .3rem;
	font-family: var(--mono);
	font-weight: 600;
}
.hotline-nums a { color: var(--orange-deep); font-size: 1.1rem; }
.hotline-nums span { color: var(--body); }

/* ===== How to Apply — requirement cards + checklists ===== */
.req-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 1.4rem;
	align-items: start;
}
.req-card {
	background: #fff;
	border: 1px solid var(--line);
	border-radius: var(--r);
	padding: 1.7rem 1.6rem;
}
.req-card h3 { font-size: 1.25rem; color: var(--green-ink); margin-bottom: 1rem; }
.req-note { color: var(--body); font-size: .92rem; margin-bottom: .9rem; }
.checklist { list-style: none; margin: 0; padding: 0; display: grid; gap: .7rem; }
.checklist li {
	position: relative;
	padding-left: 1.9rem;
	color: var(--body);
	font-size: .95rem;
	line-height: 1.45;
}
.checklist li::before {
	content: "";
	position: absolute;
	left: 0;
	top: .15rem;
	width: 20px;
	height: 20px;
	border-radius: 50%;
	background: var(--mist2) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%231E8F2C' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6 9 17l-5-5'/%3E%3C/svg%3E") center / 14px no-repeat;
}
.forms-card {
	margin-top: 1.4rem;
	background: var(--mist);
	border: 1px solid var(--line);
	border-radius: var(--r);
	padding: 1.7rem 1.6rem;
}
.forms-card h3 { font-size: 1.25rem; color: var(--green-ink); margin-bottom: .6rem; }
.forms-card p { color: var(--body); font-size: .95rem; margin-bottom: 1rem; }
.forms-list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: .6rem;
}
.forms-list li {
	background: #fff;
	border: 1px solid var(--line);
	border-radius: 12px;
	padding: .7rem 1rem;
	font-weight: 700;
	color: var(--green-ink);
	font-size: .92rem;
}

/* ===== Power Rates — accordion + tables + PDF links ===== */
.rates-head { max-width: 60ch; margin-bottom: clamp(1.4rem, 3vw, 2rem); }
.rates-head h2 { font-size: clamp(1.7rem, 1.3rem + 1.6vw, 2.4rem); color: var(--green-ink); }
.rates-head p { color: var(--body); margin-top: .6rem; }
.rates-head-sub { margin-top: clamp(2.6rem, 5vw, 3.6rem); }

.accordion { display: grid; gap: .8rem; }
.acc-item {
	background: #fff;
	border: 1px solid var(--line);
	border-radius: var(--r);
	overflow: hidden;
}
.acc-item[open] { box-shadow: 0 20px 44px -30px rgba(18, 58, 24, .3); }
.acc-summary {
	cursor: pointer;
	list-style: none;
	padding: 1.1rem 1.5rem;
	font-family: var(--d);
	font-weight: 600;
	font-size: 1.1rem;
	color: var(--green-ink);
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
}
.acc-summary::-webkit-details-marker { display: none; }
.acc-summary::after {
	content: "";
	flex: none;
	width: 22px;
	height: 22px;
	background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='22' height='22' viewBox='0 0 24 24' fill='none' stroke='%231E8F2C' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E") center / contain no-repeat;
	transition: transform .25s var(--ease);
}
.acc-item[open] .acc-summary::after { transform: rotate(180deg); }
.acc-summary:hover { color: var(--orange-deep); }
.acc-summary:focus-visible { outline: 2px solid var(--green); outline-offset: -2px; }
.acc-body { padding: 0 1.5rem 1.5rem; }

.table-scroll {
	overflow-x: auto;
	-webkit-overflow-scrolling: touch;
	border: 1px solid var(--line);
	border-radius: 12px;
}
.rates-table {
	width: 100%;
	border-collapse: collapse;
	font-size: .9rem;
	min-width: 760px;
}
.rates-table caption { text-align: left; }
.rates-table th,
.rates-table td {
	padding: .65rem .8rem;
	text-align: right;
	border-bottom: 1px solid var(--line);
	white-space: nowrap;
}
.rates-table thead th {
	background: var(--green);
	color: #fff;
	font-family: var(--d);
	font-weight: 600;
	text-align: right;
	position: sticky;
	top: 0;
}
.rates-table thead th:first-child,
.rates-table tbody th { text-align: left; }
.rates-table tbody th {
	background: var(--mist);
	color: var(--green-ink);
	font-family: var(--d);
	font-weight: 600;
}
.rates-table tbody tr:last-child th,
.rates-table tbody tr:last-child td { border-bottom: 0; }
.rates-table td { font-family: var(--mono); color: var(--body); }

.acc-links { margin-top: 1rem; }
.pdf-list { list-style: none; margin: .4rem 0 0; padding: 0; display: grid; gap: .5rem; }
.pdf-link {
	display: inline-flex;
	align-items: center;
	gap: .5rem;
	color: var(--green-deep);
	font-weight: 700;
	font-size: .92rem;
	text-decoration: underline;
	text-underline-offset: 3px;
	text-decoration-color: rgba(30, 143, 44, .4);
}
.pdf-link::before {
	content: "";
	flex: none;
	width: 18px;
	height: 18px;
	background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 24 24' fill='none' stroke='%23CF5419' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M14 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V8Z'/%3E%3Cpath d='M14 2v6h6'/%3E%3C/svg%3E") center / contain no-repeat;
}
.pdf-link:hover { color: var(--orange-deep); text-decoration-color: var(--orange); }

/* ===== Contact page ===== */
.contact-split { align-items: start; }
.contact-info-col h2 { color: #fff; font-size: clamp(1.6rem, 1.3rem + 1.2vw, 2rem); margin-bottom: 1.2rem; }
.contact-list { list-style: none; margin: 0 0 1.6rem; padding: 0; display: grid; gap: 1rem; }
.contact-list li { display: flex; flex-direction: column; gap: .15rem; }
.ci-label {
	font-family: var(--mono);
	font-size: .72rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: .08em;
	color: rgba(255, 255, 255, .7);
}
.contact-list a,
.contact-list span:not(.ci-label) { color: #fff; font-weight: 700; font-size: 1.05rem; }
.contact-list a:hover { color: #FFD27A; }
.contact-map { height: 300px; }

/* ===== Responsive ===== */
@media (max-width: 960px) {
	.people { grid-template-columns: repeat(2, 1fr); }
	.req-grid { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
	.single-featured.is-poster img { max-width: 100%; }
	.error-404-links .btn { flex: 1 1 auto; justify-content: center; }
	.people { grid-template-columns: 1fr; }
	.forms-list { grid-template-columns: 1fr; }
	.acc-summary { font-size: 1rem; padding: 1rem 1.1rem; }
	.acc-body { padding: 0 1.1rem 1.2rem; }
}
