

body { outline: 6px solid red; }


/* =========================
   Hands Off News — Design Variables
   ========================= */

:root {
  /* Color palette */
  --page-bg: #f0f0f0;
  --panel-bg: #ffffff;
  --text: #000000;
  --muted: #777777;
  --link: #000099;
  --link-hover: #804000;

  /* Layout */
  --container: 840px;

  /* Vertical rhythm */
  --space-1: 6px;
  --space-2: 10px;
  --space-3: 14px;
  --space-4: 18px;
  --space-5: 24px;
  --space-6: 32px;

  /* Top navigation (menu) */
  --menu-font-size: 20px;
  --menu-font-weight: 500;
  --menu-text-color: #000000;
  --menu-hover-color: #804000;
  --menu-active-color: #000099;
}



/* =========================
   Hands Off News — styles.css
   Clean baseline (single source of truth)
   ========================= */

/* ===== Base / Global ===== */
*,
*::before,
*::after {
  box-sizing: border-box;
}

:root {
  --page-bg: #f0f0f0;
  --panel-bg: #ffffff;
  --text: #000000;
  --muted: #777777;
  --link: #000099;
  --link-hover: #804000;

  --container: 840px;

  /* Vertical rhythm */
  --space-1: 6px;
  --space-2: 10px;
  --space-3: 14px;
  --space-4: 18px;
  --space-5: 24px;
  --space-6: 32px;
}

body {
  margin: 0;
  background: var(--page-bg);
  color: var(--text);
  font-family: Roboto, "Helvetica Neue", Helvetica, Arial, sans-serif;
  line-height: 1.5;
}

/* Make images responsive */
img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Utility: accessible hidden text */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ===== Layout ===== */
.site-container {
  max-width: var(--container);
  width: 100%;
  margin: 0 auto;
  background: var(--panel-bg);
  padding: var(--space-5);
}

/* ===== Header ===== */
.site-header .site-container {
  text-align: center;
}

.edition {
  font-size: 16px;
  margin: 0 0 var(--space-2) 0;
}

.brand {
  display: inline-block;
  text-decoration: none;
}

.banner {
  margin: 0 auto var(--space-2) auto;
}

/* ===== Primary Nav ===== */
.topnav {
  list-style: none;
  margin: 0;
  padding: 0;

  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px 20px;

  /* Controls spacing between banner and next section */
  margin-top: var(--space-2);
}

.topnav a {
  color: var(--text);
  font-size: 18px;
  font-weight: 600;
  text-decoration: none;
}

.topnav a:hover {
  color: #cc0000;
  text-decoration: none;
}

.topnav a:visited {
  text-decoration: none;
}

.topnav a[aria-current="page"] {
  color: #cc0000;
  font-weight: 700;
  text-decoration: none;
}

/* ===== Main Content ===== */
.site-main .site-container {
  text-align: left;
}

.section-title {
  font-size: 34px;
  font-weight: 700;
  color: #999999;

  /* This is the key spacing controlling "menu bar" → "Front Page" distance */
  margin: var(--space-3) 0 var(--space-2) 0;
  text-align: center;
}

.story {
  margin: 0;
  padding: 0;
}

.story-title {
  font-size: 25px;
  margin: 0 0 var(--space-1) 0;
}

.story-title a {
  color: inherit;
  text-decoration: none;
}



.story-dek {
  font-size: 20px;
  line-height: 1.5;
  margin: 0 0 var(--space-2) 0;
}

.story-meta {
  margin: 0 0 var(--space-4) 0;
}

.story-readmore {
  font-weight: 400;
  color: #c48b03;
  text-decoration: none;
}

.story-readmore:hover {
  color: #c48b03;
}

/* ===== Footer ===== */
.site-footer {
  margin-top: 0;
}

/* black strip stays full width, but content stays centered */
.site-footer .site-container {
  background: #000000;
  padding: var(--space-1);
}

.footer-nav-image {
  display: block;
  max-width: 100%;
  height: auto;
}

/* Optional text links fallback */
.footer-links {
  margin-top: var(--space-2);
  display: flex;
  flex-wrap: wrap;
  gap: 10px 14px;
}

.footer-links a {
  color: #ffffff;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
}

.footer-links a:hover {
  text-decoration: underline;
}

/* ===== Mobile adjustments ===== */
@media (max-width: 600px) {
  .site-container {
    padding: var(--space-3);
  }

  .banner {
    max-height: 260px;
    object-fit: cover;
  }

  .section-title {
    font-size: 28px;
  }

  .topnav a {
    font-size: 16px;
  }
}




/* ===== Front Page spacing tweak ===== */
/* Adjust the space between the menu bar and the "Front Page" title */

.site-main .section-title {
  margin-top: 1px;  /* try var(--space-1), --space-2, or a px value */
}



/* TEMP TEST: force menu size */
.site-header nav.topnav a {
  font-size: var(--menu-font-size) !important;
}



/* ===== FORCE TOP MENU LINK COLOR ===== */
.site-header nav.topnav a {
  color: #c48b03;
}



/* ===== READ MORE LINK ===== */
.story-readmore {
  color: #c48b03;            /* change color if you like */
  font-size: 16px;   /* UNBOLD */
}



/* ===== CENTER FOOTER NAV IMAGE ===== */
.footer-nav-image {
  display: block;
  margin-left: auto;
  margin-right: auto;
}



/* ===== MOBILE TYPOGRAPHY TUNING ===== */
@media (max-width: 600px) {

  /* Story title (headline) */
  .story-title {
    font-size: 1.15rem;   /* smaller headline for phones */
    line-height: 1.25;
  }

  /* Story dek (summary text) */
  .story-dek {
    font-size: 0.90rem;   /* easier reading on small screens */
    line-height: 1.45;
  }


/* ===== FOOTER IMAGE SWAP: DESKTOP vs MOBILE ===== */

/* Desktop default (already handled by HTML src) */
.footer-nav-image {
  content: url("img/footer-list-2.png");
}

/* Mobile override */
@media (max-width: 600px) {
  .footer-nav-image {
    content: url("img/footer-list-3.png");
  }
}



/* =========================
   Hands Off News — Contact Form
   ========================= */

.hon-form {
  margin-top: var(--space-4);
  max-width: 680px;
}

.hon-field {
  margin-bottom: var(--space-4);
}

.hon-label {
  display: block;
  margin-bottom: var(--space-2);
  font-weight: 600;
}

.hon-input,
.hon-textarea {
  width: 100%;
  padding: 12px 12px;
  border: 1px solid #cfcfcf;
  border-radius: 6px;
  font: inherit;
  color: var(--text);
  background: #fff;
}

.hon-textarea {
  resize: vertical;
  min-height: 140px;
}

.hon-input:focus,
.hon-textarea:focus {
  outline: 3px solid rgba(0, 0, 153, 0.18);
  border-color: var(--link);
}

.hon-button {
  display: inline-block;
  padding: 12px 16px;
  border: 1px solid #000;
  border-radius: 6px;
  background: #fff;
  color: var(--text);
  font: inherit;
  font-weight: 600;
  cursor: pointer;
}

.hon-button:hover {
  color: var(--link-hover);
  border-color: var(--link-hover);
}

.hon-button:active {
  transform: translateY(1px);
}

.hon-privacy {
  margin: var(--space-3) 0 0;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.5;
}

.hon-fallback {
  margin: var(--space-4) 0 0;
  color: var(--muted);
}

.hon-fallback a {
  color: var(--link);
}

.hon-fallback a:hover {
  color: var(--link-hover);
}

/* Honeypot hidden */
.hon-hp {
  display: none !important;
}




/* =========================
   Hands Off News — Contact Form
   ========================= */

.hon-form {
  margin-top: var(--space-4);
  max-width: 680px;
}

.hon-field {
  margin-bottom: var(--space-4);
}

.hon-label {
  display: block;
  margin-bottom: var(--space-2);
  font-weight: 600;
}

.hon-input,
.hon-textarea {
  width: 100%;
  padding: 12px 12px;
  border: 1px solid #cfcfcf;
  border-radius: 6px;
  font: inherit;
  color: var(--text);
  background: #fff;
}

.hon-textarea {
  resize: vertical;
  min-height: 140px;
}

.hon-input:focus,
.hon-textarea:focus {
  outline: 3px solid rgba(0, 0, 153, 0.18);
  border-color: var(--link);
}

.hon-button {
  display: inline-block;
  padding: 12px 16px;
  border: 1px solid #000;
  border-radius: 6px;
  background: #fff;
  color: var(--text);
  font: inherit;
  font-weight: 600;
  cursor: pointer;
}

.hon-button:hover {
  color: var(--link-hover);
  border-color: var(--link-hover);
}

.hon-button:active {
  transform: translateY(1px);
}

.hon-privacy {
  margin: var(--space-3) 0 0;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.5;
}

.hon-fallback {
  margin: var(--space-4) 0 0;
  color: var(--muted);
}

.hon-fallback a {
  color: var(--link);
}

.hon-fallback a:hover {
  color: var(--link-hover);
}

/* Honeypot hidden */
.hon-hp {
  display: none !important;
}



/* Formspree Gotch */
.hp-field { display:none; }
.visually-hidden {
  position:absolute; left:-10000px; top:auto; width:1px; height:1px; overflow:hidden;
}



/* =========================
   Contact Us — Desktop Form Layout
   ========================= */

/* Desktop and larger */
@media (min-width: 768px) {

  /* Center the entire form block */
  .hon-form {
    max-width: 640px;
    margin: 0 auto;     /* centers the form */
  }

  /* Ensure inputs span full form width */
  .hon-input,
  .hon-textarea {
    width: 100%;
  }

  /* Optional: center the submit button */
  .hon-button {
    display: block;
    margin: 24px auto 0;
  }
}
