@media (max-width: 900px) {
  .herald-layout,
  .single-layout {
    grid-template-columns: 1fr !important;
    gap: 0 !important;
  }
  .herald-main, .herald-sidebar,
  .single-main, .single-sidebar {
    padding: 16px 8px !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    border: none !important;
  }
}
/*
Theme Name: Sparrow County
Theme URI: https://example.com/
Author: Your Name
Author URI: https://example.com/
Description: Official website theme for Sparrow County, Illinois.
Version: 1.0
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: sparrowcounty
*/


:root {
  --bg: #f4efe6;
  --bg-alt: #e7dfd1;
  --accent: #b48a5a;
  --accent-dark: #7b5a33;
  --text-main: #3b2b1b;
  --text-muted: #6b5a45;
  --border: #d2c5b3;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Source Sans 3", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--bg);
  color: var(--text-main);
  line-height: 1.5;
}

ul, ol {
  font-size: 14px;
  line-height: 1.5;
  color: var(--text-main);
  margin-bottom: 1em;
  padding-left: 0;
  margin-left: 1.5em;
}

li {
  font-size: 14px;
  line-height: 1.5;
  color: var(--text-main);
}


a {
  color: var(--accent-dark);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.page-wrap {
  max-width: 1100px;
  margin: 0 auto;
  padding: 16px 16px 40px;
}

/* Header / Masthead */
header {
  padding-bottom: 12px;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 16px;
}

.seal {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  border: 2px solid var(--accent-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Merriweather", "Times New Roman", serif;
  font-size: 11px;
  text-align: center;
  color: var(--accent-dark);
  background: var(--bg-alt);
}

.seal span {
  display: block;
  line-height: 1.2;
}

.masthead-text {
  flex: 1;
}

.masthead-title {
  font-family: "Merriweather", "Times New Roman", serif;
  font-weight: 700;
  font-size: 26px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--text-main);
}

.masthead-sub {
  font-family: "Merriweather", "Times New Roman", serif;
  font-style: italic;
  font-size: 14px;
  color: var(--text-muted);
  margin-top: 2px;
}

.masthead-meta {
  font-size: 11px;
  color: var(--text-muted);
  margin-top: 4px;
}

/* Nav */
nav {
  margin-top: 10px;
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: 3px;
  padding: 6px 10px;
}

nav ul {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 0;
}

nav a {
  color: var(--text-main);
  font-weight: 600;
}

nav a.active {
  color: var(--accent-dark);
}

/* Hero */
.hero {
  margin: 18px 0 20px;
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid var(--border);
  background: #ddd;
}

.hero img {
  display: block;
  width: 100%;
  height: auto;
}

.hero-caption {
  padding: 8px 12px;
  font-size: 12px;
  color: var(--text-muted);
  background: #f8f3ea;
  border-top: 1px solid var(--border);
}

/* Main content columns */
.columns {
  display: grid;
  grid-template-columns: 1.2fr 1.1fr 1.1fr;
  gap: 18px;
  margin-top: 8px;
}

@media (max-width: 900px) {
  .columns {
    grid-template-columns: 1fr;
  }
}

.panel {
  background: #f9f4eb;
  border: 1px solid var(--border);
  border-radius: 3px;
  padding: 10px 12px 12px;
}

.panel h2 {
  font-family: "Merriweather", "Times New Roman", serif;
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 20px;
  border-bottom: 1px solid var(--border);
  padding-bottom: 4px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.panel h3 {
  font-size: 14px;
  font-weight: 600;
  margin-top: 8px;
  margin-bottom: 2px;
}

.panel p {
  font-size: 13px;
  margin-bottom: 4px;
  color: var(--text-main);
}

.panel small {
  font-size: 11px;
  color: var(--text-muted);
}

.list {
  list-style: none;
  margin-top: 4px;
}

.list li {
  font-size: 13px;
  margin-bottom: 4px;
}

.list li span.label {
  font-weight: 600;
}

/* Footer */
footer {
  margin-top: 28px;
  padding-top: 10px;
  border-top: 1px solid var(--border);
  font-size: 11px;
  color: var(--text-muted);
  text-align: center;
}
