/* ============================================================
   MTSM Tier System — Cream Gold + Coordinated Colors + Arial
   Gold: #FFFBEA
   Blue: #DFF2FF
   Gray: #F0F2F5
   ============================================================ */

/* FORCE ARIAL FOR ALL BOX CONTENT */
.mtsm-tier-box,
.mtsm-tier-box * ,
.mtsm-how-to-read,
.mtsm-how-to-read * {
  font-family: Arial, Helvetica, sans-serif !important;
}

/* SHARED BOX STYLING */
.mtsm-tier-box {
  border-radius: 8px;
  padding: 1.5rem 1.75rem;
  margin: 1.5rem 0;
  border: 1px solid rgba(0,0,0,0.06);
  box-shadow: 0 2px 6px rgba(0,0,0,0.04);
}

/* TIER LABEL */
.mtsm-tier-label {
  display: inline-flex;
  align-items: center;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 700;
  margin-bottom: 0.75rem;
  opacity: 0.9;
}

.mtsm-tier-label .mtsm-tier-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  display: inline-block;
  margin-right: 0.5rem;
}

/* ============================================================
   TIER COLORS — Matching Palette
   ============================================================ */

/* TIER 1 – A QUICK ANSWER (Cream Gold) */
.mtsm-tier-quick {
  background-color: #FFFBEA; /* Cream gold */
}

.mtsm-tier-quick .mtsm-tier-dot {
  background-color: #E6CFA5; /* muted, soft gold dot */
}

.mtsm-badge-quick {
  background-color: #FFFBEA !important;
}

/* TIER 2 – A SIMPLE EXPLANATION (Soft Sky Blue) */
.mtsm-tier-simple {
  background-color: #DFF2FF; /* very soft sky blue */
}

.mtsm-tier-simple .mtsm-tier-dot {
  background-color: #82B7D6; /* deeper but gentle blue */
}

.mtsm-badge-simple {
  background-color: #DFF2FF !important;
}

/* TIER 3 – A DEEPER LOOK (Clean Light Gray) */
.mtsm-tier-deeper {
  background-color: #F0F2F5; /* modern light gray */
}

.mtsm-tier-deeper .mtsm-tier-dot {
  background-color: #A4A9B4; /* soft slate-gray */
}

.mtsm-badge-deeper {
  background-color: #F0F2F5 !important;
}

/* ============================================================
   HOW TO READ THIS PAGE
   ============================================================ */

.mtsm-how-to-read {
  border-radius: 10px;
  padding: 1.75rem 1.9rem;
  margin: 1.75rem 0 2.75rem;
  background: #ffffff;
  border: 1px solid rgba(0,0,0,0.06);
  box-shadow: 0 2px 10px rgba(0,0,0,0.04);
}

/* Badge used in the how-to box */
.mtsm-badge {
  display: inline-block;
  padding: 0.2rem 0.55rem;
  border-radius: 999px;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: bold;
}

/* ============================================================
   MOBILE RESPONSIVE TWEAKS
   ============================================================ */
@media (max-width: 768px) {
  .mtsm-tier-box,
  .mtsm-how-to-read {
    padding: 1.25rem 1.1rem;
  }
}

/* ============================
   Extra spacing between sections
   ============================ */

/* More whitespace around each tier block */
.mtsm-tier-box {
  margin-top: 2.75rem;
  margin-bottom: 2.75rem;
}

/* Slight extra margin above subheadings in the deeper look */
.mtsm-tier-deeper h4 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-top: 1.6rem;
  margin-bottom: 0.5rem;
}

/* Improve spacing inside lists */
.mtsm-tier-box ul {
  margin-bottom: 0.6rem;
  line-height: 1.5;
}

/* Add slight indentation for nested content */
.mtsm-tier-deeper blockquote {
  margin-left: 1rem;
  border-left: 3px solid #ddd;
  padding-left: 0.75rem;
}

/* ============================
   Table of Contents box
   ============================ */
.mtsm-toc {
  border-radius: 10px;
  padding: 1.25rem 1.5rem;
  margin: 1.5rem 0 2rem;
  background: #ffffff;
  border: 1px solid rgba(0,0,0,0.06);
  box-shadow: 0 1px 6px rgba(0,0,0,0.04);
  font-family: Arial, Helvetica, sans-serif;
}

.mtsm-toc h2 {
  margin-top: 0;
  margin-bottom: 0.75rem;
  font-size: 1.1rem;
  font-weight: bold;
}

.mtsm-toc ul {
  margin: 0;
  padding-left: 1.1rem;
  list-style-type: disc;
}

.mtsm-toc li {
  margin-bottom: 0.25rem;
}

.mtsm-toc a {
  text-decoration: none;
  border-bottom: 1px dashed rgba(0,0,0,0.3);
}

.mtsm-toc a:hover {
  border-bottom-style: solid;
}

/* ============================
   Post cards grid
   ============================ */
.mtsm-post-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  margin-top: 1.5rem;
}

.mtsm-post-card {
  border: 1px solid #ddd;
  padding: 1.25rem;
  border-radius: 10px;
  background: #fff;
  transition: box-shadow .2s ease;
}

.mtsm-post-card:hover {
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

/* BLACK BUTTONS on cards */
.mtsm-read-btn {
  display: inline-block;
  margin-top: .75rem;
  background: #000000;
  color: #ffffff;
  padding: .5rem 1rem;
  border-radius: 6px;
  text-decoration: none;
}

.mtsm-read-btn:hover {
  opacity: 0.85;
}

/* Hero-style CTA button (if used in hero) */
.mtsm-hero-button {
  background: #f2b705;
  padding: .7rem 1.2rem;
  display: inline-block;
  border-radius: 6px;
  color: #000;
  text-decoration: none;
  font-weight: bold;
}

/* ============================
   Start / Subscribe box
   ============================ */
/* Use this for the “Start Here” or “Follow the Series / Subscribe” box */
.mtsm-start-box {
  background: #E8F5E9;              /* soft green, dino-ish but gentle */
  padding: 1rem 1.2rem;
  border-left: 6px solid #2E7D32;   /* deeper green accent */
  border-radius: 6px;
  font-family: Arial, Helvetica, sans-serif;
}

/* Optional: tweak list spacing inside TOC lists used with cards */
.mtsm-toc-list li {
  margin: .5rem 0;
}
/* ============================================================
   MTSM Tier System — Cream Gold + Coordinated Colors + Arial
   Fully Updated With Matching Buttons
   ============================================================ */

/* FORCE ARIAL FOR ALL BOX CONTENT */
.mtsm-tier-box,
.mtsm-tier-box * ,
.mtsm-how-to-read,
.mtsm-how-to-read * {
  font-family: Arial, Helvetica, sans-serif !important;
}

/* SHARED BOX STYLING */
.mtsm-tier-box {
  border-radius: 8px;
  padding: 1.5rem 1.75rem;
  margin: 2.75rem 0;
  border: 1px solid rgba(0,0,0,0.06);
  box-shadow: 0 2px 6px rgba(0,0,0,0.04);
}

/* TIER LABEL */
.mtsm-tier-label {
  display: inline-flex;
  align-items: center;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: bold;
  margin-bottom: 0.75rem;
  opacity: 0.9;
}

.mtsm-tier-label .mtsm-tier-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  display: inline-block;
  margin-right: 0.5rem;
}

/* ============================================================
   TIER COLORS — Matching Palette
   ============================================================ */

.mtsm-tier-quick {
  background-color: #FFFBEA;
}
.mtsm-tier-quick .mtsm-tier-dot {
  background-color: #E6CFA5;
}

.mtsm-tier-simple {
  background-color: #DFF2FF;
}
.mtsm-tier-simple .mtsm-tier-dot {
  background-color: #82B7D6;
}

.mtsm-tier-deeper {
  background-color: #F0F2F5;
}
.mtsm-tier-deeper .mtsm-tier-dot {
  background-color: #A4A9B4;
}

/* ============================================================
   HOW TO READ THIS PAGE
   ============================================================ */

.mtsm-how-to-read {
  border-radius: 10px;
  padding: 1.75rem 1.9rem;
  margin: 1.75rem 0 2.75rem;
  background: #ffffff;
  border: 1px solid rgba(0,0,0,0.06);
  box-shadow: 0 2px 10px rgba(0,0,0,0.04);
}

/* ============================================================
   TABLE OF CONTENTS BOX
   ============================================================ */

.mtsm-toc {
  border-radius: 10px;
  padding: 1.25rem 1.5rem;
  margin: 1.5rem 0 2rem;
  background: #ffffff;
  border: 1px solid rgba(0,0,0,0.06);
  box-shadow: 0 1px 6px rgba(0,0,0,0.04);
  font-family: Arial, Helvetica, sans-serif;
}

.mtsm-toc h2 {
  margin-top: 0;
  margin-bottom: 0.75rem;
  font-size: 1.1rem;
  font-weight: bold;
}

.mtsm-toc ul {
  margin: 0;
  padding-left: 1.1rem;
  list-style-type: disc;
}

.mtsm-toc li {
  margin-bottom: 0.25rem;
}

.mtsm-toc a {
  text-decoration: none;
  border-bottom: 1px dashed rgba(0,0,0,0.3);
}
.mtsm-toc a:hover {
  border-bottom-style: solid;
}

/* ============================================================
   BUTTONS — UPDATED TO MATCH PERFECTLY
   ============================================================ */

.mtsm-read-btn {
  display: inline-block;
  margin-top: .75rem;
  background: #000; /* pure black for universal button color */
  color: #fff !important;
  padding: .55rem 1rem;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
  transition: background .2s ease, transform .2s ease;
}

.mtsm-read-btn:hover {
  background: #222; /* softened hover */
  transform: translateY(-2px);
}

/* full-width button option if ever needed */
/*
.mtsm-read-btn.full {
  display: block;
  width: 100%;
  text-align: center;
}
*/

/* ============================================================
   SUBSCRIBE BOX (Updated Color + Button Matching)
   ============================================================ */

.mtsm-start-box {
  background: #FFFBEA;          /* matches Tier 1 cream-gold */
  padding: 1rem 1.2rem;
  border-left: 6px solid #E6CFA5;
  border-radius: 6px;
  margin-top: 2rem;
  margin-bottom: 2rem;
  font-family: Arial, Helvetica, sans-serif;
}

.mtsm-start-box h2 {
  margin-top: 0;
}

.mtsm-start-box #subscribe {
  margin-top: 1rem;
}

/* ============================================================
   POST GRID CARDS
   ============================================================ */

.mtsm-post-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  margin-top: 1.5rem;
}

.mtsm-post-card {
  border: 1px solid #ddd;
  padding: 1.25rem;
  border-radius: 10px;
  background: #fff;
  transition: box-shadow .2s ease;
}

.mtsm-post-card:hover {
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.mtsm-toc-list li {
  margin: .5rem 0;
}

/* ============================================================
   MOBILE TWEAKS
   ============================================================ */
@media (max-width: 768px) {
  .mtsm-tier-box,
  .mtsm-how-to-read {
    padding: 1.25rem 1.1rem;
  }
}
/* Add space under the Fact/Faith/Fiction tag */
.mtsm-card .mtsm-tag {
  display: inline-block;
  margin-bottom: 12px; /* Adjust to taste: 8–16px works great */
}
/* Card Grid */
.mtsm-card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(290px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

/* Individual Cards */
.mtsm-card {
  background: #ffffff;
  border-radius: 12px;
  padding: 1.5rem;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  transition: all 0.25s ease;
  position: relative;
}

.mtsm-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 18px rgba(0,0,0,0.12);
}

/* Tags */
.mtsm-tag {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  padding: 4px 8px;
  border-radius: 6px;
  color: #fff;
  display: inline-block;
  margin-bottom: 12px;
}

/* Optional tag colors */
.mtsm-tag-fact { background-color: #0077cc; }      /* Blue */
.mtsm-tag-fiction { background-color: #cc3300; }   /* Red */
.mtsm-tag-faith { background-color: #2d9e4a; }     /* Green */

/* Titles */
.mtsm-card h3 {
  margin-top: 0;
  margin-bottom: 0.75rem;
  font-size: 1.15rem;
  line-height: 1.35;
}

.mtsm-card h3 a {
  text-decoration: none;
  color: #222;
}

.mtsm-card h3 a:hover {
  color: #0077cc;
}

/* Description inside card */
.mtsm-card p {
  font-size: 0.95rem;
  line-height: 1.5rem;
  color: #444;
  margin-bottom: 1.2rem;
}

/* Button */
.mtsm-card-button {
  display: inline-block;
  background-color: #0077cc;
  color: #fff !important;
  padding: 0.55rem 1rem;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  transition: background-color 0.25s ease;
}

.mtsm-card-button:hover {
  background-color: #005fa0;
}
/* FEATURED HERO CARD */
.mtsm-featured {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  margin-top: 2.5rem;
  margin-bottom: 2.5rem;
  padding: 2rem;
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.mtsm-featured-content {
  flex: 1 1 260px;
}

.mtsm-featured-side {
  flex: 0 1 260px;
  border-left: 1px solid rgba(0,0,0,0.05);
  padding-left: 1.5rem;
}

@media (max-width: 768px) {
  .mtsm-featured {
    flex-direction: column;
  }
  .mtsm-featured-side {
    border-left: none;
    padding-left: 0;
    border-top: 1px solid rgba(0,0,0,0.05);
    padding-top: 1.5rem;
  }
}

.mtsm-featured-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 4px 10px;
  border-radius: 999px;
  background-color: #2d9e4a;
  color: #fff;
  margin-bottom: 0.75rem;
}

.mtsm-featured h2 {
  margin: 0 0 0.75rem;
  font-size: 1.4rem;
  line-height: 1.3;
}

.mtsm-featured h2 a {
  text-decoration: none;
  color: #222;
}

.mtsm-featured h2 a:hover {
  color: #0077cc;
}

.mtsm-featured p {
  margin-bottom: 1rem;
  color: #444;
}

.mtsm-featured-button {
  display: inline-block;
  background-color: #0077cc;
  color: #fff !important;
  padding: 0.6rem 1.2rem;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  transition: background-color 0.25s ease, transform 0.15s ease;
}

.mtsm-featured-button:hover {
  background-color: #005fa0;
  transform: translateY(-1px);
}

.mtsm-featured-label {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin: 0 0 0.5rem;
  color: #666;
}

.mtsm-featured-note {
  margin: 0;
  font-size: 0.9rem;
  color: #555;
}
/* HERO BACKGROUND SOFT LAYER */
.mtsm-hero {
  position: relative;
  padding: 3rem 1.5rem 2.5rem;
  border-radius: 18px;
  background: linear-gradient(135deg, #f7fbff, #fff8f3);
  overflow: hidden;
  margin-bottom: 2.5rem;
}

/* optional: keep text above background accents */
.mtsm-hero > * {
  position: relative;
  z-index: 1;
}

/* soft abstract shapes */
.mtsm-hero::before,
.mtsm-hero::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  opacity: 0.4;
  pointer-events: none;
}

.mtsm-hero::before {
  width: 260px;
  height: 260px;
  background: radial-gradient(circle at center, rgba(255, 196, 140, 0.8), transparent 70%);
  top: -60px;
  right: -40px;
}

.mtsm-hero::after {
  width: 220px;
  height: 220px;
  background: radial-gradient(circle at center, rgba(154, 208, 245, 0.8), transparent 70%);
  bottom: -70px;
  left: -30px;
}

/* optional: if you want hero title a bit bolder in that context */
.mtsm-hero h1 {
  margin-top: 0;
}
.mtsm-series h2 {
  margin-bottom: 1.25rem;
}
.mtsm-series {
  margin-bottom: 2.5rem;
}
/* ================================
   CHRISTMAS SERIES WRAPPER
   ================================ */

.mtsm-series-christmas {
  margin-bottom: 3rem;
}

/* HERO BACKGROUND – CHRISTMAS COLORS */
.mtsm-series-christmas .mtsm-hero-christmas {
  position: relative;
  padding: 3rem 1.5rem 2.5rem;
  border-radius: 18px;
  background: linear-gradient(135deg, #fff8f3, #fdf5f5);
  overflow: hidden;
  margin-bottom: 2.5rem;
}

.mtsm-series-christmas .mtsm-hero-christmas > * {
  position: relative;
  z-index: 1;
}

/* soft abstract Christmas shapes */
.mtsm-series-christmas .mtsm-hero-christmas::before,
.mtsm-series-christmas .mtsm-hero-christmas::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  opacity: 0.45;
  pointer-events: none;
}

.mtsm-series-christmas .mtsm-hero-christmas::before {
  width: 260px;
  height: 260px;
  background: radial-gradient(circle at center, rgba(220, 53, 69, 0.8), transparent 70%); /* red */
  top: -60px;
  right: -40px;
}

.mtsm-series-christmas .mtsm-hero-christmas::after {
  width: 220px;
  height: 220px;
  background: radial-gradient(circle at center, rgba(40, 167, 69, 0.8), transparent 70%); /* green */
  bottom: -70px;
  left: -30px;
}

/* keep main title snug */
.mtsm-series-christmas .mtsm-hero-christmas h1 {
  margin-top: 0;
}

/* FEATURED CARD */
.mtsm-series-christmas .mtsm-featured {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  margin-top: 2.5rem;
  margin-bottom: 2.5rem;
  padding: 2rem;
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.mtsm-series-christmas .mtsm-featured-content {
  flex: 1 1 260px;
}

.mtsm-series-christmas .mtsm-featured-side {
  flex: 0 1 260px;
  border-left: 1px solid rgba(0,0,0,0.05);
  padding-left: 1.5rem;
}

@media (max-width: 768px) {
  .mtsm-series-christmas .mtsm-featured {
    flex-direction: column;
  }
  .mtsm-series-christmas .mtsm-featured-side {
    border-left: none;
    padding-left: 0;
    border-top: 1px solid rgba(0,0,0,0.05);
    padding-top: 1.5rem;
  }
}

.mtsm-series-christmas .mtsm-featured-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 4px 10px;
  border-radius: 999px;
  background-color: #28a745; /* green */
  color: #fff;
  margin-bottom: 0.75rem;
}

.mtsm-series-christmas .mtsm-featured h2 {
  margin: 0 0 0.75rem;
  font-size: 1.4rem;
  line-height: 1.3;
}

.mtsm-series-christmas .mtsm-featured h2 a {
  text-decoration: none;
  color: #222;
}

.mtsm-series-christmas .mtsm-featured h2 a:hover {
  color: #dc3545; /* red hover */
}

.mtsm-series-christmas .mtsm-featured p {
  margin-bottom: 1rem;
  color: #444;
}

.mtsm-series-christmas .mtsm-featured-button {
  display: inline-block;
  background-color: #dc3545; /* red */
  color: #fff !important;
  padding: 0.6rem 1.2rem;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  transition: background-color 0.25s ease, transform 0.15s ease;
}

.mtsm-series-christmas .mtsm-featured-button:hover {
  background-color: #b52a37;
  transform: translateY(-1px);
}

.mtsm-series-christmas .mtsm-featured-label {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin: 0 0 0.5rem;
  color: #666;
}

.mtsm-series-christmas .mtsm-featured-note {
  margin: 0;
  font-size: 0.9rem;
  color: #555;
}

/* SERIES HEADINGS SPACING */
.mtsm-series-christmas .mtsm-series h2 {
  margin-bottom: 1.25rem;
}

.mtsm-series-christmas .mtsm-series {
  margin-bottom: 2.5rem;
}

/* CARD GRID */
.mtsm-series-christmas .mtsm-card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(290px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

/* INDIVIDUAL CARDS */
.mtsm-series-christmas .mtsm-card {
  background: #ffffff;
  border-radius: 12px;
  padding: 1.5rem;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  transition: all 0.25s ease;
  position: relative;
}

.mtsm-series-christmas .mtsm-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 18px rgba(0,0,0,0.12);
}

/* TAGS – CHRISTMAS COLOR SCHEME */
.mtsm-series-christmas .mtsm-tag {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  padding: 4px 8px;
  border-radius: 6px;
  color: #fff;
  display: inline-block;
  margin-bottom: 12px;
}

/* Fact = green, Fiction = red, Faith/Family = gold */
.mtsm-series-christmas .mtsm-tag-fact {
  background-color: #28a745; /* green */
}

.mtsm-series-christmas .mtsm-tag-fiction {
  background-color: #dc3545; /* red */
}

.mtsm-series-christmas .mtsm-tag-faith {
  background: linear-gradient(135deg, #e0b83b, #f7d776); /* gold */
  color: #3b2c05;
}

/* CARD TITLES & TEXT */
.mtsm-series-christmas .mtsm-card h3 {
  margin-top: 0;
  margin-bottom: 0.75rem;
  font-size: 1.15rem;
  line-height: 1.35;
}

.mtsm-series-christmas .mtsm-card h3 a {
  text-decoration: none;
  color: #222;
}

.mtsm-series-christmas .mtsm-card h3 a:hover {
  color: #dc3545;
}

.mtsm-series-christmas .mtsm-card p {
  font-size: 0.95rem;
  line-height: 1.5rem;
  color: #444;
  margin-bottom: 1.2rem;
}

/* CARD BUTTON */
.mtsm-series-christmas .mtsm-card-button {
  display: inline-block;
  background-color: #dc3545; /* red */
  color: #fff !important;
  padding: 0.55rem 1rem;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  transition: background-color 0.25s ease;
}

.mtsm-series-christmas .mtsm-card-button:hover {
  background-color: #b52a37;
}

/* FAMILY & SANTA SECTION INTRO TEXT */
.mtsm-series-christmas .mtsm-section-intro {
  font-size: 0.98rem;
  color: #444;
  max-width: 720px;
}

/* SUBSCRIBE CALLOUT */
.mtsm-series-christmas .mtsm-subscribe-callout {
  margin-top: 3rem;
  padding: 2rem 1.5rem;
  border-radius: 16px;
  background: #fdf7e8; /* warm gold-ish */
  text-align: center;
}

.mtsm-series-christmas .mtsm-subscribe-callout h2 {
  margin-top: 0;
  margin-bottom: 0.75rem;
}

.mtsm-series-christmas .mtsm-subscribe-callout p {
  margin-bottom: 1.25rem;
  color: #444;
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
}

.mtsm-se
.mtsm-hero-button {
  background-color: #dc3545 !important; /* Christmas red */
}
.mtsm-hero-button:hover {
  background-color: #b52a37 !important;
}
/* Extra vertical spacing for main Christmas sections */
.mtsm-series-christmas .mtsm-series {
  margin-top: 2.75rem;
  margin-bottom: 2.75rem;
}

/* A bit more space before the Santa section specifically */
.mtsm-series-christmas .mtsm-series-santa {
  margin-top: 3.25rem;
}
/* Soft divider line + top padding between sections */
.mtsm-series-christmas .mtsm-series-family,
.mtsm-series-christmas .mtsm-series-santa {
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  padding-top: 2.25rem;
}
/* Add a little extra breathing room under main H2 section headers */
.mtsm-series-christmas .mtsm-series:first-of-type {
  margin-top: 3rem;
}
/* ===============================
   MTSM Bible Hub: Habakkuk Layout
   =============================== */

.mtsm-hub {
  max-width: 1100px;
  margin: 0 auto;
  padding: 2.5rem 1.25rem 3.5rem;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.mtsm-hub h1,
.mtsm-hub h2,
.mtsm-hub h3 {
  font-weight: 700;
}

/* HERO */

.mtsm-hub-hero {
  margin-bottom: 3rem;
}

.mtsm-hub-hero-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  align-items: center;
}

.mtsm-hub-hero-text {
  flex: 1 1 320px;
}

.mtsm-hub-hero-media {
  flex: 1 1 320px;
}

.mtsm-hub-hero-media img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.18);
  display: block;
}

.mtsm-hub-eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.8rem;
  font-weight: 600;
  color: #888;
  margin-bottom: 0.25rem;
}

.mtsm-hub-hero h1 {
  font-size: 2.4rem;
  margin-bottom: 0.5rem;
}

.mtsm-hub-hero-tagline {
  font-size: 1.05rem;
  font-weight: 500;
  margin-bottom: 0.75rem;
}

/* Primary Button */

.mtsm-hub-button {
  display: inline-block;
  margin-top: 1rem;
  padding: 0.75rem 1.5rem;
  border-radius: 999px;
  background: #1f4f7d; /* adjust to match your brand */
  color: #fff !important;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.18);
  transition: transform 0.1s ease, box-shadow 0.1s ease, background 0.2s ease;
}

.mtsm-hub-button:hover {
  background: #163a5c;
  transform: translateY(-1px);
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.22);
}

/* SECTIONS */

.mtsm-hub-section {
  margin-bottom: 3rem;
  padding: 2rem 1.75rem;
  background: #f9fafb;
  border-radius: 14px;
  border: 1px solid #e3e7ec;
}

.mtsm-hub-section:last-of-type {
  margin-bottom: 0;
}

.mtsm-hub-section h2 {
  font-size: 1.6rem;
  margin-top: 0;
  margin-bottom: 0.75rem;
}

.mtsm-hub-section-intro {
  margin-top: 0;
  margin-bottom: 1.5rem;
  color: #555;
}

/* Layout helpers */

.mtsm-hub-two-col {
  display: grid;
  grid-template-columns: minmax(0, 3fr) minmax(0, 2fr);
  gap: 1.5rem;
  align-items: flex-start;
}

.mtsm-hub-key-points {
  background: #ffffff;
  border-radius: 12px;
  border: 1px solid #dde3eb;
  padding: 1rem 1.25rem;
}

.mtsm-hub-key-points h3 {
  margin-top: 0;
  margin-bottom: 0.5rem;
  font-size: 1rem;
}

.mtsm-hub-key-points ul {
  margin: 0;
  padding-left: 1.1rem;
}

/* Card Grid */

.mtsm-hub-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
}

.mtsm-hub-card {
  background: #ffffff;
  border-radius: 12px;
  border: 1px solid #dde3eb;
  padding: 1.25rem 1.25rem 1.35rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: 0 4px 10px rgba(15, 23, 42, 0.04);
}

.mtsm-hub-card h3 {
  font-size: 1.1rem;
  margin-top: 0;
  margin-bottom: 0.4rem;
}

.mtsm-hub-card p {
  margin: 0 0 0.75rem;
  color: #555;
}

/* Links */

.mtsm-hub-link {
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  color: #1f4f7d;
}

.mtsm-hub-link:hover {
  text-decoration: underline;
}

/* List style for devo/resource lists */

.mtsm-hub-list {
  list-style: none;
  padding-left: 0;
  margin: 0;
}

.mtsm-hub-list li {
  margin-bottom: 0.5rem;
}

.mtsm-hub-list a {
  text-decoration: none;
  color: #1f4f7d;
  font-weight: 500;
}

.mtsm-hub-list a:hover {
  text-decoration: underline;
}

/* Sermon timeline layout */

.mtsm-hub-timeline {
  border-left: 3px solid #dde3eb;
  padding-left: 1.5rem;
  margin-left: 0.25rem;
}

.mtsm-hub-timeline-item {
  position: relative;
  margin-bottom: 1.75rem;
}

.mtsm-hub-timeline-item::before {
  content: "";
  position: absolute;
  left: -1.8rem;
  top: 0.35rem;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: #1f4f7d;
}

.mtsm-hub-timeline-item h3 {
  margin-top: 0;
  margin-bottom: 0.35rem;
  font-size: 1.05rem;
}

.mtsm-hub-timeline-item p {
  margin: 0 0 0.5rem;
  color: #555;
}

.mtsm-hub-timeline-links a {
  display: inline-block;
  margin-right: 0.75rem;
  margin-bottom: 0.25rem;
  font-size: 0.9rem;
  color: #1f4f7d;
  text-decoration: none;
}

.mtsm-hub-timeline-links a:hover {
  text-decoration: underline;
}

/* Author section */

.mtsm-hub-author {
  background: #1f2937;
  color: #e5e7eb;
  border-color: #111827;
}

.mtsm-hub-author-inner {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.mtsm-hub-author h2 {
  color: #f9fafb;
}

/* RESPONSIVE */

@media (max-width: 900px) {
  .mtsm-hub-hero-inner {
    flex-direction: column;
  }

  .mtsm-hub-two-col {
    grid-template-columns: 1fr;
  }

  .mtsm-hub-card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .mtsm-hub {
    padding: 1.75rem 1rem 2.75rem;
  }

  .mtsm-hub-hero h1 {
    font-size: 2rem;
  }

  .mtsm-hub-card-grid {
    grid-template-columns: 1fr;
  }

  .mtsm-hub-section {
    padding: 1.5rem 1.25rem;
  }
}
.mtsm-tldr-box {
  border-left: 4px solid #b91c1c; /* deep red accent */
  background: #fef2f2;
  padding: 0.75rem 1rem;
  margin: 1rem 0 1.5rem;
  border-radius: 6px;
  font-size: 0.95rem;
}
/* Make h2s feel like section headers */
.entry-content h2 {
  margin-top: 2.25rem;
  margin-bottom: 0.75rem;
  padding-bottom: 0.25rem;
  border-bottom: 1px solid #e5e7eb;
}

/* Tighten h3 + summary pairs inside lists */
.entry-content li h3 {
  margin-bottom: 0.2rem;
}

.entry-content li p {
  margin-top: 0;
  margin-bottom: 0.75rem;
}

/* Slightly narrower line length for readability on large screens */
.entry-content {
  max-width: 760px;
}

/* So bullets look cleaner for these lists */
.entry-content ul {
  padding-left: 1.2rem;
}
/* Section headers – give them a “guide” feel */
.entry-content h2 {
  margin-top: 2.25rem;
  margin-bottom: 0.75rem;
  padding-bottom: 0.25rem;
  border-bottom: 1px solid #e5e7eb;
}

/* Tighten list item spacing for h3 + summary */
.entry-content li h3 {
  margin-bottom: 0.2rem;
}

.entry-content li p {
  margin-top: 0;
  margin-bottom: 0.75rem;
}

/* Slightly narrow reading width for better readability on large screens */
.entry-content {
  max-width: 760px;
}

/* Slightly cleaner bullets */
.entry-content ul {
  padding-left: 1.2rem;
}
.mtsm-tldr-box {
  border-left: 4px solid #b91c1c; /* deep red accent */
  background: #fef2f2;
  padding: 0.75rem 1rem;
  margin: 1rem 0 1.5rem;
  border-radius: 6px;
  font-size: 0.95rem;
}
.mtsm-tldr-box {
  border-left: 4px solid #b91c1c;
  background: #fef2f2;
  padding: 0.75rem 1rem;
  margin: 1rem 0 1.5rem;
  border-radius: 6px;
  font-size: 0.95rem;
}
/* TL;DR / Info Highlight Box */
.mtsm-tldr-box {
  border-left: 4px solid #b91c1c;        /* deep red accent */
  background: #fef2f2;                   /* soft red-tinted background */
  padding: 0.85rem 1.1rem;
  margin: 1.25rem 0 1.75rem;
  border-radius: 8px;
  font-size: 0.95rem;
  line-height: 1.6;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.03);
}

.mtsm-tldr-box strong {
  font-weight: 700;
}

/* Read Next box (optional wrapper if you want it styled) */
.mtsm-readnext-box {
  border-radius: 8px;
  padding: 1rem 1.25rem;
  margin: 1.5rem 0;
  background: #f3f4ff;                    /* soft indigo-tinted */
  border-left: 4px solid #4f46e5;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.03);
}

.mtsm-readnext-box h2,
.mtsm-readnext-box h3 {
  margin-top: 0;
  margin-bottom: 0.75rem;
}

.mtsm-readnext-box ul {
  margin: 0;
  padding-left: 1.1rem;
}

/* Subscribe CTA box */
.mtsm-subscribe-box {
  border-radius: 10px;
  padding: 1.5rem 1.75rem;
  margin: 2rem 0 1rem;
  background: #ecfeff;                    /* soft teal-tinted */
  border: 1px solid #bae6fd;
  box-shadow: 0 4px 10px rgba(15, 23, 42, 0.06);
  text-align: left;
}

.mtsm-subscribe-box h2,
.mtsm-subscribe-box h3 {
  margin-top: 0;
  margin-bottom: 0.5rem;
}

.mtsm-subscribe-box p {
  margin-bottom: 0.75rem;
  font-size: 0.95rem;
}

/* If you embed a simple form inside */
.mtsm-subscribe-box input[type="email"],
.mtsm-subscribe-box input[type="text"] {
  width: 100%;
  max-width: 360px;
  padding: 0.55rem 0.7rem;
  margin: 0.25rem 0 0.75rem;
  border-radius: 6px;
  border: 1px solid #cbd5f5;
  font-size: 0.95rem;
}

.mtsm-subscribe-box button,
.mtsm-subscribe-box input[type="submit"] {
  display: inline-block;
  padding: 0.5rem 1.25rem;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  font-size: 0.95rem;
  font-weight: 600;
  background: #0284c7;                 /* teal/blue button */
  color: #ffffff;
  transition: background 0.18s ease, transform 0.18s ease;
}

.mtsm-subscribe-box button:hover,
.mtsm-subscribe-box input[type="submit"]:hover {
  background: #0369a1;
  transform: translateY(-1px);
}
/* Table of Contents */
.mtsm-toc {
  border-radius: 8px;
  padding: 0.9rem 1.1rem;
  margin: 1rem 0 1.75rem;
  background: #f3f4f6;         /* light gray */
  border-left: 4px solid #4b5563;
}

.mtsm-toc h3 {
  margin-top: 0;
  margin-bottom: 0.5rem;
  font-size: 1rem;
  font-weight: 600;
}

.mtsm-toc ol {
  margin: 0;
  padding-left: 1.25rem;
  font-size: 0.95rem;
}

.mtsm-toc a {
  text-decoration: none;
}

.mtsm-toc a:hover {
  text-decoration: underline;
}

/* Tier boxes */
.mtsm-tier-box {
  border-radius: 10px;
  padding: 1.25rem 1.5rem;
  margin: 1.5rem 0;
  box-shadow: 0 3px 8px rgba(15, 23, 42, 0.04);
}

.mtsm-tier-box h2 {
  margin-top: 0;
  margin-bottom: 0.75rem;
}

/* Gold (Tier 1) */
.mtsm-tier-gold {
  background: #fef3c7;       /* amber-100 */
  border-left: 5px solid #d97706; /* amber-600 */
}

/* Blue (Tier 2) */
.mtsm-tier-blue {
  background: #eff6ff;       /* indigo-50 */
  border-left: 5px solid #4f46e5; /* indigo-600 */
}

/* Gray (Tier 3) */
.mtsm-tier-gray {
  background: #f9fafb;       /* gray-50 */
  border-left: 5px solid #6b7280; /* gray-500 */
}
/* Table of Contents */
.mtsm-toc {
  border-radius: 8px;
  padding: 0.9rem 1.1rem;
  margin: 1rem 0 1.75rem;
  background: #f3f4f6;         /* light gray */
  border-left: 4px solid #4b5563;
}

.mtsm-toc h3 {
  margin-top: 0;
  margin-bottom: 0.5rem;
  font-size: 1rem;
  font-weight: 600;
}

.mtsm-toc ol {
  margin: 0;
  padding-left: 1.25rem;
  font-size: 0.95rem;
}

.mtsm-toc a {
  text-decoration: none;
}

.mtsm-toc a:hover {
  text-decoration: underline;
}

/* Tier boxes */
.mtsm-tier-box {
  border-radius: 10px;
  padding: 1.25rem 1.5rem;
  margin: 1.5rem 0;
  box-shadow: 0 3px 8px rgba(15, 23, 42, 0.04);
}

.mtsm-tier-box h2 {
  margin-top: 0;
  margin-bottom: 0.75rem;
}

/* Gold (Tier 1) */
.mtsm-tier-gold {
  background: #fef3c7;       /* amber-100 */
  border-left: 5px solid #d97706; /* amber-600 */
}

/* Blue (Tier 2) */
.mtsm-tier-blue {
  background: #eff6ff;       /* indigo-50 */
  border-left: 5px solid #4f46e5; /* indigo-600 */
}

/* Gray (Tier 3) */
.mtsm-tier-gray {
  background: #f9fafb;       /* gray-50 */
  border-left: 5px solid #6b7280; /* gray-500 */
}
/* ===========================
   MTSM Tier Color Blocks
   =========================== */

/* Tier 1 — Gold / Amber */
.tier1 {
  background: #FEF3C7;          /* amber-100 */
  border-left: 6px solid #D97706; /* amber-600 */
  padding: 1.25rem 1.5rem;
  margin: 2rem 0;
  border-radius: 6px;
}

/* Tier 2 — Blue / Indigo */
.tier2 {
  background: #EFF6FF;            /* indigo-50 */
  border-left: 6px solid #4F46E5; /* indigo-600 */
  padding: 1.25rem 1.5rem;
  margin: 2rem 0;
  border-radius: 6px;
}

/* Tier 3 — Gray / Neutral */
.tier3 {
  background: #F9FAFB;            /* gray-50 */
  border-left: 6px solid #6B7280; /* gray-500 */
  padding: 1.25rem 1.5rem;
  margin: 2rem 0;
  border-radius: 6px;
}

/* TL;DR Box (matches Series Pages) */
.mtsm-tldr-box {
  background: #FEF3C7;
  border-left: 6px solid #D97706;
  padding: 1.25rem 1.5rem;
  margin: 1.5rem 0;
  border-radius: 6px;
  font-size: 1.05rem;
}

/* Footnotes Styling */
.mtsm-footnotes {
  font-size: 0.9rem;
  line-height: 1.45;
  margin-top: 2rem;
  border-top: 1px solid #E5E7EB;
  padding-top: 1rem;
}

.mtsm-footnotes li {
  margin-bottom: 0.75rem;
}

.mtsm-footnotes a.fn-backref {
  margin-left: 6px;
  text-decoration: none;
  color: #4F46E5;
}

/* Optional: Better TOC block spacing */
.mtsm-toc {
  background: #F3F4F6;
  border-left: 4px solid #6B7280;
  padding: 1rem 1.25rem;
  border-radius: 6px;
  margin: 2rem 0;
}
/* Tier 1 — Gold / Amber */
.tier1 {
  background: #FEF3C7;            /* light gold */
  border-left: 6px solid #D97706; /* dark gold */
  padding: 1.25rem 1.5rem;
  margin: 2rem 0;
  border-radius: 6px;
}

/* Tier 2 — Blue / Indigo */
.tier2 {
  background: #EFF6FF;            /* light blue */
  border-left: 6px solid #4F46E5; /* indigo */
  padding: 1.25rem 1.5rem;
  margin: 2rem 0;
  border-radius: 6px;
}

/* Tier 3 — Gray / Neutral */
.tier3 {
  background: #F9FAFB;            /* light gray */
  border-left: 6px solid #6B7280; /* medium gray */
  padding: 1.25rem 1.5rem;
  margin: 2rem 0;
  border-radius: 6px;
}

/* TL;DR / Bottom Line box */
.mtsm-tldr-box {
  background: #FEF3C7;
  border-left: 6px solid #D97706;
  padding: 1.25rem 1.5rem;
  margin: 1.5rem 0;
  border-radius: 6px;
  font-size: 1.05rem;
}
/* GOLD BOX */
.mtsm-gold-box {
  background: #fff7d6;       /* light gold */
  border-left: 6px solid #d4a017; /* deeper gold */
  padding: 18px 22px;
  margin: 24px 0;
  border-radius: 6px;
}

/* BLUE BOX */
.mtsm-blue-box {
  background: #e5f2ff;       /* light blue */
  border-left: 6px solid #1e73be; 
  padding: 18px 22px;
  margin: 24px 0;
  border-radius: 6px;
}

/* GRAY BOX */
.mtsm-gray-box {
  background: #f4f4f4;
  border-left: 6px solid #999;
  padding: 18px 22px;
  margin: 24px 0;
  border-radius: 6px;
}
/* ============================================================
   MTSM SIMPLE EXPLANATION BOX (Blue)
   Used for: "A Simple Explanation"
   ============================================================ */

.mtsm-simple-box {
  background: #f0f5ff;                  /* soft blue background */
  border-left: 4px solid #3b5ba7;       /* your MTSM blue */
  padding: 1.2rem 1.4rem;
  margin: 1.5rem 0;
  border-radius: 0.75rem;
  box-shadow: 0 4px 10px rgba(0,0,0,0.04);
  font-size: 1rem;
  line-height: 1.7;
}

.mtsm-simple-box h3 {
  margin-top: 0;
  color: #2a4c8d;
  font-weight: 700;
}

@media (max-width: 768px) {
  .mtsm-simple-box {
    padding: 1rem 1.2rem;
  }
}



/* ============================================================
   MTSM DEEPER LOOK BOX (Gray)
   Used for: commentary deep-dive section
   ============================================================ */

.mtsm-deeper-box {
  background: #f8f8f8;                  /* light neutral gray */
  border-left: 4px solid #9a9a9a;       /* medium gray border */
  padding: 1.25rem 1.45rem;
  margin: 1.75rem 0;
  border-radius: 0.75rem;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  font-size: 1rem;
  line-height: 1.7;
}

.mtsm-deeper-box h3 {
  margin-top: 0;
  color: #555;
  font-weight: 700;
}

@media (max-width: 768px) {
  .mtsm-deeper-box {
    padding: 1rem 1.2rem;
  }
}



/* ============================================================
   MTSM LESSONS BOX (Green)
   Used for: Lessons, Application, Key Truths for Today
   ============================================================ */

.mtsm-lessons-box {
  background: #e9f8ef;                  /* very light soft green */
  border-left: 4px solid #33b26e;       /* your signature green */
  padding: 1.25rem 1.5rem;
  margin: 1.75rem 0;
  border-radius: 0.75rem;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  font-size: 1rem;
  line-height: 1.7;
}

.mtsm-lessons-box h3 {
  margin-top: 0;
  color: #1c7a44;
  font-weight: 700;
}

.mtsm-lessons-box ul {
  margin: 0.65rem 0 0 1.2rem;
}

.mtsm-lessons-box li {
  margin: 0.45rem 0;
}

@media (max-width: 768px) {
  .mtsm-lessons-box {
    padding: 1.1rem 1.25rem;
  }
}
/* ---------------------------------------------------------
   GLOBAL SPACING IMPROVEMENTS FOR THIS SERIES
--------------------------------------------------------- */

.mtsm-series-wrapper p,
.mtsm-series-wrapper ul,
.mtsm-series-wrapper ol {
  margin-bottom: 1.1rem;
  line-height: 1.65;
}

.mtsm-series-wrapper h2,
.mtsm-series-wrapper h3 {
  margin-top: 2.2rem;
  margin-bottom: 1rem;
}

.mtsm-series-wrapper hr {
  margin: 2.5rem 0;
}


/* ---------------------------------------------------------
   TL;DR BOX (BLUE) — Quick Answer
--------------------------------------------------------- */

.mtsm-tldr-box {
  background: #e8f2ff;
  border-left: 6px solid #3b82f6;
  padding: 1.25rem 1.5rem;
  border-radius: 4px;
  margin: 1.5rem 0;
}

.mtsm-tldr-box strong {
  color: #1e40af;
}


/* ---------------------------------------------------------
   HIGHLIGHT BOX (GREEN) — “Is it sin?” Section
--------------------------------------------------------- */

.mtsm-highlight-box {
  background: #ecfdf5;
  border-left: 6px solid #10b981;
  padding: 1.25rem 1.5rem;
  border-radius: 4px;
  margin: 1.7rem 0;
}

.mtsm-highlight-box strong {
  color: #065f46;
}


/* ---------------------------------------------------------
   BACK TO TOP LINK
--------------------------------------------------------- */

.mtsm-back-to-top {
  margin-top: 1.25rem;
  text-align: right;
}

.mtsm-back-to-top a {
  font-size: 0.9rem;
  color: #2563eb;
  text-decoration: none;
  transition: color 0.2s ease;
}

.mtsm-back-to-top a:hover {
  color: #1e40af;
  text-decoration: underline;
}


/* ---------------------------------------------------------
   TABLE OF CONTENTS AREA
--------------------------------------------------------- */

.mtsm-toc {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  padding: 1.2rem 1.3rem;
  border-radius: 5px;
  margin: 1.5rem 0 2rem 0;
}

.mtsm-toc a {
  color: #0f172a;
  text-decoration: none;
}

.mtsm-toc a:hover {
  text-decoration: underline;
  color: #1e40af;
}


/* ---------------------------------------------------------
   COLLAPSIBLE DETAILS / SUMMARY STYLING
--------------------------------------------------------- */

details {
  border: 1px solid #e2e8f0;
  border-radius: 6px;
  padding: 0.9rem 1.1rem;
  margin: 1.4rem 0;
  background: #ffffff;
}

summary {
  font-weight: 600;
  font-size: 1.05rem;
  cursor: pointer;
  color: #1e293b;
  outline: none;
}

details[open] {
  background: #f9fafb;
}

details[open] summary {
  color: #0f172a;
  margin-bottom: 0.75rem;
}

/* Chevron Indicator */
summary::-webkit-details-marker {
  display: none;
}

summary:after {
  content: "▼";
  font-size: 0.75rem;
  float: right;
  margin-top: 0.3rem;
  color: #64748b;
  transition: transform 0.25s ease;
}

details[open] summary:after {
  transform: rotate(-180deg);
}


/* ---------------------------------------------------------
   BETTER SPACING FOR INTRO PARAGRAPHS
--------------------------------------------------------- */

.mtsm-intro p {
  margin-bottom: 1.3rem;
  font-size: 1.07rem;
  line-height: 1.7;
}
/* ---------------------------------------------------------
   GLOBAL SPACING IMPROVEMENTS FOR THIS SERIES
--------------------------------------------------------- */

.mtsm-series-wrapper p,
.mtsm-series-wrapper ul,
.mtsm-series-wrapper ol {
  margin-bottom: 1.1rem;
  line-height: 1.65;
}

.mtsm-series-wrapper h2,
.mtsm-series-wrapper h3 {
  margin-top: 2.2rem;
  margin-bottom: 1rem;
}

.mtsm-series-wrapper hr {
  margin: 2.5rem 0;
}


/* ---------------------------------------------------------
   TL;DR BOX (BLUE) — Quick Answer
--------------------------------------------------------- */

.mtsm-tldr-box {
  background: #e8f2ff;
  border-left: 6px solid #3b82f6;
  padding: 1.25rem 1.5rem;
  border-radius: 4px;
  margin: 1.5rem 0;
}

.mtsm-tldr-box strong {
  color: #1e40af;
}


/* ---------------------------------------------------------
   HIGHLIGHT BOX (GREEN) — “Is it sin?” Section
--------------------------------------------------------- */

.mtsm-highlight-box {
  background: #ecfdf5;
  border-left: 6px solid #10b981;
  padding: 1.25rem 1.5rem;
  border-radius: 4px;
  margin: 1.7rem 0;
}

.mtsm-highlight-box strong {
  color: #065f46;
}


/* ---------------------------------------------------------
   BACK TO TOP LINK
--------------------------------------------------------- */

.mtsm-back-to-top {
  margin-top: 1.25rem;
  text-align: right;
}

.mtsm-back-to-top a {
  font-size: 0.9rem;
  color: #2563eb;
  text-decoration: none;
  transition: color 0.2s ease;
}

.mtsm-back-to-top a:hover {
  color: #1e40af;
  text-decoration: underline;
}


/* ---------------------------------------------------------
   TABLE OF CONTENTS AREA
--------------------------------------------------------- */

.mtsm-toc {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  padding: 1.2rem 1.3rem;
  border-radius: 5px;
  margin: 1.5rem 0 2rem 0;
}

.mtsm-toc a {
  color: #0f172a;
  text-decoration: none;
}

.mtsm-toc a:hover {
  text-decoration: underline;
  color: #1e40af;
}


/* ---------------------------------------------------------
   COLLAPSIBLE DETAILS / SUMMARY STYLING
--------------------------------------------------------- */

details {
  border: 1px solid #e2e8f0;
  border-radius: 6px;
  padding: 0.9rem 1.1rem;
  margin: 1.4rem 0;
  background: #ffffff;
}

summary {
  font-weight: 600;
  font-size: 1.05rem;
  cursor: pointer;
  color: #1e293b;
  outline: none;
}

details[open] {
  background: #f9fafb;
}

details[open] summary {
  color: #0f172a;
  margin-bottom: 0.75rem;
}

/* Chevron Indicator */
summary::-webkit-details-marker {
  display: none;
}

summary:after {
  content: "▼";
  font-size: 0.75rem;
  float: right;
  margin-top: 0.3rem;
  color: #64748b;
  transition: transform 0.25s ease;
}

details[open] summary:after {
  transform: rotate(-180deg);
}


/* ---------------------------------------------------------
   BETTER SPACING FOR INTRO PARAGRAPHS
--------------------------------------------------------- */

.mtsm-intro p {
  margin-bottom: 1.3rem;
  font-size: 1.07rem;
  line-height: 1.7;
}
/* ---------------------------------------------------------
   GLOBAL SPACING IMPROVEMENTS FOR THIS SERIES
--------------------------------------------------------- */

.mtsm-series-wrapper p,
.mtsm-series-wrapper ul,
.mtsm-series-wrapper ol {
  margin-bottom: 1.1rem;
  line-height: 1.65;
}

.mtsm-series-wrapper h2,
.mtsm-series-wrapper h3 {
  margin-top: 2.2rem;
  margin-bottom: 1rem;
}

.mtsm-series-wrapper hr {
  margin: 2.5rem 0;
}


/* ---------------------------------------------------------
   QUICK ANSWER BOX — GOLD
--------------------------------------------------------- */

.mtsm-tldr-box {
  background: #fff8e1;               /* light gold */
  border-left: 6px solid #fbbf24;    /* golden amber */
  padding: 1.25rem 1.5rem;
  border-radius: 4px;
  margin: 1.5rem 0;
}

.mtsm-tldr-box strong {
  color: #b45309;                    /* deep gold/brown */
}


/* ---------------------------------------------------------
   SIMPLE EXPLANATION BOX — BLUE
--------------------------------------------------------- */

.mtsm-simple-box {
  background: #e8f2ff;               /* soft blue */
  border-left: 6px solid #3b82f6;    /* bright MTSM blue */
  padding: 1.25rem 1.5rem;
  border-radius: 4px;
  margin: 1.7rem 0;
}

.mtsm-simple-box strong {
  color: #1e40af;                    /* deep blue */
}


/* ---------------------------------------------------------
   DEEPER LOOK BOX — GRAY
--------------------------------------------------------- */

.mtsm-deeper-box {
  background: #f3f4f6;               /* light gray */
  border-left: 6px solid #6b7280;    /* medium slate gray */
  padding: 1.25rem 1.5rem;
  border-radius: 4px;
  margin: 1.7rem 0;
}

.mtsm-deeper-box strong {
  color: #374151;                    /* dark gray */
}


/* ---------------------------------------------------------
   OPTIONAL HIGHLIGHT BOX — GREEN (for “Is it sin?”)
--------------------------------------------------------- */

.mtsm-highlight-box {
  background: #ecfdf5;               /* very light mint */
  border-left: 6px solid #10b981;    /* emerald green */
  padding: 1.25rem 1.5rem;
  border-radius: 4px;
  margin: 1.7rem 0;
}

.mtsm-highlight-box strong {
  color: #065f46;
}


/* ---------------------------------------------------------
   BACK TO TOP LINK
--------------------------------------------------------- */

.mtsm-back-to-top {
  margin-top: 1.25rem;
  text-align: right;
}

.mtsm-back-to-top a {
  font-size: 0.9rem;
  color: #2563eb;
  text-decoration: none;
  transition: color 0.2s ease;
}

.mtsm-back-to-top a:hover {
  color: #1e40af;
  text-decoration: underline;
}


/* ---------------------------------------------------------
   TABLE OF CONTENTS AREA
--------------------------------------------------------- */

.mtsm-toc {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  padding: 1.2rem 1.3rem;
  border-radius: 5px;
  margin: 1.5rem 0 2rem 0;
}

.mtsm-toc a {
  color: #0f172a;
  text-decoration: none;
}

.mtsm-toc a:hover {
  text-decoration: underline;
  color: #1e40af;
}


/* ---------------------------------------------------------
   COLLAPSIBLE DETAILS / SUMMARY STYLING
--------------------------------------------------------- */

details {
  border: 1px solid #e5e7eb;
  border-radius: 6px;
  padding: 0.9rem 1.1rem;
  margin: 1.4rem 0;
  background: #ffffff;
}

summary {
  font-weight: 600;
  font-size: 1.05rem;
  cursor: pointer;
  color: #1e293b;
  outline: none;
}

details[open] {
  background: #f9fafb;
}

details[open] summary {
  color: #0f172a;
  margin-bottom: 0.75rem;
}

summary::-webkit-details-marker {
  display: none;
}

/* Chevron indicator */
summary:after {
  content: "▼";
  font-size: 0.75rem;
  float: right;
  margin-top: 0.3rem;
  color: #64748b;
  transition: transform 0.25s ease;
}

details[open] summary:after {
  transform: rotate(-180deg);
}


/* ---------------------------------------------------------
   INTRO PARAGRAPH SPACING
--------------------------------------------------------- */

.mtsm-intro p {
  margin-bottom: 1.3rem;
  font-size: 1.08rem;
  line-height: 1.7;
}
/* ---------------------------------------------------------
   GLOBAL SPACING IMPROVEMENTS FOR THIS SERIES
--------------------------------------------------------- */

.mtsm-series-wrapper p,
.mtsm-series-wrapper ul,
.mtsm-series-wrapper ol {
  margin-bottom: 1.1rem;
  line-height: 1.65;
}

.mtsm-series-wrapper h2,
.mtsm-series-wrapper h3 {
  margin-top: 2.2rem;
  margin-bottom: 1rem;
}

.mtsm-series-wrapper hr {
  margin: 2.5rem 0;
}


/* ---------------------------------------------------------
   QUICK ANSWER BOX — GOLD
--------------------------------------------------------- */

.mtsm-tldr-box {
  background: #fff8e1;               /* light gold */
  border-left: 6px solid #fbbf24;    /* golden amber */
  padding: 1.25rem 1.5rem;
  border-radius: 4px;
  margin: 1.5rem 0;
}

.mtsm-tldr-box strong {
  color: #b45309;                    /* deep gold/brown */
}


/* ---------------------------------------------------------
   SIMPLE EXPLANATION BOX — BLUE
--------------------------------------------------------- */

.mtsm-simple-box {
  background: #e8f2ff;               /* soft blue */
  border-left: 6px solid #3b82f6;    /* bright MTSM blue */
  padding: 1.25rem 1.5rem;
  border-radius: 4px;
  margin: 1.7rem 0;
}

.mtsm-simple-box strong {
  color: #1e40af;                    /* deep blue */
}


/* ---------------------------------------------------------
   DEEPER LOOK BOX — GRAY
--------------------------------------------------------- */

.mtsm-deeper-box {
  background: #f3f4f6;               /* light gray */
  border-left: 6px solid #6b7280;    /* medium slate gray */
  padding: 1.25rem 1.5rem;
  border-radius: 4px;
  margin: 1.7rem 0;
}

.mtsm-deeper-box strong {
  color: #374151;                    /* dark gray */
}


/* ---------------------------------------------------------
   OPTIONAL HIGHLIGHT BOX — GREEN (for “Is it sin?”)
--------------------------------------------------------- */

.mtsm-highlight-box {
  background: #ecfdf5;               /* very light mint */
  border-left: 6px solid #10b981;    /* emerald green */
  padding: 1.25rem 1.5rem;
  border-radius: 4px;
  margin: 1.7rem 0;
}

.mtsm-highlight-box strong {
  color: #065f46;
}


/* ---------------------------------------------------------
   BACK TO TOP LINK
--------------------------------------------------------- */

.mtsm-back-to-top {
  margin-top: 1.25rem;
  text-align: right;
}

.mtsm-back-to-top a {
  font-size: 0.9rem;
  color: #2563eb;
  text-decoration: none;
  transition: color 0.2s ease;
}

.mtsm-back-to-top a:hover {
  color: #1e40af;
  text-decoration: underline;
}


/* ---------------------------------------------------------
   TABLE OF CONTENTS AREA
--------------------------------------------------------- */

.mtsm-toc {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  padding: 1.2rem 1.3rem;
  border-radius: 5px;
  margin: 1.5rem 0 2rem 0;
}

.mtsm-toc a {
  color: #0f172a;
  text-decoration: none;
}

.mtsm-toc a:hover {
  text-decoration: underline;
  color: #1e40af;
}


/* ---------------------------------------------------------
   COLLAPSIBLE DETAILS / SUMMARY STYLING
--------------------------------------------------------- */

details {
  border: 1px solid #e5e7eb;
  border-radius: 6px;
  padding: 0.9rem 1.1rem;
  margin: 1.4rem 0;
  background: #ffffff;
}

summary {
  font-weight: 600;
  font-size: 1.05rem;
  cursor: pointer;
  color: #1e293b;
  outline: none;
}

details[open] {
  background: #f9fafb;
}

details[open] summary {
  color: #0f172a;
  margin-bottom: 0.75rem;
}

summary::-webkit-details-marker {
  display: none;
}

/* Chevron indicator */
summary:after {
  content: "▼";
  font-size: 0.75rem;
  float: right;
  margin-top: 0.3rem;
  color: #64748b;
  transition: transform 0.25s ease;
}

details[open] summary:after {
  transform: rotate(-180deg);
}


/* ---------------------------------------------------------
   INTRO PARAGRAPH SPACING
--------------------------------------------------------- */

.mtsm-intro p {
  margin-bottom: 1.3rem;
  font-size: 1.08rem;
  line-height: 1.7;
}
/* -----------------------------------------------------------
   SIDEBAR BOX STYLE
   ----------------------------------------------------------- */

.mtsm-sidebar-box {
  background-color: #e8f7f9;        /* soft teal background */
  border-left: 5px solid #1496a2;   /* bold teal accent bar */
  padding: 18px 22px;
  margin: 28px 0;
  border-radius: 6px;
  font-size: 1rem;
  line-height: 1.55;
}

.mtsm-sidebar-box strong {
  display: block;
  margin-bottom: 8px;
  font-size: 1.05rem;
  color: #0d6770;                   /* darker teal for heading */
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Optional: slight fade-in animation for polish */
.mtsm-sidebar-box {
  animation: sidebarFade 0.4s ease-in-out;
}

@keyframes sidebarFade {
  from { opacity: 0; transform: translateY(6px); }
  to   { opacity: 1; transform: translateY(0);  }
}
/* Force bold text inside the HOW TO USE block to be black */
.mtsm-howto-box strong {
  color: #000000 !important;
  font-weight: 700;
}
/* Force ALL text inside this post's wrapper to be black */
.mtsm-black-text,
.mtsm-black-text * {
  color: #000000 !important;
}
/* ================================
   JESUS & THE FEASTS / SERIES CSS
   ================================ */

/* Color variables (safe for modern browsers) */
:root {
  --mtsm-gold-bg: #f9f0c5;
  --mtsm-gold-border: #e0c56a;

  --mtsm-blue-bg: #e5f0ff;
  --mtsm-blue-border: #7aa4d8;

  --mtsm-gray-bg: #f5f5f8;
  --mtsm-gray-border: #c6c9d5;

  --mtsm-green-bg: #e3f7ea;
  --mtsm-green-border: #7abc8b;

  --mtsm-toc-bg: #ffffff;
  --mtsm-toc-border: #d4d7e0;

  --mtsm-accent-text: #004c80;
}

/* Ensure all body text is black (including in boxes) */
body,
body p,
body li,
body span,
body em,
body strong,
body b {
  color: #111111;
}

/* Strong / bold should be black, not box-colored */
.mtsm-highlight-box strong,
.mtsm-tldr-box strong,
.mtsm-simple-box strong,
.mtsm-deeper-box strong,
.mtsm-toc strong,
.mtsm-side-note strong,
details summary strong,
.mtsm-highlight-box b,
.mtsm-tldr-box b,
.mtsm-simple-box b,
.mtsm-deeper-box b,
.mtsm-toc b,
.mtsm-side-note b,
details summary b {
  color: #111111;
  font-weight: 700;
}

/* General spacing for series content */
.mtsm-series-content p {
  margin-bottom: 1.1em;
}

.mtsm-series-content h2,
.mtsm-series-content h3 {
  margin-top: 1.8em;
  margin-bottom: 0.7em;
}

/* --------------------------------
   HERO / START BOX STYLES
   -------------------------------- */

.mtsm-start-box,
.mtsm-highlight-box {
  background-color: var(--mtsm-green-bg);
  border: 1px solid var(--mtsm-green-border);
  border-radius: 8px;
  padding: 1.5rem 1.75rem;
  margin: 1.5rem 0;
}

.mtsm-start-box h2,
.mtsm-highlight-box h2 {
  margin-top: 0;
  margin-bottom: 0.75rem;
  font-size: 1.25rem;
  font-weight: 700;
  color: #111111;
}

/* --------------------------------
   TABLE OF CONTENTS
   -------------------------------- */

.mtsm-toc {
  background-color: var(--mtsm-toc-bg);
  border: 1px solid var(--mtsm-toc-border);
  border-radius: 8px;
  padding: 1.25rem 1.5rem;
  margin: 1.5rem 0;
}

.mtsm-toc h2 {
  margin-top: 0;
  margin-bottom: 0.75rem;
  font-size: 1.2rem;
  font-weight: 700;
  color: #111111;
}

.mtsm-toc ol {
  margin: 0;
  padding-left: 1.25rem;
}

.mtsm-toc li {
  margin-bottom: 0.4rem;
}

.mtsm-toc a {
  text-decoration: none;
  color: var(--mtsm-accent-text);
}

.mtsm-toc a:hover,
.mtsm-toc a:focus {
  text-decoration: underline;
}

/* --------------------------------
   QUICK ANSWER (GOLD BOX)
   -------------------------------- */

.mtsm-tldr-box {
  background-color: var(--mtsm-gold-bg);
  border: 1px solid var(--mtsm-gold-border);
  border-radius: 8px;
  padding: 1.5rem 1.75rem;
  margin: 1.75rem 0;
}

.mtsm-tldr-box h2 {
  margin-top: 0;
  margin-bottom: 0.75rem;
  font-size: 1.25rem;
  font-weight: 700;
  color: #111111;
}

/* --------------------------------
   SIMPLE EXPLANATION (BLUE BOX)
   -------------------------------- */

.mtsm-simple-box {
  background-color: var(--mtsm-blue-bg);
  border: 1px solid var(--mtsm-blue-border);
  border-radius: 8px;
  padding: 1.5rem 1.75rem;
  margin: 1.75rem 0;
}

.mtsm-simple-box h2 {
  margin-top: 0;
  margin-bottom: 0.75rem;
  font-size: 1.25rem;
  font-weight: 700;
  color: #111111;
}

/* --------------------------------
   DEEPER LOOK (LIGHT GRAY BOX)
   -------------------------------- */

.mtsm-deeper-box {
  background-color: var(--mtsm-gray-bg);
  border: 1px solid var(--mtsm-gray-border);
  border-radius: 8px;
  padding: 1.5rem 1.75rem;
  margin: 1.75rem 0;
}

.mtsm-deeper-box h2 {
  margin-top: 0;
  margin-bottom: 0.75rem;
  font-size: 1.25rem;
  font-weight: 700;
  color: #111111;
}

/* --------------------------------
   DETAILS / COLLAPSIBLE SECTIONS
   (used for “A Deeper Look”)
   -------------------------------- */

details {
  margin: 1.75rem 0;
  border-radius: 8px;
  border: 1px solid var(--mtsm-gray-border);
  background-color: var(--mtsm-gray-bg);
  padding: 0.75rem 1rem 1rem 1rem;
}

details[open] {
  padding-bottom: 1.25rem;
}

details summary {
  list-style: none;
  cursor: pointer;
  font-weight: 700;
  color: #111111;
  margin: 0;
}

/* Remove default triangle marker in most browsers */
details summary::-webkit-details-marker {
  display: none;
}

/* Add a custom disclosure icon */
details summary::before {
  content: "➕ ";
  font-weight: 700;
}

details[open] summary::before {
  content: "➖ ";
}

/* Inner content spacing */
details > *:not(summary) {
  margin-top: 0.75rem;
}

/* --------------------------------
   BACK TO TOP LINKS
   -------------------------------- */

.mtsm-back-to-top {
  text-align: right;
  margin: 0.5rem 0 1.75rem 0;
  font-size: 0.9rem;
}

.mtsm-back-to-top a {
  text-decoration: none;
  color: var(--mtsm-accent-text);
  font-weight: 600;
}

.mtsm-back-to-top a:hover,
.mtsm-back-to-top a:focus {
  text-decoration: underline;
}

/* --------------------------------
   OPTIONAL: SIDE NOTE / SIDEBAR BOX
   -------------------------------- */

.mtsm-side-note {
  background-color: var(--mtsm-gray-bg);
  border: 1px solid var(--mtsm-gray-border);
  border-radius: 6px;
  padding: 1rem 1.25rem;
  margin: 1.25rem 0;
  font-size: 0.95rem;
}

.mtsm-side-note h3 {
  margin-top: 0;
  margin-bottom: 0.5rem;
  font-size: 1.05rem;
  font-weight: 700;
  color: #111111;
}
/* === MTSM Media Cards === */
.mtsm-media-block{
  margin:28px 0;
  padding:18px;
  border:1px solid #e7e7e7;
  border-radius:16px;
  background:#fff;
}
.mtsm-media-head h2{margin:0 0 6px 0;font-size:24px;}
.mtsm-muted{margin:0;color:#555;}

.mtsm-media-grid{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:16px;
  margin-top:16px;
}
@media (max-width:820px){
  .mtsm-media-grid{grid-template-columns:1fr;}
}

.mtsm-media-card{
  border:1px solid #e7e7e7;
  border-radius:16px;
  padding:16px;
  background:#fff;
}
.mtsm-media-card h3{margin:10px 0 6px;font-size:20px;}
.mtsm-media-sub{margin:0 0 12px;color:#555;font-size:14px;}

.mtsm-media-image{
  border-radius:14px;
  overflow:hidden;
  background:#f5f5f5;
}
.mtsm-media-image img{
  width:100%;
  height:auto;
  display:block;
}

.mtsm-btn{
  display:inline-block;
  padding:10px 12px;
  border-radius:12px;
  text-decoration:none;
  border:1px solid #1f2937;
  background:#1f2937;
  color:#fff;
  font-weight:700;
  font-size:14px;
}
.mtsm-btn:hover{opacity:.92;}
/* MTSM — Quick Answer (Light Gold) */
.mtsm-quick-box{
  background:#fff4cc;       /* light gold */
  border:1px solid #e6c976; /* warm gold border */
  border-radius:8px;
  padding:1.25rem;
  margin:1.25rem 0;
}
/* Desktop-only sidebar ad */
.mtsm-desktop-only { display: none; }

@media (min-width: 900px) {
  .mtsm-desktop-only { display: block; }
}
