/** Shopify CDN: Minification failed

Line 436:0 All "@import" rules must come first

**/
/* ============================================
   BELLUMERA ARTICLE — LIGHT CARD GRADIENT TEMPLATE
   Filename: bellumera-article.css
   ============================================ */

/* ---------- VARIABLES (LIGHT THEME) ---------- */
:root {
  /* Backgrounds */
  --bm-bg-gradient: linear-gradient(180deg, 
      rgba(0, 221, 255, 0.18) 0%,
      rgba(50, 30, 90, 0.12) 50%,
      rgba(107, 70, 193, 0.25) 100%
    );
  --bm-bg-fallback: #f8f9fa;
  --bm-card-bg: rgba(255, 255, 255, 0.95);
  --bm-bg-pullquote: #f1f3f5;
  
  /* Text & Borders */
  --bm-text: #111111;
  --bm-text-secondary: #484450;
  --bm-text-muted: #8A8494;
  --bm-border: rgba(0, 0, 0, 0.08);
  
  /* Accents */
  --bm-accent: #5B3E8A; 
  --bm-accent-dim: rgba(91, 62, 138, 0.1);
  
  /* Fonts - UNIFIED TO MONTSERRAT */
  --bm-serif: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --bm-sans: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  
  /* Utilities */
  --bm-card-radius: 16px;
  --bm-card-shadow: 0 10px 30px -5px rgba(0, 0, 0, 0.08), 0 5px 15px -8px rgba(0,0,0,0.05);
}

.card-shadow { box-shadow: var(--bm-card-shadow); }

/* ---------- PAGE OVERRIDE ---------- */
.bellumera-article-section {
  background: var(--bm-bg-fallback);
  background: var(--bm-bg-gradient);
  padding-top: 40px;
  padding-bottom: 80px;
}

/* ---------- ARTICLE MAIN CARD ---------- */
.bm-article {
  max-width: 860px;
  margin: 0 auto;
  background: var(--bm-card-bg);
  border-radius: var(--bm-card-radius);
  padding: 48px 40px 0; 
  color: var(--bm-text);
  font-family: var(--bm-sans);
  border: 1px solid rgba(255, 255, 255, 0.4);
  position: relative; 
  overflow: hidden; 
}

.bm-breadcrumb,
.bm-article__header,
.bm-article__hero,
.bm-article__content {
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

/* ---------- BREADCRUMB ---------- */
.bm-breadcrumb {
  margin-top: 0;
  margin-bottom: 24px; 
  font-size: 13px;
  color: var(--bm-text-muted);
  letter-spacing: 0.3px;
  text-align: center; 
}

.bm-breadcrumb a {
  color: var(--bm-text-muted);
  text-decoration: none;
  transition: color 0.2s;
}

.bm-breadcrumb a:hover { color: var(--bm-accent); }
.bm-breadcrumb__sep { margin: 0 8px; opacity: 0.5; }

/* ---------- ARTICLE HEADER ---------- */
.bm-article__header {
  margin-bottom: 32px; 
  text-align: center; 
}

.bm-article__title {
  font-family: var(--bm-serif);
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 700;
  line-height: 1.15;
  color: var(--bm-text);
  margin: 0 0 16px;
  text-transform: uppercase;
}

.bm-article__meta {
  font-size: 13px;
  color: var(--bm-text-secondary);
  display: flex;
  gap: 8px;
  align-items: center;
  justify-content: center; 
  flex-wrap: wrap;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--bm-border);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.bm-meta-tag {
    color: var(--bm-accent);
    font-weight: 700;
}

.bm-article__meta-sep { opacity: 0.4; }

/* ---------- HERO IMAGE ---------- */
.bm-article__hero {
  max-width: 100%; 
  margin: 32px auto 48px; 
}

.bm-article__hero-img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
}

/* ---------- ARTICLE CONTENT TYPOGRAPHY ---------- */
.bm-article__content p {
  margin-bottom: 24px;
  color: var(--bm-text);
  font-size: 17px;
  line-height: 1.8;
  font-family: var(--bm-sans);
}

.bm-article__content h2 {
  font-family: var(--bm-serif);
  font-size: 32px;
  font-weight: 700;
  color: var(--bm-text);
  margin: 48px 0 24px; 
  line-height: 1.2;
}

.bm-article__content h3 {
  font-family: var(--bm-serif);
  font-size: 24px;
  font-weight: 700;
  color: var(--bm-text);
  margin: 36px 0 16px;
  line-height: 1.3;
}

.bm-article__content a {
  color: var(--bm-accent);
  text-decoration: underline;
  text-underline-offset: 3px;
  font-weight: 600;
  transition: opacity 0.2s;
}

.bm-article__content a:hover { opacity: 0.8; }

.bm-article__content img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  margin: 32px 0;
  box-shadow: var(--bm-card-shadow);
}

.bm-article__content ul,
.bm-article__content ol {
  margin: 24px 0 32px 24px;
  color: var(--bm-text);
  font-size: 17px;
  line-height: 1.8;
}

.bm-article__content li {
  margin-bottom: 12px;
  padding-left: 8px;
}

/* ---------- PULL QUOTE ---------- */
.bm-article__content blockquote {
  margin: 48px -20px;
  padding: 32px 40px;
  background: var(--bm-bg-pullquote);
  border-left: 4px solid #000;
  border-radius: 8px;
}

.bm-article__content blockquote p {
  font-family: var(--bm-sans);
  font-size: 20px;
  font-weight: 700;
  line-height: 1.5;
  color: #000;
  margin: 0;
  font-style: normal;
}

/* ---------- RELATED ARTICLES ---------- */
.bm-related {
  max-width: 900px;
  margin: 64px auto 0; 
  padding: 0 20px;
}

.bm-related__title {
  font-family: var(--bm-serif);
  font-size: 24px;
  color: var(--bm-text);
  margin: 0 0 32px;
  font-weight: 700;
  text-align: center;
}

.bm-related__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.bm-related__card {
  background: var(--bm-card-bg);
  border-radius: 12px;
  padding: 28px;
  text-decoration: none;
  display: block;
  transition: transform 0.2s, box-shadow 0.2s;
  border: 1px solid rgba(255,255,255,0.5);
  height: 100%;
}

.bm-related__card:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.1), 0 5px 15px rgba(0,0,0,0.05);
}

.bm-related__tag {
  font-size: 11px;
  color: var(--bm-accent);
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  display: block;
  margin-bottom: 12px;
}

.bm-related__card-title {
  font-family: var(--bm-serif);
  font-size: 18px;
  color: var(--bm-text);
  line-height: 1.4;
  margin: 0 0 12px;
  font-weight: 700;
}

.bm-related__excerpt {
  font-size: 14px;
  color: var(--bm-text-secondary);
  line-height: 1.6;
  margin: 0;
}

/* =========================================
   NOX CTA SECTION
   ========================================= */
.nox-cta {
  margin-top: 48px;
  background: #0a0a14;
  text-align: center;
  overflow: hidden;
  border-radius: 0 0 var(--bm-card-radius) var(--bm-card-radius);
  margin-left: -40px;
  margin-right: -40px;
}

.nox-cta__image-wrap {
  padding: 40px 40px 0;
}

.nox-cta__image {
  width: 100%;
  max-width: 480px;
  height: auto;
  border-radius: 8px;
  display: block;
  margin: 0 auto;
}

.nox-cta__body {
  padding: 32px 32px 44px;
}

.nox-cta__title {
  font-family: var(--bm-serif);
  font-size: 26px;
  font-weight: 700;
  color: #f0ece6;
  margin-bottom: 4px;
  letter-spacing: -0.01em;
}

.nox-cta__subtitle {
  font-family: var(--bm-sans);
  font-size: 13px;
  font-weight: 500;
  color: rgba(0, 221, 255, 0.5);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 20px;
}

.nox-cta__description {
  font-family: var(--bm-sans);
  font-size: 15px;
  color: rgba(240, 236, 230, 0.55);
  line-height: 1.65;
  max-width: 420px;
  margin: 0 auto 24px;
}

.nox-cta__divider {
  width: 50px;
  height: 1px;
  background: rgba(255, 255, 255, 0.08);
  margin: 0 auto 20px;
}

.nox-cta__features {
  font-family: var(--bm-sans);
  font-size: 11px;
  color: rgba(240, 236, 230, 0.3);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  line-height: 2;
  margin-bottom: 28px;
}

.nox-cta__button {
  display: inline-block;
  font-family: var(--bm-sans);
  font-size: 15px;
  font-weight: 600;
  color: #0a0a14;
  background-color: #00ddff;
  padding: 14px 40px;
  text-decoration: none;
  border-radius: 6px;
  transition: background-color 0.2s, transform 0.15s;
}

.nox-cta__button:hover {
  background-color: #33e5ff;
  transform: translateY(-1px);
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 900px) {
   .bellumera-article-section {
       padding: 20px 16px 60px;
   }
   .bm-article {
       padding: 32px 24px 0;
   }
   .bm-article__content blockquote {
    margin: 32px 0;
    padding: 24px;
  }
  .nox-cta {
  margin-left: -24px;
  margin-right: -24px;
}
}

@media (max-width: 768px) {
  /* TIGHTER MOBILE SPACING */
  .bm-article__title { font-size: 32px; margin-bottom: 12px; }
  .bm-article__header { margin-bottom: 24px; }
  .bm-article__hero { margin: 24px auto 32px; }
  .bm-article__content h2 { font-size: 26px; margin: 36px 0 16px; }
  .bm-article__content h3 { font-size: 20px; margin: 28px 0 12px; }
  .bm-related__grid { grid-template-columns: 1fr; }

  /* NOX CTA Mobile */
  .nox-cta {
    margin-top: 36px;
  }

  .nox-cta__image-wrap {
    padding: 28px 20px 0;
  }

  .nox-cta__body {
    padding: 28px 20px 36px;
  }

  .nox-cta__title {
    font-size: 22px;
  }

  .nox-cta__description {
    font-size: 14.5px;
  }

  .nox-cta__button {
    display: block;
    width: 100%;
    text-align: center;
    padding: 14px 20px;
  }
}

/* ---------- GOOGLE FONTS IMPORT ---------- */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;800&display=swap');