/* =====================================================================
   MURUMÄNGUD — SINGLE BLOG POST (blogipostitus) reskin
   v1.0.0 — CSS-only reskin of the theme's default single-post template so
            it matches the dark blog archive. Scoped under
            body.single-blogipostitus so it only touches blog posts.
            Page bg is already #1E1E1E; this styles typography/links/layout.
   Palette: dark grey #1E1E1E, cream #F4EFE3 text, orange #E88A3C accent.
   ===================================================================== */

:root {
  --mbp-orange: #E88A3C;
  --mbp-orange-deep: #D27628;
  --mbp-bg: #1E1E1E;
  --mbp-card: #252525;
  --mbp-cream: #F4EFE3;
  --mbp-muted: #a8a298;
  --mbp-line: #3a3a3a;
}

/* ---- Page canvas -------------------------------------------------- */
body.single-blogipostitus,
body.single-blogipostitus .page-content,
body.single-blogipostitus .site-main,
body.single-blogipostitus .entry-content,
body.single-blogipostitus article {
  background-color: var(--mbp-bg) !important;
  color: var(--mbp-cream);
}
body.single-blogipostitus {
  font-family: 'Inter', 'Helvetica Neue', system-ui, -apple-system, sans-serif;
}

/* Constrain the reading column + top spacing to clear the fixed header */
body.single-blogipostitus .site-main,
body.single-blogipostitus .entry-content,
body.single-blogipostitus article > * {
  max-width: 820px;
  margin-left: auto;
  margin-right: auto;
}
body.single-blogipostitus .site-main {
  padding: 110px 24px 100px;
}

/* ---- Post title --------------------------------------------------- */
body.single-blogipostitus .entry-title,
body.single-blogipostitus h1.entry-title,
body.single-blogipostitus article h1 {
  font-size: clamp(38px, 5vw, 60px) !important;
  font-weight: 900 !important;
  letter-spacing: -2px !important;
  line-height: 1.02 !important;
  color: var(--mbp-cream) !important;
  margin: 0 0 28px !important;
  text-transform: none !important;
}
body.single-blogipostitus .entry-title::after,
body.single-blogipostitus h1.entry-title::after {
  content: "";
  display: inline-block;
  width: 0.16em; height: 0.16em;
  background: var(--mbp-orange);
  margin-left: 0.12em;
  vertical-align: baseline;
}

/* ---- Body copy ---------------------------------------------------- */
body.single-blogipostitus .entry-content p,
body.single-blogipostitus article p {
  color: #d8d4cc !important;
  font-size: 17px;
  line-height: 1.75;
  margin: 0 0 20px;
}

/* ---- Section headings inside the post ----------------------------- */
body.single-blogipostitus .entry-content h2,
body.single-blogipostitus article h2 {
  font-size: clamp(26px, 3vw, 36px) !important;
  font-weight: 900 !important;
  letter-spacing: -0.8px !important;
  color: var(--mbp-cream) !important;
  margin: 44px 0 16px !important;
  line-height: 1.1 !important;
}
body.single-blogipostitus .entry-content h3,
body.single-blogipostitus article h3 {
  font-size: clamp(20px, 2.4vw, 26px) !important;
  font-weight: 800 !important;
  color: var(--mbp-cream) !important;
  margin: 32px 0 12px !important;
}
/* small orange square before section headings for character */
body.single-blogipostitus .entry-content h2::before {
  content: "";
  display: inline-block;
  width: 12px; height: 12px;
  background: var(--mbp-orange);
  margin-right: 12px;
  vertical-align: middle;
}

/* ---- Lists -------------------------------------------------------- */
body.single-blogipostitus .entry-content ul,
body.single-blogipostitus .entry-content ol,
body.single-blogipostitus article ul,
body.single-blogipostitus article ol {
  color: #d8d4cc !important;
  font-size: 17px;
  line-height: 1.7;
  margin: 0 0 22px;
  padding-left: 22px;
}
body.single-blogipostitus .entry-content li { margin-bottom: 8px; }
body.single-blogipostitus .entry-content ul li::marker { color: var(--mbp-orange); }
body.single-blogipostitus .entry-content ol li::marker { color: var(--mbp-orange); font-weight: 700; }

/* ---- Links -> orange (never blue) --------------------------------- */
body.single-blogipostitus .entry-content a,
body.single-blogipostitus article a {
  color: var(--mbp-orange) !important;
  text-decoration: none !important;
  border-bottom: 1px solid rgba(232,138,60,0.35);
  transition: color 0.2s ease, border-color 0.2s ease;
}
body.single-blogipostitus .entry-content a:hover,
body.single-blogipostitus article a:hover {
  color: var(--mbp-orange-deep) !important;
  border-bottom-color: var(--mbp-orange);
}

/* ---- Featured image / images -------------------------------------- */
body.single-blogipostitus .entry-content img,
body.single-blogipostitus article img {
  border-radius: 10px;
  max-width: 100%;
  height: auto;
}
body.single-blogipostitus .post-thumbnail img,
body.single-blogipostitus .wp-post-image {
  border-radius: 12px;
  margin-bottom: 32px;
}

/* ---- Blockquotes -------------------------------------------------- */
body.single-blogipostitus .entry-content blockquote {
  border-left: 3px solid var(--mbp-orange);
  background: var(--mbp-card);
  padding: 20px 24px;
  margin: 28px 0;
  border-radius: 0 8px 8px 0;
  color: var(--mbp-cream);
  font-style: italic;
}

/* ---- Meta / date -------------------------------------------------- */
body.single-blogipostitus .entry-meta,
body.single-blogipostitus .posted-on,
body.single-blogipostitus .entry-meta a {
  color: var(--mbp-muted) !important;
  font-size: 13px;
  letter-spacing: 0.5px;
}

/* ---- Divider hairlines ------------------------------------------- */
body.single-blogipostitus hr {
  border: 0;
  border-top: 1px solid var(--mbp-line);
  margin: 40px 0;
}

/* ---- Mobile ------------------------------------------------------- */
@media (max-width: 767px) {
  body.single-blogipostitus .site-main { padding: 96px 18px 60px; }
  body.single-blogipostitus .entry-title { font-size: 34px !important; letter-spacing: -1px !important; }
  body.single-blogipostitus .entry-content p,
  body.single-blogipostitus .entry-content ul,
  body.single-blogipostitus .entry-content ol { font-size: 15.5px; }
}

/* =====================================================================
   v1.1.0 — more character, matching the site's other pages
   - more top margin (title was tucked under the fixed header)
   - bigger, heavier Inter title with the orange square
   - orange "— BLOGI" eyebrow feel via first heading accent
   - tighter type rhythm, orange section-heading squares, styled lead
   ===================================================================== */

/* More top margin so the title clears the header comfortably */
body.single-blogipostitus .site-main {
  padding-top: 140px !important;
}
@media (max-width: 767px) {
  body.single-blogipostitus .site-main { padding-top: 110px !important; }
}

/* Title — bigger + heavier + tighter, matching shop/blog page titles */
body.single-blogipostitus .entry-title,
body.single-blogipostitus h1.entry-title,
body.single-blogipostitus article h1 {
  font-size: clamp(44px, 6vw, 72px) !important;
  font-weight: 900 !important;
  letter-spacing: -2.5px !important;
  line-height: 0.98 !important;
  text-transform: none !important;
  margin: 0 0 22px !important;
}

/* First paragraph after the title reads as a lead (bigger, lighter) */
body.single-blogipostitus .entry-content > p:first-of-type {
  font-size: 20px !important;
  line-height: 1.6 !important;
  color: #EDE8DE !important;
  margin-bottom: 28px !important;
}

/* Section headings: orange square marker + stronger weight (already set,
   reinforce spacing so the page has clear rhythm) */
body.single-blogipostitus .entry-content h2 {
  margin-top: 52px !important;
  padding-top: 4px;
}

/* A thin orange rule under the title area for a bit of structure */
body.single-blogipostitus .entry-header,
body.single-blogipostitus header.entry-header {
  border-bottom: 1px solid rgba(232,138,60,0.25);
  padding-bottom: 22px;
  margin-bottom: 34px;
  max-width: 820px;
  margin-left: auto;
  margin-right: auto;
}

/* Bold text inside the post -> cream white for pop */
body.single-blogipostitus .entry-content strong,
body.single-blogipostitus .entry-content b { color: #fff !important; }

/* First-letter flourish on the lead paragraph — subtle premium touch */
body.single-blogipostitus .entry-content > p:first-of-type::first-letter {
  color: var(--mbp-orange);
  font-weight: 800;
}

/* Selection colour on-brand */
body.single-blogipostitus ::selection { background: rgba(232,138,60,0.35); color: #fff; }

/* =====================================================================
   v1.1.1 — SELECTOR FIX. The template has: MAIN.site-main > DIV.page-content
   > H1 (NO class) + content. My earlier rules hung on .entry-title/.site-main
   which either don't exist or are locked by the theme. Re-target the real
   elements: .page-content (wrapper) and the bare h1.
   ===================================================================== */

/* Top margin on the real content wrapper */
body.single-blogipostitus .page-content {
  padding-top: 140px !important;
  max-width: 820px;
  margin-left: auto !important;
  margin-right: auto !important;
  padding-left: 24px;
  padding-right: 24px;
  box-sizing: border-box;
}
@media (max-width: 767px) {
  body.single-blogipostitus .page-content { padding-top: 110px !important; padding-left: 18px; padding-right: 18px; }
}

/* The title is a bare <h1> inside .page-content */
body.single-blogipostitus .page-content > h1,
body.single-blogipostitus .site-main h1 {
  font-size: clamp(44px, 6vw, 72px) !important;
  font-weight: 900 !important;
  letter-spacing: -2.5px !important;
  line-height: 0.98 !important;
  color: #F4EFE3 !important;
  text-transform: none !important;
  margin: 0 0 24px !important;
}
body.single-blogipostitus .page-content > h1::after,
body.single-blogipostitus .site-main h1::after {
  content: "";
  display: inline-block;
  width: 0.16em; height: 0.16em;
  background: var(--mbp-orange);
  margin-left: 0.12em;
  vertical-align: baseline;
}

/* Body copy, headings, lists, links — re-scope to .page-content children */
body.single-blogipostitus .page-content p {
  color: #d8d4cc !important;
  font-size: 17px !important;
  line-height: 1.75 !important;
  margin: 0 0 20px !important;
}
body.single-blogipostitus .page-content > p:first-of-type,
body.single-blogipostitus .page-content p:first-of-type {
  font-size: 20px !important;
  line-height: 1.6 !important;
  color: #EDE8DE !important;
  margin-bottom: 28px !important;
}
body.single-blogipostitus .page-content h2 {
  font-size: clamp(26px, 3vw, 36px) !important;
  font-weight: 900 !important;
  letter-spacing: -0.8px !important;
  color: #F4EFE3 !important;
  margin: 52px 0 16px !important;
  line-height: 1.1 !important;
}
body.single-blogipostitus .page-content h2::before {
  content: "";
  display: inline-block;
  width: 12px; height: 12px;
  background: var(--mbp-orange);
  margin-right: 12px;
  vertical-align: middle;
}
body.single-blogipostitus .page-content h3 {
  font-size: clamp(20px, 2.4vw, 26px) !important;
  font-weight: 800 !important;
  color: #F4EFE3 !important;
  margin: 32px 0 12px !important;
}
body.single-blogipostitus .page-content ul,
body.single-blogipostitus .page-content ol {
  color: #d8d4cc !important;
  font-size: 17px !important;
  line-height: 1.7 !important;
  margin: 0 0 22px !important;
  padding-left: 22px !important;
}
body.single-blogipostitus .page-content li { margin-bottom: 8px !important; }
body.single-blogipostitus .page-content ul li::marker,
body.single-blogipostitus .page-content ol li::marker { color: var(--mbp-orange) !important; }
body.single-blogipostitus .page-content a {
  color: var(--mbp-orange) !important;
  text-decoration: none !important;
  border-bottom: 1px solid rgba(232,138,60,0.35);
}
body.single-blogipostitus .page-content a:hover { color: var(--mbp-orange-deep) !important; border-bottom-color: var(--mbp-orange); }
body.single-blogipostitus .page-content strong,
body.single-blogipostitus .page-content b { color: #fff !important; }
body.single-blogipostitus .page-content img { border-radius: 10px; max-width: 100%; height: auto; }
