/* General Body and Container */
body {
  font-family: 'Georgia', serif;
  background-color: #fdfcf4;
  color: #222;
  margin: 0;
  padding: 0;
}

.container {
  max-width: 1200px;
  margin: auto;
  padding: 0; /* Removed padding to align with header */
  box-sizing: border-box;
}

/* Header */
.header-row {
  max-width: 1200px;
  margin: auto;
  padding: 1em;
  box-sizing: border-box;
  border: 2px solid #ccc;
  background-color: #fff;
  text-align: center;
}

.title-block img {
  max-width: 100%;
  height: auto;
}

.tagline {
  font-style: italic;
  font-size: 1em;
  margin-top: 0.5em;
  color: #444;
}

.meta-line {
  font-size: 0.9em;
  color: #666;
  margin-top: 0.3em;
}

/* Main Grid */
.main-grid {
  display: flex;
  align-items: stretch;
  gap: 0; /* Removed gap to align columns with header */
}

/* Left Column */
.left-column {
  flex: 0 0 20%;
  font-size: 0.9em;
  line-height: 1.5;
  border: 2px solid #ccc;
  padding: 1em;
  background-color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-sizing: border-box;
}

.left-column h2, .right-column h2 {
  font-size: 1.2em;
  margin-bottom: 0.2em;
}

.left-column h3, .right-column h3 {
  font-size: 1em;
  margin-bottom: 0.2em;
}

.subhead {
  font-style: italic;
  color: #555;
  margin-bottom: 1em;
}

.left-column figure {
  margin-top: 1em;
}

.left-column img {
  max-width: 100%;
  height: auto;
  border: 1px solid #ccc;
  border-radius: 4px;
}

.left-column figcaption {
  font-size: 0.8em;
  color: #444;
  margin-top: 0.5em;
  text-align: center;
}

/* Right Column */
.right-column {
  flex: 0 0 80%;
  border: 2px solid #ccc;
  padding: 1em;
  background-color: #fff;
  display: block;
  position: relative;
  box-sizing: border-box;
}

/* Float map image right with wrapped text and caption */
.map-float {
  float: right;
  width: 30%;
  margin: 0 0 1em 1em;
  text-align: center;
}

.map-float img {
  width: 100%;
  max-width: 100%; /* Prevents overflow */
  height: auto;
  border: 1px solid #ccc;
  border-radius: 4px;
}

.map-float figcaption {
  font-size: 0.85em;
  color: #444;
  margin-top: 0.5em;
}

/* Clear float at end of section */
.right-column::after {
  content: "";
  display: table;
  clear: both;
}

/* Ad Boxes */
.ad-box {
  border: 2px dashed #88a;
  background-color: #eef;
  padding: 1em;
  margin-top: 2em;
  border-radius: 8px;
  font-size: 0.95em;
}

.ad-box h4 {
  margin-top: 0;
  font-size: 1.1em;
  color: #446;
}

.ad-box em {
  display: block;
  font-style: italic;
  font-size: 1em;
  margin-bottom: 0.5em;
  color: #555;
}

/* Footer */
.footer-snippets {
  display: flex;
  justify-content: space-between;
  margin-top: 2em;
  padding: 1em 0;
  border-top: 2px solid #ccc;
}

.snippet-box {
  width: 30%;
  font-size: 0.9em;
  background-color: #fffbe6;
  padding: 0.5em;
  border: 2px solid #ddd;
  border-radius: 5px;
}