/* Mars Dispatch — editorial skin
   Dark paper, rust accent. Readable type. Only the four-reasons piece is centered. */

@import url("https://fonts.googleapis.com/css2?family=Source+Sans+3:ital,wght@0,400;0,600;0,700;1,400&family=Source+Serif+4:opsz,wght@8..60,600;8..60,700&display=swap");

:root {
  --md-bg: #100c0a;
  --md-paper: #181210;
  --md-ink: #f6eee6;
  --md-muted: #c4a994;
  --md-rust: #d2683a;
  --md-rust-deep: #9a3f22;
  --md-line: rgba(242, 196, 160, 0.14);
  --md-body: "Source Sans 3", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --md-display: "Source Serif 4", Georgia, "Times New Roman", serif;
}

html, body,
body.home, body.blog, body.page, body.single,
.site {
  background: var(--md-bg) !important;
  color: var(--md-ink) !important;
}

body, p, li, td, article, .entry-content, .content-area {
  color: var(--md-ink) !important;
  font-family: var(--md-body) !important;
  font-size: 1.125rem !important;
  line-height: 1.75 !important;
  font-weight: 400;
  letter-spacing: 0.01em;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

h1, h2, h3, h4, h5, h6,
.site-title, .entry-title, .page-title {
  font-family: var(--md-display) !important;
  color: var(--md-ink) !important;
  font-weight: 700;
  letter-spacing: -0.015em;
  line-height: 1.3 !important;
}

a {
  color: var(--md-rust);
  text-decoration: none;
}
a:hover {
  color: #e58a5a;
}

/* ----- Header ----- */
.sheader.site-header {
  min-height: 460px !important;
  padding-top: 0 !important;
  padding-bottom: 36px !important;
  background-size: cover !important;
  background-position: center 78% !important;
  background-color: #1a0e08 !important;
  position: relative;
  border-bottom: 0 !important;
  display: flex !important;
  flex-direction: column !important;
}
.sheader > nav.primary-menu {
  order: 1;
  width: 100%;
}
.sheader > .content-wrap {
  order: 2;
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}
.sheader > .super-menu {
  order: 0;
}
.sheader > #mobile-menu-overlay {
  order: 4;
}

.sheader.site-header::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(8, 5, 4, 0.55) 0%,
    rgba(8, 5, 4, 0.18) 42%,
    rgba(8, 5, 4, 0.55) 100%
  );
  pointer-events: none;
}

.sheader .content-wrap,
.sheader .site-branding,
.sheader nav {
  position: relative;
  z-index: 1;
}

.site-branding {
  text-align: center;
  padding: 24px 16px 8px !important;
}

.site-title {
  font-size: clamp(2.4rem, 6vw, 4.4rem) !important;
  line-height: 1.05 !important;
  margin: 0 !important;
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.55);
}

.site-title a,
.site-title a:hover,
.header-text,
.sheader .site-title a,
.sheader .site-description {
  color: #fff8f0 !important;
}

.site-description {
  margin: 14px 0 0 !important;
  font-family: var(--md-body) !important;
  font-size: 0.85rem !important;
  font-weight: 600 !important;
  letter-spacing: 0.28em !important;
  text-transform: uppercase !important;
  color: #f0d2b8 !important;
  opacity: 0.95;
}

.primary-menu,
.super-menu,
#smobile-menu {
  background: transparent !important;
  border: 0 !important;
}

.primary-menu .content-wrap {
  padding: 8px 0 18px !important;
}

.main-navigation ul {
  justify-content: center;
}

.main-navigation ul li a,
.main-navigation ul li .sub-arrow,
.toggle-mobile-menu,
.toggle-mobile-menu:before,
.smenu-hide {
  color: #fff8f0 !important;
  font-family: var(--md-body) !important;
  font-size: 0.82rem !important;
  letter-spacing: 0.18em !important;
  text-transform: uppercase !important;
  font-weight: 700 !important;
}

.main-navigation ul li a:hover {
  color: var(--md-rust) !important;
}

.pmenu ul {
  display: flex;
  justify-content: center;
  gap: 28px;
  list-style: none;
  padding: 0;
  margin: 12px 0 0;
}

.pmenu ul li a {
  border-bottom: 1px solid transparent;
  padding-bottom: 4px;
}
.pmenu ul li a:hover,
.pmenu ul li.current_page_item a {
  border-bottom-color: var(--md-rust);
  color: #fff !important;
}

/* ----- Content ----- */
#content.site-content,
.featured-content,
.content-area,
.site-main {
  background: transparent !important;
}

.content-wrap {
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

article.posts-entry,
article.fbox,
.blogposts-list.fbox,
.single article.fbox,
.page article.fbox {
  background: var(--md-paper) !important;
  border: 1px solid var(--md-line) !important;
  border-radius: 2px !important;
  box-shadow: none !important;
  padding: 2.4rem 2.2rem 2rem !important;
  margin: 2rem auto !important;
}

.blogposts-list h2 a,
.blogposts-list h2 a:hover,
.entry-title a,
.single .content-area h1,
.page .content-area h1 {
  color: var(--md-ink) !important;
}

.blogposts-list h2,
.entry-title {
  font-size: clamp(1.55rem, 2.8vw, 2rem) !important;
  line-height: 1.3 !important;
  margin-bottom: 0.45em !important;
}

.entry-title a:hover {
  color: var(--md-rust) !important;
}

.post-data-text,
.blogposts-list .post-data-text,
.blogposts-list .post-data-text a,
.single .post-data-text,
.page .post-data-text,
.entry-meta,
.posted-on,
.byline,
.byline a {
  color: var(--md-muted) !important;
  font-family: var(--md-body) !important;
  font-size: 0.8rem !important;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.post-data-divider {
  background: var(--md-rust) !important;
  width: 36px !important;
  height: 2px !important;
}

.blogposts-list p,
.entry-content p {
  color: #efe4d8 !important;
  font-size: 1.125rem !important;
  line-height: 1.75 !important;
  max-width: 38em;
}

.blogpost-button,
.page-numbers li a {
  background: transparent !important;
  color: var(--md-rust) !important;
  border: 1px solid var(--md-rust) !important;
  border-radius: 0 !important;
  font-family: var(--md-body) !important;
  font-size: 0.78rem !important;
  letter-spacing: 0.16em !important;
  text-transform: uppercase !important;
  padding: 0.7em 1.2em !important;
}

.blogpost-button:hover,
.page-numbers li a:hover {
  background: var(--md-rust) !important;
  color: #140c0a !important;
}

.tag-cat-container,
.tag-cat-container a,
.blog .tag-cat-container a {
  color: var(--md-muted) !important;
  border-color: var(--md-line) !important;
}

.single .entry-content,
.page .entry-content {
  font-size: 1.125rem !important;
  line-height: 1.75 !important;
  color: #efe4d8 !important;
}

.single .entry-content a,
.page .entry-content a,
.comment-content a {
  color: var(--md-rust) !important;
  border-bottom: 1px solid rgba(210, 104, 58, 0.4);
}

.single .content-area h1,
.page .content-area h1,
.page .content-area h2,
.single .content-area h2 {
  color: var(--md-ink) !important;
}

.comments-area,
.page .comments-area,
.single .comments-area {
  border-color: var(--md-line) !important;
  color: var(--md-muted) !important;
}

.site-footer,
.site-info {
  background: #0a0706 !important;
  color: var(--md-muted) !important;
  border-top: 1px solid var(--md-line) !important;
  text-align: center;
  padding: 28px 16px 36px !important;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
}

.site-info a,
.footer-column-three a {
  color: var(--md-rust) !important;
}

.footer-info-right {
  display: none !important;
}

.sheader { color: #fff; }

@media (max-width: 700px) {
  .sheader.site-header {
    min-height: 340px !important;
    padding-top: 48px !important;
  }
  article.posts-entry,
  article.fbox {
    padding: 1.5rem 1.2rem !important;
  }
}

/* ----- Layout: column centered, text left-aligned ----- */
.sheader .primary-menu.main-navigation {
  width: 100% !important;
  margin: 0 !important;
  padding: 12px 0 8px !important;
  background: linear-gradient(to bottom, rgba(8,5,4,0.62), rgba(8,5,4,0)) !important;
  border: 0 !important;
}

.sheader .primary-menu .content-wrap {
  padding: 0 !important;
  max-width: none;
}

#secondary,
.featured-sidebar,
aside#secondary {
  display: none !important;
  width: 0 !important;
}

#content.site-content > .content-wrap,
#content .content-wrap {
  max-width: 720px !important;
  margin-left: auto !important;
  margin-right: auto !important;
  float: none !important;
  width: 100% !important;
  padding-left: 20px;
  padding-right: 20px;
  box-sizing: border-box;
}

#primary.featured-content,
.featured-content.content-area,
#primary {
  float: none !important;
  width: 100% !important;
  max-width: 720px !important;
  margin-left: auto !important;
  margin-right: auto !important;
  display: block !important;
}

article.posts-entry,
article.fbox,
.blogposts-list.fbox {
  margin-left: auto !important;
  margin-right: auto !important;
  float: none !important;
  width: 100% !important;
  max-width: 720px !important;
  box-sizing: border-box;
}

/* Default: left-align post text */
.entry-header,
.entry-title,
.entry-content,
.blogposts-list .entry-content,
.blogposts-list .entry-header,
.single .entry-header,
.single .entry-title,
.single .entry-content,
.page .entry-header,
.page .entry-title,
.page .entry-content {
  text-align: left !important;
}

.blogposts-list .text-center,
.single .text-center,
.page .text-center {
  text-align: left !important;
}

.blogposts-list .blogpost-button,
.entry-content .blogpost-button {
  display: inline-block;
}

/* Centerpiece only: The 4 Reasons (post-82) */
body.home article.post-82 .entry-header,
body.home article.post-82 .entry-title,
body.home article.post-82 .entry-content,
body.home article.post-82 .text-center,
body.single-post.postid-82 .entry-header,
body.single-post.postid-82 .entry-title,
body.single-post.postid-82 .entry-content {
  text-align: center !important;
}

body.home article.post-82 .entry-content p,
body.single-post.postid-82 .entry-content p {
  margin-left: auto;
  margin-right: auto;
}

@media (min-width: 701px) {
  .sheader .smenu-hide.toggle-mobile-menu {
    display: none !important;
  }
}

/* Hide author byline — Jaclyn preference Sep 10 2026 */
.byline,
.author.vcard,
span.byline,
.entry-meta .byline {
  display: none !important;
}