/* ============================================================
   SAN ANDREAS STATE POLICE — Shared Stylesheet
   Last Chance Roleplay | sasp.lcrpp.net
   ============================================================ */

/* --- Reset & Base ----------------------------------------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy:       #003087;
  --navy-dark:  #00205c;
  --navy-mid:   #003fa8;
  --gold:       #c9a227;
  --gold-light: #e0b836;
  --gold-pale:  #fdf3d0;
  --white:      #ffffff;
  --off-white:  #f4f4f2;
  --gray-light: #e8e8e4;
  --gray-mid:   #c4c4be;
  --gray-text:  #555550;
  --body-text:  #222220;
  --link:       #003087;
  --link-hover: #c9a227;
  --red-alert:  #8b1a1a;

  --font-serif: Georgia, 'Times New Roman', Times, serif;
  --font-sans:  'Arial', 'Helvetica Neue', Helvetica, sans-serif;
  --font-mono:  'Courier New', Courier, monospace;

  --max-w: 1160px;
  --sidebar-w: 240px;
}

html { font-size: 16px; scroll-behavior: smooth; }

body {
  font-family: var(--font-sans);
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--body-text);
  background: var(--white);
}

a { color: var(--link); text-decoration: underline; }
a:hover { color: var(--link-hover); }

h1, h2, h3, h4, h5 {
  font-family: var(--font-serif);
  line-height: 1.25;
  color: var(--navy);
}

img { max-width: 100%; display: block; }
ul { list-style: disc; padding-left: 1.4em; }
ol { padding-left: 1.4em; }

/* --- Utility Bar ------------------------------------------ */
.util-bar {
  background: var(--navy-dark);
  color: #aab4c8;
  font-size: 0.72rem;
  padding: 4px 0;
  border-bottom: 2px solid var(--gold);
}
.util-bar .inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 4px;
}
.util-bar .official-notice {
  display: flex;
  align-items: center;
  gap: 6px;
  font-weight: 600;
  color: #ccd4e4;
  letter-spacing: 0.02em;
}
.util-bar .official-notice .lock-icon {
  display: inline-block;
  width: 12px; height: 14px;
  background: var(--gold);
  clip-path: polygon(25% 45%, 75% 45%, 75% 100%, 25% 100%);
  position: relative;
}
.util-bar .official-notice::before {
  content: '🔒';
  font-size: 0.75rem;
}
.util-bar .util-links { display: flex; gap: 16px; }
.util-bar .util-links a {
  color: #aab4c8;
  text-decoration: none;
  font-size: 0.72rem;
}
.util-bar .util-links a:hover { color: var(--gold-light); text-decoration: underline; }

/* --- Header ----------------------------------------------- */
.site-header {
  background: var(--navy);
  padding: 18px 0 14px;
  border-bottom: 4px solid var(--gold);
}
.site-header .inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 16px;
  display: flex;
  align-items: center;
  gap: 20px;
}
.agency-seal {
  flex-shrink: 0;
  width: 84px; height: 84px;
  border-radius: 50%;
  border: 3px solid var(--gold);
  background: var(--navy-dark);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  box-shadow: 0 0 0 2px var(--gold-light), inset 0 0 16px rgba(0,0,0,0.4);
}
.agency-seal .seal-star {
  font-size: 2rem;
  line-height: 1;
  filter: drop-shadow(0 0 3px rgba(184,150,46,0.8));
}
.agency-seal .seal-initials {
  font-family: var(--font-serif);
  font-size: 0.6rem;
  font-weight: bold;
  color: var(--gold-light);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-top: 2px;
}
.agency-seal .seal-ring {
  position: absolute;
  inset: 3px;
  border-radius: 50%;
  border: 1px solid rgba(184,150,46,0.5);
}
.header-text { flex: 1; }
.header-text .agency-name {
  font-family: var(--font-serif);
  font-size: 1.65rem;
  font-weight: bold;
  color: var(--white);
  letter-spacing: 0.01em;
  line-height: 1.1;
  text-shadow: 0 1px 3px rgba(0,0,0,0.5);
}
.header-text .agency-name span {
  color: var(--gold-light);
}
.header-text .state-line {
  font-size: 0.72rem;
  color: #8a9ab8;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-top: 2px;
}
.header-text .tagline {
  font-family: var(--font-serif);
  font-size: 0.85rem;
  color: var(--gold);
  font-style: italic;
  margin-top: 5px;
  letter-spacing: 0.03em;
}
.header-search {
  margin-left: auto;
  display: flex;
  gap: 0;
}
.header-search input {
  padding: 6px 10px;
  border: 1px solid var(--gold);
  background: rgba(255,255,255,0.1);
  color: var(--white);
  font-size: 0.8rem;
  width: 180px;
  outline: none;
}
.header-search input::placeholder { color: #8a9ab8; }
.header-search button {
  padding: 6px 12px;
  background: var(--gold);
  border: 1px solid var(--gold-light);
  color: var(--navy-dark);
  font-size: 0.8rem;
  font-weight: bold;
  cursor: pointer;
  white-space: nowrap;
}
.header-search button:hover { background: var(--gold-light); }

/* --- Primary Navigation ----------------------------------- */
.primary-nav {
  background: var(--navy-mid);
  border-bottom: 3px solid var(--gold);
  position: sticky;
  top: 0;
  z-index: 100;
}
.primary-nav .inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 16px;
  display: flex;
  align-items: stretch;
}
.primary-nav a {
  display: flex;
  align-items: center;
  padding: 0 14px;
  height: 44px;
  color: #ccd4e4;
  text-decoration: none;
  font-size: 0.82rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-right: 1px solid rgba(255,255,255,0.07);
  transition: background 0.15s, color 0.15s;
  white-space: nowrap;
}
.primary-nav a:first-child { border-left: 1px solid rgba(255,255,255,0.07); }
.primary-nav a:hover,
.primary-nav a.active {
  background: var(--navy-dark);
  color: var(--gold-light);
}
.primary-nav .emergency-link {
  margin-left: auto;
  background: var(--red-alert);
  color: var(--white) !important;
  border-left: 1px solid rgba(255,255,255,0.2);
}
.primary-nav .emergency-link:hover { background: #a52020 !important; }

/* --- Page Layout ------------------------------------------ */
.page-wrapper {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 16px;
}

/* Two-column: content + sidebar */
.layout-with-sidebar {
  display: grid;
  grid-template-columns: 1fr var(--sidebar-w);
  gap: 24px;
  padding: 24px 0 32px;
}
.layout-with-sidebar .main-content { min-width: 0; }

/* Full-width content area */
.layout-full {
  padding: 24px 0 32px;
}

/* --- Hero Banner ------------------------------------------ */
.hero-banner {
  position: relative;
  overflow: hidden;
  min-height: 340px;
  display: flex;
  align-items: flex-end;
  border-bottom: 4px solid var(--gold);
  background: var(--navy-dark);
}
.hero-banner .hero-photo {
  position: absolute;
  inset: 0;
  object-fit: cover;
  width: 100%;
  height: 100%;
  display: block;
}
.hero-banner .hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(0,32,92,0.82) 0%, rgba(0,32,92,0.55) 55%, rgba(0,32,92,0.18) 100%);
}
.hero-banner .hero-overlay-fallback {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--navy-dark) 0%, #003580 60%, #004096 100%);
}
.hero-banner .inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 40px 16px 36px;
  position: relative;
  z-index: 1;
  width: 100%;
}
.hero-text h1 {
  font-family: var(--font-serif);
  font-size: 2.1rem;
  color: var(--white);
  text-shadow: 0 2px 8px rgba(0,0,0,0.7);
  margin-bottom: 12px;
  max-width: 580px;
}
.hero-text h1 em {
  font-style: normal;
  color: var(--gold-light);
}
.hero-text p {
  color: #c8d8f0;
  font-size: 0.96rem;
  max-width: 520px;
  line-height: 1.75;
  text-shadow: 0 1px 4px rgba(0,0,0,0.6);
}
.hero-badge-area {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.hero-badge {
  width: 120px; height: 120px;
  border-radius: 50%;
  border: 3px solid var(--gold);
  background: radial-gradient(circle at 40% 35%, #003580 0%, var(--navy-dark) 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 0 2px var(--gold-light), 0 4px 20px rgba(0,0,0,0.5);
}
.hero-badge .badge-star { font-size: 3rem; line-height: 1; }
.hero-badge .badge-text {
  font-size: 0.55rem;
  color: var(--gold-light);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-family: var(--font-serif);
  text-align: center;
}
.hero-stripe {
  position: absolute;
  right: 0; top: 0; bottom: 0;
  width: 8px;
  background: var(--gold);
  opacity: 0.7;
}
.hero-banner .alert-bar {
  background: rgba(139,26,26,0.88);
  border: 1px solid #c84040;
  color: var(--white);
  padding: 8px 14px;
  font-size: 0.8rem;
  display: flex;
  align-items: center;
  gap: 10px;
  border-radius: 2px;
  margin-top: 20px;
  max-width: 620px;
}
.hero-banner .alert-bar strong { color: #ffcccc; margin-right: 4px; }

/* --- Quick Links Tiles ------------------------------------ */
.quick-links-section {
  background: var(--navy);
  padding: 20px 0;
  border-bottom: 3px solid var(--gold);
}
.quick-links-section h2 {
  color: var(--gold-light);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 12px;
  font-family: var(--font-sans);
  font-weight: bold;
}
.quick-links-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}
.quick-link-tile {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(184,150,46,0.3);
  padding: 16px 14px;
  text-decoration: none;
  color: var(--white);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  transition: background 0.15s, border-color 0.15s;
}
.quick-link-tile:hover {
  background: rgba(184,150,46,0.15);
  border-color: var(--gold);
  color: var(--gold-light);
}
.quick-link-tile .tile-icon { font-size: 1.5rem; }
.quick-link-tile .tile-label {
  font-size: 0.82rem;
  font-weight: bold;
  letter-spacing: 0.02em;
  line-height: 1.3;
  text-transform: uppercase;
  font-family: var(--font-sans);
}
.quick-link-tile .tile-arrow {
  font-size: 0.75rem;
  color: var(--gold);
  margin-top: auto;
}

/* --- Section Headings (Inline) ---------------------------- */
.section-heading {
  border-bottom: 2px solid var(--navy);
  padding-bottom: 6px;
  margin-bottom: 16px;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
}
.section-heading h2 {
  font-size: 1.15rem;
  color: var(--navy);
}
.section-heading .see-all {
  font-size: 0.75rem;
  color: var(--gold);
  text-decoration: none;
  font-family: var(--font-sans);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: bold;
}
.section-heading .see-all:hover { text-decoration: underline; }

/* --- News / Press Release List ---------------------------- */
.news-list { list-style: none; padding: 0; }
.news-list li {
  padding: 12px 0;
  border-bottom: 1px solid var(--gray-light);
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0 12px;
}
.news-list li:last-child { border-bottom: none; }
.news-list .news-date {
  font-size: 0.72rem;
  color: var(--gray-text);
  white-space: nowrap;
  font-family: var(--font-mono);
  padding-top: 2px;
}
.news-list .news-tag {
  display: inline-block;
  font-size: 0.65rem;
  background: var(--navy);
  color: var(--white);
  padding: 1px 6px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 2px;
  font-family: var(--font-sans);
}
.news-list .news-tag.tag-alert { background: var(--red-alert); }
.news-list .news-tag.tag-update { background: #3a5f3a; }
.news-list .news-title {
  font-family: var(--font-serif);
  font-size: 0.92rem;
  color: var(--navy);
  font-weight: bold;
  display: block;
  margin-bottom: 3px;
}
.news-list .news-excerpt {
  font-size: 0.8rem;
  color: var(--gray-text);
  line-height: 1.5;
}

/* --- Sidebar --------------------------------------------- */
.sidebar { font-size: 0.84rem; }
.sidebar-block {
  border: 1px solid var(--gray-mid);
  margin-bottom: 18px;
}
.sidebar-block .block-header {
  background: var(--navy);
  color: var(--white);
  padding: 8px 12px;
  font-size: 0.78rem;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-family: var(--font-sans);
  display: flex;
  align-items: center;
  gap: 6px;
}
.sidebar-block .block-body { padding: 10px 12px; }
.sidebar-block .block-body p { margin-bottom: 8px; }
.sidebar-block .block-body p:last-child { margin-bottom: 0; }
.sidebar-nav { list-style: none; padding: 0; }
.sidebar-nav li { border-bottom: 1px solid var(--gray-light); }
.sidebar-nav li:last-child { border-bottom: none; }
.sidebar-nav a {
  display: block;
  padding: 7px 12px;
  color: var(--navy);
  text-decoration: none;
  font-size: 0.82rem;
  transition: background 0.1s;
}
.sidebar-nav a:hover { background: var(--gold-pale); color: var(--navy); }
.sidebar-nav a.active {
  background: var(--navy);
  color: var(--gold-light);
  font-weight: bold;
}
.sidebar-contact-line {
  display: flex;
  gap: 6px;
  margin-bottom: 6px;
  align-items: flex-start;
  font-size: 0.82rem;
}
.sidebar-contact-line .label {
  font-weight: bold;
  min-width: 50px;
  color: var(--navy);
}

/* --- Breadcrumb ------------------------------------------ */
.breadcrumb {
  background: var(--off-white);
  border-bottom: 1px solid var(--gray-mid);
  font-size: 0.75rem;
  padding: 7px 0;
}
.breadcrumb .inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 16px;
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--gray-text);
}
.breadcrumb a { color: var(--navy); text-decoration: none; }
.breadcrumb a:hover { text-decoration: underline; }
.breadcrumb .sep { color: var(--gray-mid); }
.breadcrumb .current { color: var(--gray-text); font-weight: bold; }

/* --- Page Title Banner ------------------------------------ */
.page-title-bar {
  background: var(--navy-mid);
  border-bottom: 3px solid var(--gold);
  padding: 18px 0;
}
.page-title-bar .inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 16px;
}
.page-title-bar h1 {
  font-size: 1.5rem;
  color: var(--white);
  font-family: var(--font-serif);
}
.page-title-bar .subtitle {
  color: #8a9ab8;
  font-size: 0.82rem;
  margin-top: 4px;
}

/* --- Info Table ------------------------------------------ */
.info-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.84rem;
  margin-bottom: 20px;
}
.info-table th {
  background: var(--navy);
  color: var(--white);
  padding: 8px 10px;
  text-align: left;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  border-right: 1px solid rgba(255,255,255,0.1);
}
.info-table td {
  padding: 7px 10px;
  border-bottom: 1px solid var(--gray-light);
  border-right: 1px solid var(--gray-light);
  vertical-align: top;
}
.info-table tr:nth-child(even) td { background: var(--off-white); }
.info-table tr:hover td { background: var(--gold-pale); }
.info-table td:last-child, .info-table th:last-child { border-right: none; }

/* --- Division Cards --------------------------------------- */
.divisions-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 24px;
}
.division-card {
  border: 1px solid var(--gray-mid);
  background: var(--white);
  transition: box-shadow 0.15s;
}
.division-card:hover { box-shadow: 0 2px 12px rgba(27,42,74,0.18); }
.division-card .card-header {
  background: var(--navy);
  padding: 12px 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  border-bottom: 2px solid var(--gold);
}
.division-card .card-header .div-icon { font-size: 1.4rem; }
.division-card .card-header h3 {
  color: var(--white);
  font-size: 0.9rem;
  font-family: var(--font-sans);
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.division-card .card-body { padding: 12px 14px; }
.division-card .card-body p { font-size: 0.82rem; color: var(--gray-text); margin-bottom: 10px; }
.division-card .card-body .more-link {
  font-size: 0.78rem;
  color: var(--navy);
  font-weight: bold;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.division-card .card-body .more-link:hover { color: var(--gold); }

/* --- Leadership Bio Block --------------------------------- */
.leadership-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 24px;
}
.bio-card {
  border: 1px solid var(--gray-mid);
  display: flex;
  gap: 0;
  background: var(--white);
}
.bio-card .bio-photo {
  width: 90px;
  flex-shrink: 0;
  background: linear-gradient(160deg, var(--navy-mid) 0%, var(--navy-dark) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  color: rgba(255,255,255,0.15);
  position: relative;
  overflow: hidden;
}
.bio-card .bio-photo::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: var(--gold);
}
.bio-card .bio-info {
  padding: 12px 14px;
  flex: 1;
}
.bio-card .bio-rank {
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gold);
  font-weight: bold;
  font-family: var(--font-sans);
  margin-bottom: 2px;
}
.bio-card .bio-name {
  font-family: var(--font-serif);
  font-size: 1rem;
  color: var(--navy);
  margin-bottom: 6px;
}
.bio-card .bio-desc {
  font-size: 0.79rem;
  color: var(--gray-text);
  line-height: 1.5;
}

/* --- Careers Section -------------------------------------- */
.req-list {
  list-style: none;
  padding: 0;
  margin-bottom: 20px;
}
.req-list li {
  padding: 8px 0 8px 24px;
  border-bottom: 1px solid var(--gray-light);
  position: relative;
  font-size: 0.87rem;
}
.req-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #3a5f3a;
  font-weight: bold;
  font-size: 0.9rem;
}
.req-list li:last-child { border-bottom: none; }

.cta-box {
  background: var(--navy);
  border: 2px solid var(--gold);
  padding: 24px;
  text-align: center;
  margin: 24px 0;
}
.cta-box h3 {
  color: var(--white);
  font-size: 1.2rem;
  margin-bottom: 8px;
}
.cta-box p { color: #8a9ab8; font-size: 0.85rem; margin-bottom: 16px; }
.btn-primary {
  display: inline-block;
  background: var(--gold);
  color: var(--navy-dark);
  padding: 12px 28px;
  font-weight: bold;
  font-size: 0.88rem;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border: 2px solid var(--gold-light);
  transition: background 0.15s;
}
.btn-primary:hover { background: var(--gold-light); color: var(--navy-dark); }
.btn-secondary {
  display: inline-block;
  background: transparent;
  color: var(--navy);
  padding: 8px 18px;
  font-weight: bold;
  font-size: 0.82rem;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  border: 2px solid var(--navy);
  transition: background 0.15s;
}
.btn-secondary:hover { background: var(--navy); color: var(--white); }

/* --- Info Box / Notice ------------------------------------ */
.info-box {
  border-left: 4px solid var(--navy);
  background: var(--off-white);
  padding: 12px 14px;
  margin-bottom: 16px;
  font-size: 0.84rem;
}
.info-box.gold { border-color: var(--gold); background: var(--gold-pale); }
.info-box.red  { border-color: var(--red-alert); background: #fff0f0; }
.info-box p { margin-bottom: 6px; }
.info-box p:last-child { margin-bottom: 0; }
.info-box strong { color: var(--navy); }

/* --- Content typography ----------------------------------- */
.content-body h2 {
  font-size: 1.2rem;
  border-bottom: 2px solid var(--navy);
  padding-bottom: 5px;
  margin: 24px 0 12px;
}
.content-body h2:first-child { margin-top: 0; }
.content-body h3 { font-size: 1rem; margin: 16px 0 8px; color: var(--navy); }
.content-body p { margin-bottom: 12px; font-size: 0.88rem; line-height: 1.7; }
.content-body ul { margin-bottom: 12px; font-size: 0.88rem; }
.content-body ul li { margin-bottom: 4px; }
.content-body .org-chart-stub {
  border: 1px dashed var(--gray-mid);
  background: var(--off-white);
  padding: 24px;
  text-align: center;
  color: var(--gray-text);
  font-size: 0.8rem;
  font-style: italic;
  margin: 12px 0;
}

/* --- Press Release Page ----------------------------------- */
.pr-list { list-style: none; padding: 0; }
.pr-item {
  border-bottom: 1px solid var(--gray-light);
  padding: 16px 0;
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 14px;
}
.pr-item:last-child { border-bottom: none; }
.pr-date-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding-top: 2px;
}
.pr-date-box {
  background: var(--navy);
  color: var(--white);
  padding: 6px 10px;
  text-align: center;
  min-width: 70px;
}
.pr-date-box .month {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gold-light);
  display: block;
}
.pr-date-box .day { font-size: 1.5rem; font-family: var(--font-serif); font-weight: bold; line-height: 1; }
.pr-date-box .year { font-size: 0.65rem; color: #8a9ab8; display: block; }
.pr-content .pr-category {
  font-size: 0.65rem;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  background: var(--navy);
  color: var(--white);
  padding: 1px 6px;
  display: inline-block;
  margin-bottom: 4px;
}
.pr-content .pr-title {
  font-family: var(--font-serif);
  font-size: 1rem;
  color: var(--navy);
  font-weight: bold;
  display: block;
  text-decoration: none;
  margin-bottom: 6px;
  line-height: 1.3;
}
.pr-content .pr-title:hover { color: var(--gold); }
.pr-content .pr-blurb { font-size: 0.82rem; color: var(--gray-text); line-height: 1.55; }
.pr-content .pr-read-more {
  display: inline-block;
  margin-top: 6px;
  font-size: 0.76rem;
  color: var(--navy);
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.pr-content .pr-read-more:hover { color: var(--gold); }

/* --- Footer ---------------------------------------------- */
.site-footer {
  background: var(--navy-dark);
  color: #8a9ab8;
  border-top: 3px solid var(--gold);
  font-size: 0.78rem;
}
.footer-upper {
  border-bottom: 1px solid rgba(255,255,255,0.08);
  padding: 28px 0 20px;
}
.footer-upper .inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 16px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 24px;
}
.footer-col h4 {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gold-light);
  margin-bottom: 10px;
  padding-bottom: 6px;
  border-bottom: 1px solid rgba(184,150,46,0.3);
}
.footer-col p { line-height: 1.6; margin-bottom: 6px; }
.footer-col ul { list-style: none; padding: 0; }
.footer-col ul li { margin-bottom: 5px; }
.footer-col ul a { color: #8a9ab8; text-decoration: none; }
.footer-col ul a:hover { color: var(--gold-light); text-decoration: underline; }
.footer-col .agency-seal-sm {
  width: 48px; height: 48px;
  border-radius: 50%;
  border: 2px solid var(--gold);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem;
  background: var(--navy-mid);
  margin-bottom: 10px;
}
.footer-lower {
  padding: 14px 0;
}
.footer-lower .inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}
.footer-lower .copyright { color: #6a7a98; }
.footer-lower .links { display: flex; gap: 14px; }
.footer-lower .links a { color: #6a7a98; text-decoration: none; }
.footer-lower .links a:hover { color: var(--gold-light); text-decoration: underline; }
.footer-rp-notice {
  background: rgba(139,26,26,0.2);
  border-top: 1px solid rgba(139,26,26,0.4);
  text-align: center;
  padding: 6px 16px;
  font-size: 0.68rem;
  color: #8a7a7a;
  letter-spacing: 0.03em;
}

/* --- Misc helpers ----------------------------------------- */
.mb0  { margin-bottom: 0 !important; }
.mb8  { margin-bottom: 8px !important; }
.mb16 { margin-bottom: 16px !important; }
.mb24 { margin-bottom: 24px !important; }
.mt16 { margin-top: 16px !important; }
.text-center { text-align: center; }
.text-small  { font-size: 0.78rem; color: var(--gray-text); }
.text-gold   { color: var(--gold); }
.divider { border: none; border-top: 1px solid var(--gray-light); margin: 20px 0; }

/* --- Stats bar ------------------------------------------- */
.stats-bar {
  background: var(--off-white);
  border-bottom: 1px solid var(--gray-mid);
  border-top: 1px solid var(--gray-mid);
  padding: 14px 0;
}
.stats-bar .inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 16px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.stat-item {
  text-align: center;
  padding: 0 12px;
  border-right: 1px solid var(--gray-mid);
}
.stat-item:last-child { border-right: none; }
.stat-item .stat-number {
  font-family: var(--font-serif);
  font-size: 1.7rem;
  font-weight: bold;
  color: var(--navy);
  line-height: 1;
  display: block;
}
.stat-item .stat-label {
  font-size: 0.7rem;
  color: var(--gray-text);
  text-transform: uppercase;
  letter-spacing: 0.07em;
  margin-top: 3px;
  display: block;
}

/* --- Tag / Badge pill ------------------------------------- */
.status-pill {
  display: inline-block;
  padding: 2px 8px;
  font-size: 0.68rem;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  border-radius: 2px;
}
.pill-active   { background: #dff0d8; color: #3a5f3a; border: 1px solid #a3d48a; }
.pill-inactive { background: var(--gray-light); color: var(--gray-text); border: 1px solid var(--gray-mid); }
.pill-urgent   { background: #f9dede; color: var(--red-alert); border: 1px solid #e8a0a0; }

/* --- Mobile ≤ 768px --------------------------------------- */
@media (max-width: 768px) {
  .layout-with-sidebar { grid-template-columns: 1fr; }
  .quick-links-grid { grid-template-columns: repeat(2, 1fr); }
  .divisions-grid { grid-template-columns: repeat(2, 1fr); }
  .leadership-grid { grid-template-columns: 1fr; }
  .footer-upper .inner { grid-template-columns: 1fr 1fr; }
  .stats-bar .inner { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .stat-item { border-right: none; border-bottom: 1px solid var(--gray-mid); padding-bottom: 10px; }
  .hero-banner .inner { grid-template-columns: 1fr; }
  .hero-badge-area { display: none; }
  .primary-nav .inner { flex-wrap: wrap; }
  .primary-nav a { height: 36px; padding: 0 10px; font-size: 0.75rem; }
  .pr-item { grid-template-columns: 1fr; }
  .pr-date-col { flex-direction: row; align-items: center; gap: 10px; }
}
