@import url('https://fonts.googleapis.com/css?family=Inter:wght@600;700;800;900');

    :root{
    	  /* =========================
     BRAND COLORS (LOCKED)
     ========================= */
		  --text: #050f28;  /* main text - charcoal */
		  --bg:   #fefaec;  /* main background - vanilla */

		  /* Accents */
		  --teal-link: #26a8ab;     
		  --teal-link-hover: #2fc8cb;
		  --visited: #6b7280;       
		  --active: #2fc8cb;
		  --gold: #d1a45a;

  --hero-h: 82vh;      /* main hero height */
  --hero-min: 600px;   /* never smaller than this */
  --hero-max: 900px;   /* never taller than this */


}

:root{
  --content-left: 50px;   /* you’re using 50px all over, so formalize it */

		  /* Gold family (muted + usable; logo gold stays image-based) */
		  --gold: #c9a24d;          /* borders, rules, accents */
		  --gold-soft: rgba(201, 162, 77, 0.35);

		  /* Dark UI (hero / overlays / glass areas) */
		  --night: #050b15;
		  --night-2: #06162a;
		  /* DougC core neutrals */
  		--dc-char


  --color1: #f8efd4;   /* table colors, ligth, med, dark */
  --color2: #e7ddc2;
  --color3: #def3f5;  /* hover accent */

  --article-row-bg: #f8efd4;   /* color1 */
  --article-row-alt: #e7ddc2;  /* color2 – you already used on list rows */
  --article-hover:  #def3f5;   /* color3 */


}
:root{
  --dc-charcoal-rgb: 5 15 40; /* “charcoal” */
  --dc-vanilla-rgb: 254 250 236; /* soft vanilla */


		  /* Lines, subtle UI borders */
		  --line: rgba(5, 15, 40, 0.18);
      --bg: #07080b;
      --text: #f4f6fb;
      --muted: rgba(244,246,251,0.78);

      /* Sticky sizing */
      --panel-w: 400px;

      /* Hero sizing
      --hero-h: 78vh;
      --hero-min: 560px;
      --hero-max: 820px;
*/

      --radius: 18px;
      --btn: rgba(0,0,0,0.28);
      --btn-border: rgba(255,255,255,0.16);
      --btn-hover: rgba(255,255,255,0.10);
    }

    * { box-sizing: border-box; }
    html, body { height: 100%; }
    body{
      margin: 0;
      font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
      background: var(--bg);
	  color: var(--charcoal);    
	  }

h1, h2, h3, h4, h5, h6, p, ul, li {
  color: var(--charcoal);
}

ul,
ol {
  color: inherit;
}

li {
  color: inherit;
  font-weight: inherit;
}

ul,
ol {
  margin: 0.75em 0 1em 0;   /* vertical spacing only */
  padding: 0;               /* we will indent using padding-left in the real ul rule */
}


/^ ^^^^^^^^^^ G L O B A L   U L  **************/

/* Global UL / LI styling – FINAL */
ul {
  list-style-type: square;
  list-style-position: outside;
  margin: 0.75em 0 1em 70px;   /* ← 50px (div) + 20px indent */
  padding-left: 0;             /* must be zero or bullets drift apart */
}

li {
  margin: 0.35em 0;
  line-height: 1.6;
}

ul li::marker {
  color: rgba(5, 15, 40, 0.75); /* lighter charcoal */
  font-size: 0.9em;
}

/* Global list styling */

/* Legal / disclaimer list styling */
ul.legal-list {
  list-style-type: square;
  list-style-position: outside;
  margin: 0.75em 0 1em 50px;  /* 50px from div + ~20px extra indent */
  padding-left: 0;
}

ul.legal-list li {
  margin: 0.35em 0;
  line-height: 1.6;
}

ul.legal-list li::marker {
  color: rgba(5, 15, 40, 0.75); /* slightly lighter charcoal */
  font-size: 0.9em;
}
/* Legal / disclaimer list styling */





/**********menu only***********/
a.menu {
  color: #fefaec;
  text-decoration: none;
  font-weight: inherit;
  transition: color 0.15s ease;
}
a.menu:visited {
  color: #fefaec;
  text-decoration: none;
  font-weight: inherit;
  transition: color 0.15s ease;
}
a.menu:hover,
a.menu:active {
  color: #fefaec;
  text-decoration: underline;
  text-underline-offset: 3px;
}

    /* ===== HERO WRAP ===== */
/* ===== HERO WRAP (RESET TO ORIGINAL) ===== */
.hero {
  position: relative;
  width: 100%;
  height: 80vh;      /* or 78vh, 82vh, whatever — but no min/max */
  overflow: hidden;
  display: grid;
  place-items: stretch;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  background: #000;
}

.hero::before {
  content:"";
  position:absolute;
  inset:0;

  background:
    linear-gradient(90deg,
      rgba(0,0,0,0.35) 0%,
      rgba(0,0,0,0.12) 45%,
      rgba(0,0,0,0.22) 100%
    ),
    var(--hero-bg);

  background-size: cover;        /* let it scale elegantly */
  background-position: center 42%;
  background-repeat: no-repeat;

  filter: saturate(1.12) contrast(1.06) brightness(1.08);
}




/* kill the heavy vignette — keep it subtle */
.hero::after{
  content:"";
  position:absolute; inset:0;
  background: radial-gradient(circle at 70% 35%, rgba(0,0,0,0.00), rgba(0,0,0,0.25));
  pointer-events:none;
}

    /* ===== TOP RIGHT SOCIAL ===== */
    .social{
      position: absolute;
      top: 18px;
      right: 250px;
      z-index: 30;
      display: flex;
			width:30px; 
			height:30px;
      align-items: center;
    }
    .social a{
      width: 30px;
      height: 30px;
      border-radius: 999px;
      display:grid;
      place-items:center;
      background: rgba(0,0,0,0.28);
      border: 1px solid rgba(255,255,255,0.18);
      backdrop-filter: blur(6px);
      -webkit-backdrop-filter: blur(6px);
      font-weight: 800;
      letter-spacing: 0.4px;
      user-select: none;
    }
    .social a:hover{
      background: rgba(255,255,255,0.10);
      transform: translateY(-1px);
    }

    /* ===== HERO CONTENT GRID ===== */
    .hero-inner{
      position: relative;
      z-index: 10;
      height: 100%;
      display: grid;
      grid-template-columns: var(--panel-w) 1fr;
      gap: 22px;
      padding: 22px;
      align-items: start;
    }

    /* ===== STICKY LEFT (TRANSPARENT) ===== */
    .sticky-panel{
      position: relative;           /* sticky handled by #sticky-nav */
      align-self: start;
      background: transparent;
      border: none;
      box-shadow: none;
      padding: 0;
      margin-left: 35px;
      margin-top: 35px;
      width: var(--panel-w);
      max-width: 400px;            /* hard contain */
    }


/* Make hero-inner the anchor */
.hero-inner {
  position: relative;
}

/* Right-side glyph + text inside hero only, never sticky */
.hero-inner .dc-rot-line {
  position: static;
  z-index: 5;
}















/* ===== STICKY NAV (LOGO + TEXT + MENU) ===== */
#sticky-nav{
  position: relative;    /* was sticky;*/
  top: 18px;
  z-index: 9999;
  width: 400px;
  max-width: 400px;
}

#sticky-nav-inner{
  width: 100%;
  max-width: 400px;
  display: flex;
  flex-direction: column;
  align-items: center;   /* centers logo + two lines + menu block */
  text-align: center;
}

#sticky-nav *{ box-sizing: border-box; }


    .brand{
		  display: flex;
		  flex-direction: column;
		  align-items: center;     /* ⬅️ THIS is the key */
		  justify-content: center;
		  text-align: center;      /* ⬅️ ensures text lines center */
		  gap: 6px;
	   }

    .brand img.logo{
      width: 300px;
      max-width: 100%;
      height: auto;
      display: block;
      margin: 0 auto;
      filter: drop-shadow(0 10px 18px rgba(0,0,0,0.45));
    }

    .brand .tagline{
      font-size: 30px;
      font-weight: 650;
      color: rgba(255,255,255,0.92);
      margin-top: -6px;
      text-shadow: 0 10px 18px rgba(0,0,0,0.35);
    }

    .brand .subline{
      font-size: 18px;
      color: var(--muted);
      margin-top: -6px;
      text-shadow: 0 10px 18px rgba(0,0,0,0.35);
    }

    /* Vertical menu */
    .menu{
      display: grid;
      gap: 10px;
      margin-top: 10px;
      max-width: 190px;
		  width: 100%;
    }
    .menu a{
      display:flex;
      align-items:center;
      justify-content: space-between;
      padding: 12px 14px;
      border-radius: 12px;
      background: var(--btn);
      border: 1px solid var(--btn-border);
      backdrop-filter: blur(8px);
      -webkit-backdrop-filter: blur(8px);
      box-shadow: 0 12px 28px rgba(0,0,0,0.30);
      font-weight: 700;
      letter-spacing: 0.2px;
      line-height: 1;
    }
    .menu a span{
      opacity: 0.9;
      font-weight: 900;
    }
    .menu a:hover{
      background: var(--btn-hover);
      transform: translateY(-1px);
    }

    /* ===== RIGHT SIDE ===== */
    .hero-right{
      position: relative;
      height: 100%;
      display: grid;
      align-content: center;
      padding-right: 10px;
      max-width: 600px;      /* reduce ~25% */
			right: 350px;
			margin-left: auto;
    }

    /* ===== CLEAN ANIM BLOCK ===== */
    .hero-message{
      position: relative;
      z-index: 2;

      /* move right more */
      margin-left: 44%;

      transform: translateX(25px);

      max-width: 600px;
      padding: 16px 16px 16px 18px;
      border-radius: var(--radius);
      background: rgba(0,0,0,0.18);
      border: 1px solid rgba(255,255,255,0.12);
      backdrop-filter: blur(6px);
      -webkit-backdrop-filter: blur(6px);
      box-shadow: 0 14px 40px rgba(0,0,0,0.28);
    }

    .hero-message .kicker{
      font-size: 14px;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: rgba(255,255,255,0.82);
      margin-bottom: 10px;
    }

/* HERO ROTATOR (REPLACE YOUR EXISTING ROTATOR CSS WITH THIS) */
.dc-rot-wrap{
  width: 100%;
  display: flex;
  justify-content: flex-end;       /* right-align the whole block */
  padding: clamp(14px, 2vw, 28px);
  background: transparent;
}

.dc-rotator{
  text-align: right;               /* right-align text inside */
  max-width: min(720px, 92vw);
}

.dc-rotator {
  transform: translateX(250px);
}

.dc-rotator {
  position: relative;
  z-index: 2;
}
.dc-rotator::before {
  content: "";
  position: absolute;
  inset: -20px;              /* space around text */
  background: rgba(0,0,0,.30); /* 30% darkening */
  border-radius: 18px;
  z-index: -1;
  backdrop-filter: blur(2px); /* optional but classy */
}

.dc-rotator::before {
  box-shadow:
    0 0 0 1px rgba(233,211,172,.15),
    0 12px 30px rgba(0,0,0,.45);
}




.dc-rot-line{
  display: inline-flex;
  gap: 14px;
  align-items: baseline;
  justify-content: flex-end;
  flex-wrap: wrap;
  line-height: 1.02;
}

.dc-rot-prefix{
  color: #fefaec;                  /* vanilla (matches your “vanilla” vibe) */
  font-weight: 800;
  font-size: clamp(38px, 5vw, 68px);   /* BIG. 2nd most important */
  letter-spacing: .2px;
  text-shadow: 0 2px 14px rgba(0,0,0,.55);
}

.dc-rot-word{
  color: #e9d3ac;                  /* your specified gold */
  font-weight: 900;
  font-size: clamp(44px, 5.6vw, 78px); /* slightly larger than prefix */
  letter-spacing: .8px;
  text-transform: uppercase;
  text-shadow: 0 2px 16px rgba(0,0,0,.6);
  transition: opacity .28s ease, transform .28s ease, filter .28s ease;
  white-space: nowrap;
}

.dc-rot-sub{
  margin-top: 10px;
  color: rgba(255,255,255,.86);
  font-size: clamp(14px, 1.45vw, 18px);
  font-weight: 600;
  max-width: 56ch;
  margin-left: auto;              /* keeps it right aligned under headline */
  text-shadow: 0 2px 12px rgba(0,0,0,.55);
}


/*   If "dc-listen-btn" already exists, keep it and only add dc-continue-btn styles. */

.dc-continue-btn{
  margin-top: 10px;
  margin-bottom: 18px;
  transform: none;
  cursor: pointer;
  font-size: 14px;          /* slightly smaller than Listen */
  padding: 10px 16px;
}

/* Reveal panel */
.dc-reveal{
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: none;
}

/* When open */
.dc-reveal.is-open{
  max-height: 2000px; /* big enough to hold your content */
  opacity: 1;
}



/* small screens: keep strong but avoid wrapping ugliness */
@media (max-width: 520px){
  .dc-rot-line{ gap: 10px; }
  .dc-rot-prefix{ font-size: clamp(30px, 7vw, 44px); }
  .dc-rot-word{ font-size: clamp(34px, 8vw, 52px); }
  .dc-rot-sub{ font-size: 14px; }
}

/* accessibility: reduced motion */
@media (prefers-reduced-motion: reduce){
  .dc-rot-word{ transition: none; }
}

/* Make sure the hero is the positioning parent */
.hero-wrapper {
  position: relative;
}





/********************************************
 * LIBRARY RIGHT-SIDE BADGE (FULLY ISOLATED)
 ********************************************/

/* Wrapper for the two images on the right */
.lib-right-badge {
    position: absolute;    /* was fixed */
    right: 175px;           /* or whatever you like */
    top: 300px;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 12px;
    background: none;
    border: none;
    box-shadow: none;
    pointer-events: none;
    z-index: 5;
}


/* Both images */
.lib-right-badge img {
    display: block;
    height: auto;
    width: auto;
    max-width: 260px;
}

/* Hooks for later tweaking if you want them */
.lib-right-icon {}
.lib-right-text {}

/* Hide on small screens where there's no room */
@media (max-width: 768px) {
    .lib-right-badge {
        display: none;
    }
}

/* ARTICLE AREA ******/


/* ===== LIBRARY ARTICLE INDEX – CLEAN VERSION ===== */

.library-article-list {
  max-width: 820px;
  margin: 0 auto 40px;
}

/* Card = the link itself */
.library-article-row {
  display: flex;
  justify-content: space-between;
  gap: 20px;

  padding: 12px 18px;
  margin-bottom: 10px;

  border-radius: 8px;
  background: var(--article-row-bg);        /* light parchment */
  border: 1px solid rgba(5, 15, 40, 0.06);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04);

  text-decoration: none;
  color: inherit;
  cursor: pointer;

  transition:
    background-color 0.18s ease,
    box-shadow 0.18s ease,
    border-color 0.18s ease;
}


/* Left side content */
.library-article-main {
  flex: 1 1 auto;
}

/* Right side meta (date / author) */
.library-article-meta {
  flex: 0 0 auto;
  text-align: right;
  font-size: 13px;
  color: var(--text-muted, #7a7464);
}

/* Title + snippet */
.library-article-title {
  margin: 0 0 4px;
  font-size: 18px;
  font-weight: 600;
  color: #222;
  text-decoration: none;
}

.library-article-snippet {
  margin: 0;
  font-size: 14px;
  color: #5b5546;
}

/* Title link behavior on hover */
.library-article-row:hover .library-article-title {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.library-article-status{
  width: 30px;
  height: 30px;
  margin-top: 6px;
  margin-left: auto;
  border-radius: 8px;
  background: #5a2f2a;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 8px rgba(0,0,0,.28);
}

.library-article-status::after{
  content: attr(data-status);
  font-family: "Newborough", serif;
  font-size: 18px;
  color: #f8efd4;
  line-height: 1;
}

.library-article-legend{
  text-align: right;
  font-size: 13px;
  margin-top: 4px;
  margin-bottom: 14px;
  color: rgba(0,0,0,.55);
}

.library-article-legend span{
  margin-left: 18px;
}

.library-article-legend b{
  font-family: "Newborough", serif;
  color: #5a2f2a;
}



















/* ===== ARTICLE MODAL (LIBRARY PAGE) ===== */

.article-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: none;               /* hidden by default */
}

.article-modal.is-open {
  display: block;
}

.article-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
}

.article-modal-dialog {
  position: relative;
  max-width: 860px;
  height: calc(100vh - 80px);
  margin: 40px auto;
  background: #fefaec;         /* your vanilla cream */
  border-radius: 12px;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.65);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

/* Scrollable content inside modal */

.article-modal-inner {
  padding: 22px 24px 24px;
  overflow-y: auto;
  height: 100%;
}

/* Close button – top right corner */

.article-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid rgba(0, 0, 0, 0.18);
  background: rgba(255, 255, 255, 0.94);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  line-height: 1;
  cursor: pointer;
  padding: 0;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.16);
  transition:
    background-color 0.15s ease,
    box-shadow 0.15s ease,
    transform 0.15s ease;
}

.article-modal-close:hover {
  background-color: #ffffff;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.25);
  transform: translateY(-1px);
}

.article-modal-close:focus-visible {
  outline: 2px solid #000;
  outline-offset: 2px;
}

/* 2) Slightly more breathing room inside the navy plaque */
.article-view-plaque {
  padding: 18px 32px; /* was tighter; this is a modest bump */
}

/* 3) Card padding & max width for a more "editorial" feel */
/* Card becomes a flex column with a max height */
.article-view-card {
  max-width: 820px !important;
  margin: 0 auto !important;
  padding: 34px 48px 40px !important;

  display: flex !important;
  flex-direction: column !important;
/*  max-height: 80vh !important;   /* card never taller than viewport */
  box-sizing: border-box !important;
}



.article-modal-dialog {
  position: relative;
  width: min(820px, 100% - 32px);
  max-height: calc(100vh - 80px);
  overflow-y: auto;
}



/* 4) Header spacing: plaque → title → meta → body */
.article-view-header {
  margin-top: 24px;      /* space from plaque to title area */
}

.article-view-header h1 {
  margin-bottom: 12px !important;
}

/* Meta row to first paragraph */
.article-view-meta-row {
  margin-bottom: 18px;
}

/* 5) Narrow text column inside the article body */
.article-view-body {
  max-width: 680px;      /* this is the actual reading column */
  margin: 0 auto;        /* center text within the card */
}

/* 6) Readability: line-height & paragraph rhythm */
.article-view-body p {
  line-height: 1.7;
  margin: 0 0 1.1em;     /* consistent paragraph spacing */
}

/* Optional: tiny tweak so first paragraph feels "anchored" */
.article-view-body p:first-child {
  margin-top: 4px;
}


/* === Strong override for modal close X === */
.article-modal .article-modal-close {
  position: absolute !important;
  top: 18px !important;
  right: 18px !important;

  width: 38px !important;
  height: 38px !important;
  border-radius: 50% !important;

  /* Charcoal background, cream text */
  background-color: #111218 !important; /* charcoal */
  color: #f5ecd8 !important;           /* cream – adjust if you have a brand cream */

  border: 1px solid rgba(0, 0, 0, 0.45) !important;

  display: flex !important;
  align-items: center;
  justify-content: center;

  font-size: 20px !important;
  line-height: 1;
  padding: 0;

  cursor: pointer;
  box-shadow: none;
  transition:
    color 0.15s ease,
    background-color 0.15s ease,
    box-shadow 0.15s ease;
}

.article-modal .article-modal-close:hover {
  /* Cream → white text, subtle shadow, no movement */
  color: #ffffff !important;
  background-color: #151821; /* slightly lighter charcoal, stays in family */
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.45);
}

.article-modal .article-modal-close:focus-visible {
  outline: 2px solid #ffffff;
  outline-offset: 2px;
}


/* === FINAL NON-DANCING CLOSE BUTTON === */
.article-modal .article-modal-close {
  position: absolute !important;
  top: 18px !important;
  right: 18px !important;

  width: 38px !important;
  height: 38px !important;
  border-radius: 50% !important;

  background-color: #111218 !important; /* charcoal */
  color: #f5ecd8 !important;            /* cream */
  border: 1px solid rgba(0, 0, 0, 0.45) !important;

  display: flex !important;
  align-items: center !important;
  justify-content: center !important;

  font-size: 22px !important;  /* larger X */
  font-weight: 600 !important;

  line-height: 1 !important;
  padding: 0 !important;

  cursor: pointer;
  box-shadow: none !important;

  /* NO transforms, NO background shifts, NO movement */
  transition: color 0.15s ease !important;
}

.article-modal .article-modal-close:hover {
  color: #ffffff !important; /* cream → white */
  background-color: #111218 !important;  /* NO change */
  box-shadow: none !important;           /* disabled */
  transform: none !important;            /* disabled */
}

.article-modal .article-modal-close:focus-visible {
  outline: 2px solid #ffffff !important;
  outline-offset: 2px !important;
}
/* === NON-MOVING CLOSE BUTTON WITH SUBTLE HOVER POP === */

.article-modal .article-modal-close {
  position: absolute !important;
  top: 18px !important;
  right: 18px !important;

  width: 38px !important;
  height: 38px !important;
  border-radius: 50% !important;

  background-color: #111218 !important; /* charcoal */
  color: #f5ecd8 !important;            /* cream */

  border: 1px solid rgba(0, 0, 0, 0.45) !important;

  display: flex !important;
  align-items: center !important;
  justify-content: center !important;

  /* NORMAL STATE X SIZE */
  font-size: 20px !important;
  font-weight: 600 !important;

  line-height: 1 !important;
  padding: 0 !important;

  cursor: pointer;

  /* No animation except color/font-size */
  transition:
    color 0.15s ease,
    font-size 0.15s ease,
    box-shadow 0.15s ease;
}

.article-modal .article-modal-close:hover {
  /* HOVER STATE: slightly bigger X, white text, subtle shadow */
  font-size: 22px !important;
  color: #ffffff !important;

  /* Subtle drop shadow around the button, not movement */
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.45) !important;

  /* No transform, no movement, no shift */
  transform: none !important;
}

.article-modal .article-modal-close:focus-visible {
  outline: 2px solid #ffffff !important;
  outline-offset: 2px !important;
}

/* Tighten space between meta row and first paragraph inside article modal */
.article-modal .article-view-meta-row {
  margin-bottom: 10px;  /* adjust this number until it looks right */
}



/* === ARTICLE MODAL PHASE 1 POLISH — SPACING & READABILITY === */

/* 1) INTERNAL PLAQUE PADDING — modest increase */
.article-view-plaque {
  padding: 22px 36px !important;
}

/* 2) CARD PADDING — more breathing room inside the card */
.article-view-card {
  padding: 34px 48px 40px !important;
  max-width: 820px !important; /* wider card */
}

/* 3) READING COLUMN WIDTH — narrower column, magazine feel */
.article-view-body {
  max-width: 700px !important;
  margin: 0 auto !important;
}

/* 4) TITLE AREA SPACING */
.article-view-header {
  margin-top: 28px !important; /* space from plaque */
}

.article-view-header h1 {
  margin: 0 0 18px !important; /* bottom spacing before meta */
}

/* 5) META ROW SPACING (before first paragraph) */
.article-view-meta-row {
  margin-bottom: 26px !important;
}

/* 6) PARAGRAPH READABILITY — consistent rhythm */
.article-view-body p {
  font-size: 1.08rem !important;
  line-height: 1.72 !important;
  margin: 0 0 1.15em !important;
}

/* Subtle tightening on first paragraph */
.article-view-body p:first-child {
  margin-top: 4px !important;
}



/* Reduce space between header (title+meta) and article body in modal */
.article-modal .article-view-header {
  margin-bottom: 15px;  /* adjust this number until it looks right */
}


/* Ensure the article body doesn't add extra top gap in the modal */
.article-modal .article-view-body {
  margin-top: 0;
  padding-top: 0;
}
.article-modal .article-view-header {
  margin-bottom: 15px;
}

.article-modal .article-view-body {
  margin-top: 0;
}













/* VISUAL ADJUST: force meta row closer to title in the modal */
#style-article-modal .article-view-meta-row {
  transform: translateY(-15px) !important;  /* raise it by ~6px */
  margin-bottom: 22px !important;          /* keep spacing to body reasonable */
}


/* Top-align meta text and Listen button inside the meta row */
#style-article-modal .article-view-meta-row {
  display: flex !important;
  align-items: flex-start !important;  /* top alignment */
  gap: 16px !important;                /* breathing room between meta and button */
  
  /* keep the visual adjustments we already like */
  transform: translateY(-15px) !important;
  margin-bottom: 22px !important;
}

/* Stack the two meta lines (By + date) with nice rhythm */
#style-article-modal .article-view-meta {
  display: flex !important;
  flex-direction: column !important;
  gap: 2px !important;
}
/* Restore meta to a single horizontal line with bullet separator */
#style-article-modal .article-view-meta {
  display: flex !important;
  flex-direction: row !important;
  align-items: center !important;
  gap: 8px !important;   /* space around bullet */
}

/* Style the spans inside the meta line */
#style-article-modal .article-view-meta span {
  display: inline-block !important;
}

/* Optional: ensure the bullet behaves properly */
#style-article-modal .article-view-meta span::after {
  content: "•";
  margin-left: 8px;
  margin-right: 8px;
}

#style-article-modal .article-view-meta span:last-child::after {
  content: "";
  margin: 0;
}


/* FIX META LINE: Only ONE bullet between the two spans */
#style-article-modal .article-view-meta {
  display: flex !important;
  flex-direction: row !important;
  align-items: center !important;
}

/* Remove ALL bullets we previously tried to inject */
#style-article-modal .article-view-meta span::after {
  content: "" !important;
}

/* Insert EXACTLY ONE bullet between spans */
#style-article-modal .article-view-meta span + span::before {
  content: "•";
  margin: 0 10px;
  opacity: 0.9;
}

/* Dimming without blur — clean, crisp, premium */
#style-article-modal .article-modal-backdrop {
  background: rgba(0, 0, 0, 0.50) !important;
  backdrop-filter: none !important;
}




































/* mobile: stack meta under content */
@media (max-width: 720px){
  .library-article-list{
    margin: 28px 18px;
    max-width: none;
  }

  .library-article-list .library-article .library-article-row{
    flex-direction: column;
    gap: 10px;
  }

  .library-article-list .library-article .library-article-meta{
    flex: none;
    text-align: left;
    padding-top: 0;
    display: flex;
    gap: 12px;
  }

  .library-article-list .library-article .library-article-author{
    margin-top: 0;
  }
}

/* Pillar strip wrapper */
.library-pillars {
  max-width: 1100px;
  margin: 40px auto 70px;
  padding: 0 20px;
}


.pillar-grid {
  display: grid;
  gap: 24px;
}

/* Desktop: always 3 columns */
@media (min-width: 900px) {
  .pillar-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

/* Tablet / small screens: 2 columns */
@media (min-width: 600px) and (max-width: 899px) {
  .pillar-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/* Phones: 1 column */
@media (max-width: 599px) {
  .pillar-grid {
    grid-template-columns: 1fr;
  }
}

/* ===== PILLAR CARDS – CLEAN FINAL VERSION ===== */

.pillar-card {
  display: block;
  background: #fbf5e8;                      /* cream card background */
  border-radius: 18px;
  box-shadow: 0 14px 35px rgba(0,0,0,0.16);
  text-decoration: none;
  color: inherit;
  overflow: hidden;
  /* no movement, just visual refinement */
  transition: box-shadow 0.2s ease, background-color 0.2s ease;
}

/* Hover: soft background + stronger shadow, NO jump */
.pillar-card:hover {
  background-color: #e0f5f2;                /* subtle teal wash */
  box-shadow: 0 20px 40px rgba(0,0,0,0.22);
}

/* Image area */
.pillar-img img {
  display: block;
  width: 100%;
  height: auto;
}

/* Text wrapper */
.pillar-body {
  padding: 18px 20px 20px;
}

/* Title: "Health / Lifestyle / Style" */
.pillar-title {
  margin: 0 0 8px;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--teal-link);                  /* normal link teal */
  text-decoration: none;
}

/* Body copy under the title */
.pillar-body p {
  margin: 0 0 10px;
  font-size: 0.92rem;
  line-height: 1.55;
  color: #222222;                           /* normal body text */
}

/* CTA line: "Open Health Wing ›" */
.pillar-cta {
  display: block;              /* make it a block so it can center */
  margin: 6px auto 0;          /* auto left/right = centered */
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--teal-link);
  text-decoration: none;
  text-align: center;          /* center the text inside the block */
}


/* Hover: title + CTA = hover teal + underline */
.pillar-card:hover .pillar-title,
.pillar-card:hover .pillar-cta {
  color: var(--teal-link-hover);            /* hover teal */
  text-decoration: underline;
  text-decoration-color: var(--teal-link-hover);
}



/* ===== end Library Article Index List ===== */





.bottomRightShadow
{
  padding: 0px 0px 0px;
  box-shadow: 0 10px 24px rgba(0,0,0,0.29);
  border: 1px solid rgba(54,69,79,0.12);
}



/* ================================
   Start Here: 3 teaser boxes (v1)
   Self-contained, minimal conflicts
================================ */

.dc-teasers {
  margin-top: 28px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.dc-teaser {
  background: rgba(5, 15, 40, 0.06);           /* charcoal tint */
  border: 1px solid rgba(5, 15, 40, 0.18);
  border-radius: 14px;
  width:350px;
  padding: 18px 18px 16px;
  box-shadow: 0 10px 22px rgba(0,0,0,0.08);
}

.dc-teaser h3 {
  margin: 0 0 10px;
  font-size: 18px;
  line-height: 1.2;
  color: #050f28; /* charcoal */
  letter-spacing: 0.2px;
}

.dc-teaser p {
  margin: 0 0 14px;
  font-size: 14px;
  line-height: 1.55;
  color: rgba(5, 15, 40, 0.88);
}

.dc-teaser a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  color: #26a8ab; /* teal link (we can tune) */
}

.dc-teaser a:hover {
  text-decoration: underline;
}

.dc-teaser a .arrow {
  font-size: 16px;
  line-height: 1;
}

/* Responsive: stack nicely */
@media (max-width: 980px) {
  .dc-teasers { grid-template-columns: 1fr; }
  .dc-teaser { padding: 18px; }
  .dc-teaser h3 { font-size: 19px; }
  .dc-teaser p { font-size: 15px; }
}

.health-collage {
  position: relative;
}

.health-collage::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.06); /* 5–8% sweet spot */
  pointer-events: none;
}


#toTopBtn{
  position: fixed;
  bottom: 28px;
  right: 28px;

  width: 75px;
  height: 75px;
  border: none;
  padding: 0;

  background: url("images/TopOfPage.png") no-repeat center center;
  background-size: cover;     /* fill perfectly */
  
  cursor: pointer;
  opacity: 0;
  pointer-events: none;

  transition: opacity .25s ease, transform .25s ease;
  z-index: 9999;
}

/* hover upscale */
#toTopBtn:hover{
  transform: scale(1.22);
  filter: drop-shadow(0 0 18px rgba(209,164,90,0.75));
}

/* visible state */
#toTopBtn.show{
  opacity: 1;
  pointer-events: auto;
}





/* ============================
   Start Here – Card Set (v1)
   Option B: light modern depth
   ============================ */



.dc-cards{
  clear: both;
  display: grid;
  grid-template-columns: repeat(3, 350px);
  gap: 24px;
  justify-content: center;
  margin-top: 32px;
}

@media (max-width: 1100px){
  .dc-cards{ grid-template-columns: repeat(2, minmax(280px, 350px)); }
}

@media (max-width: 760px){
  .dc-cards{ grid-template-columns: minmax(280px, 1fr); }
}




.dc-card{
	background: var(--lib-card-bg); /* match library card background */
  border-radius: 14px;
  padding: 22px 22px 20px;
  box-shadow: 0 10px 24px rgba(0,0,0,0.08);
  border: 1px solid rgba(5,15,40,0.12); /* updated charcoal-based border */
}


/*
.dc-card{
  background: var(--lib-card-bg);                /* same cream as library cards
  border-radius: 16px;
  padding: 18px 18px 16px;
  box-shadow: 0 10px 26px rgba(0,0,0,0.14);
  border: 1px solid rgba(5,15,40,0.08);
  transition:
    transform .18s ease,
    box-shadow .18s ease,
    border-color .18s ease;
}
*/










.dc-card h3{
  margin: 0 0 12px;
  font-size: 18px;
  font-weight: 600;

  color: var(--charcoal);
}

.dc-card .dc-title-row{
  display: flex;
  align-items: center;
  gap: 0px;
}

.dc-card p{
  font-size: 14.5px;
  line-height: 1.55;
  margin: 12px 0 14px;
  text-align:left;
}
/*
.dc-card a{
  font-weight: 500;
}
*/


.dc-card a{
  color: var(--teal-link);
  font-weight: 600;
  text-decoration: none;
  transition: color .18s ease, text-underline-offset .18s ease;
}

.dc-card a:hover{
  color: var(--teal-link-hover);
  text-decoration: underline;
  text-underline-offset: 2px;
}



.dc-card{
  position: relative;
  overflow: hidden;
}

.dc-card .dc-card-media{
  height: 80px;
  border-radius: 10px;
  margin-bottom: 12px;
  background-size: cover;
  background-position: center;
  filter: saturate(0.9) contrast(0.95);
}

/* subtle fade at bottom of image into the card background */
.dc-card .dc-card-media::after{
  content:"";
  display:block;
  height: 100%;
  background: linear-gradient(to bottom, rgba(246,244,239,0) 40%, rgba(246,244,239,1) 100%);
}


/*.dc-cards { clear: both; }  */

/* cards align with that same left edge */
.dc-cards{
  display: grid;
  grid-template-columns: repeat(3, 350px);
  gap: 24px;
  justify-content: start;          /* critical */
  margin: 28px 0 0 var(--content-left);
}


/* =========================
   Card 1 (Health) — special
   ========================= */

.dc-card--health{
  position: relative;
  border: 1px solid rgba(0,0,0,0.14);
  box-shadow:
    0 12px 28px rgba(0,0,0,0.12),
    0 1px 0 rgba(255,255,255,0.35) inset;
  transform: translateY(-2px);
}

/* subtle “health” accent bar */
.dc-card--health::before{
  content:"";
  position:absolute;
  left: 14px;
  top: 14px;
  height: 10px;
  width: 42px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--teal-link), var(--teal-link-hover));
  opacity: 0.95;
}

/* give the title a tiny bit more authority */
.dc-card--health h3{
  padding-top: 6px; /* clears the accent bar */
  letter-spacing: 0.2px;
}

/* CTA becomes “button-link” but still an <a> */
.dc-card--health a{
  display: inline-flex;
  align-items: center;
  gap: 8px;

  margin-top: 10px;
  padding: 8px 12px;

  border-radius: 10px;
  border: 1px solid rgba(0,0,0,0.16);

  background: rgba(255,255,255,0.55);
  box-shadow:
    0 10px 18px rgba(0,0,0,0.10),
    0 1px 0 rgba(255,255,255,0.45) inset;

  text-decoration: none;     /* your global hover will underline elsewhere */
  font-weight: 600;
}

.dc-card--health a:hover{
  background: rgba(255,255,255,0.72);
  transform: translateY(-1px);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.dc-card--health a:active{
  transform: translateY(0px);
}






/* Card header wrapper */
.dc-card-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 6px;
}

/* Title */
.dc-card h3 {
  margin: 0;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--charcoal);
}

/* Divider under title */
.dc-card-rule {
  height: 1px;
  width: calc(100% - 32px); /* whitespace on both sides */
  margin: 6px auto 14px auto;
  background-color: rgba(5, 15, 40, 0.7); /* charcoal @ 70% */
}




















/* === ROTATOR: smooth, exact alignment === */
:root{
  --rot-step: 56px;   /* one “slot” height (tweak if needed) */
}

.window{
  height: var(--rot-step);
  padding: 0;                 /* critical */
  overflow: hidden;
  border-radius: 12px;
  background: rgba(0,0,0,0.30);
  border: 1px solid rgba(255,255,255,0.12);
  display: grid;
  align-items: center;
}

.words{
  display: flex;
  flex-direction: column;
  gap: 0;                     /* critical */
  animation: roll 7.5s infinite;
  will-change: transform;
}

.word{
  height: var(--rot-step);    /* critical */
  line-height: var(--rot-step);
  padding: 0 14px;            /* horizontal padding only */
  font-family: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-size: clamp(28px, 2.3vw, 40px);
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  white-space: nowrap;
  color: #fefaec;
  text-shadow: 0 16px 30px rgba(0,0,0,0.4);
}

/* Smooth loop: last item repeats first (Presence) */
@keyframes roll{
  0%, 20%   { transform: translateY(0); }
  33%, 53%  { transform: translateY(calc(-1 * var(--rot-step))); }
  66%, 86%  { transform: translateY(calc(-2 * var(--rot-step))); }
  100%      { transform: translateY(calc(-3 * var(--rot-step))); }
}


    .hero-message .note{
      margin-top: 12px;
      font-size: 15px;
      color: rgba(255,255,255,0.82);
      line-height: 1.45;
    }

    /* ===== BELOW HERO SECTIONS ===== */
    .section{

      max-width: 1920px;
padding-left:300px; padding-right: 300px;
      background-color: #fefaec;
    }
    .section h2{
      margin: 0 0 12px 0;
      color: rgba(54,69,79,1.0);
      font-size: 28px;
    }
    .section p{
      margin: 0;
      color: rgba(54,69,79,1.0);
      max-width: 900px;
      line-height: 1.6;
    }

/* ===== Section Header Bar (black box for gold title) ===== */
.section-header-bar{
  margin: 10px 0 14px;           /* tweak later */
  padding: 14px 18px;
  border-radius: 10px;
	width:225px;
  background: #000;              /* pure black bar */
  box-shadow:
    0 10px 24px rgba(0,0,0,.29),
    inset 0 1px 0 rgba(255,255,255,.09);

  display: inline-flex;          /* keeps it tight to content width */
  align-items: center;
  gap: 12px;
}

/* For now we show plain text. Later you can swap to an <img> */
.section-header-bar .section-title{
  margin: 0;
  font-size: 34px;               /* adjust once gold art arrives */
  font-weight: 800;
  letter-spacing: .2px;

  /* temporary "gold-ish" until Uchi image */
  color: #d1a45a;
}

.section-header-link {
  display: block;        /* makes the whole area clickable */
  text-decoration: none; /* no underline */
}

.section-header-link img {
  display: block;        /* removes tiny gaps under images */
}





/* optional: if you want it full-width, just add this class
.section-header-bar.full{
  display: flex;
  width: 100%;
}
*/

.right-img {
float: right;
margin-left: 10px; /* Optional spacing */
border-radius: 14px;
}
.left-img {
float: left;
margin-right: 10px; /* Optional spacing */
border-radius: 14px;
}

.section-content{
  padding-left: var(--content-left);
  padding-right: 40px; /* optional */
}













/*  css for start-here  */

.start-here-content{
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}


.start-here-header{
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto 48px;
  padding-left: 8px;
}

.start-here-header h2{
  margin: 0 0 10px;
  font-size: 2.4rem;
  font-weight: 600;
  letter-spacing: .5px;
  color: #ffffff;
  text-shadow: 0 6px 22px rgba(0,0,0,.55);
}

.start-here-header p{
  margin: 0;
  font-size: 1.05rem;
  color: rgba(255,255,255,.7);
}

/* ===== SECTION BACKGROUND ===== */
.start-here-bg {
  position: relative;
  z-index:2;
  min-height: 100vh;
  padding: 80px 40px;
  background-color: #fefaec;

  /* base bands (static) */
  background-image:
    repeating-linear-gradient(
      180deg,
      rgba(255,255,255,.04) 0px,
      rgba(255,255,255,.04) 24px,
      rgba(255,255,255,0) 24px,
      rgba(255,255,255,0) 70px
    ),
    linear-gradient(
      180deg,
      rgba(0,0,0,.35),
      rgba(0,0,0,0)
    );

  overflow: hidden;
}



.section-transition {
  height:40px;
  background:#fefaec; /* your page cream */
  box-shadow: inset 0 22px 22px -18px rgba(0,0,0,.72);
  border-top:1px solid rgba(0,0,0,.55);
  position:relative;
}








/* wrapper only (DO NOT target children) */
.dc-sepwrap{
  width: 100%;
  padding: 22px 0;
  display: flex;
  justify-content: center;
  background: transparent;
}
.dc-sep{
  width: min(980px, 92vw);
  display: grid;
  gap: 8px;
  justify-items: center;
  background: transparent;
}
/* the actual lines */
.dc-sepline{
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(
    to right,
    rgba(54,69,79,0) 0%,
    rgba(54,69,79,.45) 18%,
    rgba(54,69,79,.95) 50%,
    rgba(54,69,79,.45) 82%,
    rgba(54,69,79,0) 100%
  );
}
.dc-sepline.one{ width: 58%; opacity: .55; }
.dc-sepline.two{ width: 76%; opacity: .85; }
.dc-sepline.three{ width: 58%; opacity: .55; }



















@media (max-width: 640px){
  .dc-sepwrap{ padding: 18px 0; }
  .dc-sep{ gap: 7px; }
  .dc-sepline.one{ width: 70%; }
  .dc-sepline.two{ width: 92%; }
  .dc-sepline.three{ width: 70%; }
}

@media (max-width: 640px){
  .dc-sepwrap{ padding: 18px 0; }
  .dc-sep{ gap: 7px; }
  .dc-sepline.one{ width: 70%; }
  .dc-sepline.two{ width: 92%; }
  .dc-sepline.three{ width: 70%; }
}


  /* Start positions */
  background-position: 0 0, 0 0;

  opacity: .08;
  will-change: background-position, filter;
  pointer-events: none;

  /* two animations: drift + gentle pulse
  animation: driftSheen 18s linear infinite, breathe 9s ease-in-out infinite;
}

/*
/* subtle darkening overlay 
.start-here-bg::after {
  content: "";
  position: absolute;
  inset: 0;
/*  background: rgba(0, 0, 0, 0.045); /* 4.5% darkening */
  pointer-events: none;
  z-index: 1;
}
/*

/*
/* Drift the two background layers at different rates 
@keyframes driftSheen {
  from { background-position: 0 0, 0 0; }
  to   { background-position: 0 320px, 0 160px; }
}

/* Optional: subtle luminance pulse so it feels alive 
@keyframes breathe {
  0%,100% { filter: brightness(1) saturate(1); }
  50%     { filter: brightness(1.06) saturate(1.05); }
}
*/
/* ===== GLASS CARD DEMO ===== */
.card {
  position: relative;
  max-width: 520px;
  margin: 0 auto;
  padding: 28px 30px;

  background: rgba(255,255,255,0.085);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);

  border-radius: 18px;
  box-shadow:
    0 20px 40px rgba(0,0,0,.45),
    inset 0 1px 0 rgba(255,255,255,.12);

  color: #fff;
}

.card h2 {
  margin: 0 0 12px;
  font-size: 1.6rem;
  letter-spacing: .4px;
}

.card p {
  margin: 0;
  color: rgba(255,255,255,.78);
  line-height: 1.6;
}

/* reduced motion */
@media (prefers-reduced-motion: reduce) {
  .start-here-bg::before { animation: none; }
}

/* ===== FOOTER ===== */

    /* NEWSLETTER */
    .newsletter {
/*      background: linear-gradient(135deg, #12131b, #181a24); */
  background-image: repeating-linear-gradient(45deg, #0e0e0e, #0e0e0e, 15px, #000000 15px, #000000 30px);
      border-radius: 18px;
      padding: 1.6rem 1.4rem 1.9rem;
      border: 1px solid rgba(209, 164, 90, 0.35);
    }
    .newsletter-lead {
      font-size: 1rem;
      margin-bottom: 0.3rem;
    }
    .newsletter-sub {
      font-size: 0.9rem;
      color: var(--text-muted);
      margin-bottom: 1rem;
    }
    .form-row {
      display: flex;
      flex-direction: column;
      gap: 0.8rem;
    }
.form-message {
  margin-top: 0.7rem;
  font-size: 0.9rem;
  color: var(--text-muted);
}
.form-message.error {
  color: #ff5b5b; /* clear red error text */
}
.form-message.success {
  color: #d1a45a; /* gold, if you ever want to show inline success */
}


.btn-submit{
  display: inline-block;
  width: 100%;
  padding: 12px 18px;

  background: rgba(0,0,0,.55);
  color: rgba(209,164,90,.95);

  font-weight: 800;
  font-size: 15px;
  letter-spacing: .3px;

  border-radius: 10px;
  border: 1px solid rgba(209,164,90,.35);

  cursor: pointer;
  transition: all .15s ease;
}

.btn-submit:hover{
  filter: brightness(1.08);
  box-shadow: 0 6px 14px rgba(0,0,0,.35);
}

.btn-submit:active{
  transform: translateY(1px);
}





    /* ===== BREAKPOINTS ===== */
    @media (max-width: 640px){
      :root{
        --panel-w: 1fr;
        --hero-h: 78vh;
        --hero-min: 520px;
      }
      .hero-inner{
        grid-template-columns: 1fr;
        gap: 12px;
        padding: 14px;
      }
      .sticky-panel{
        position: relative;
        top: auto;
      }
      .brand{
        justify-items: center;
      }
      .brand img.logo{
        width: 240px;
      }
      .hero-right{
        align-content: start;
        padding-right: 0;
      }
      .hero-message{
        margin-left: 0;
        max-width: 100%;
      }
      .social{
        top: 12px;
        right: 12px;
      }
    }

    @media (min-width: 641px) and (max-width: 980px){
      :root{
        --panel-w: 360px;
        --hero-h: 72vh;
        --hero-min: 560px;
      }
      .hero-message{
        margin-left: 46%;
        max-width: 445px;
      }
      .brand img.logo{ width: 280px; }
    }

    @media (min-width: 981px) and (max-width: 1300px){
      :root{
        --panel-w: 390px;
        --hero-h: 76vh;
      }
      .hero-message{
        margin-left: 50%;
      }
    }

    @media (min-width: 1600px){
      :root{
        --panel-w: 460px;
        --hero-h: 74vh;
        --hero-max: 860px;
      }
      .hero-message{
        margin-left: 56%;
        max-width: 545px;
      }
      .brand img.logo{ width: 320px; }
    }




/* BUTTON (this defines .btn-submit) */
.btn-submit{
  height: 40px;
  border-radius: 10px;
  border: 1px solid rgba(207,168,92,.42);
  background: linear-gradient(180deg, rgba(0,0,0,.92), rgba(0,0,0,.62));
  color: #cfa85c;
  font-weight: 700;
  letter-spacing: .3px;
  cursor: pointer;
  box-shadow: 0 10px 26px rgba(0,0,0,.55);
}

.btn-submit:hover{
  border-color: rgba(207,168,92,.70);
  box-shadow: 0 14px 34px rgba(0,0,0,.60);
}

.btn-submit:active{
  transform: translateY(1px);
}



/* ============================
   Library Cards (Health / Lifestyle / Style)
   ============================ */

/* Section wrapper and heading */
.library-section {
  max-width: 1100px;
  margin: 40px 0 50px 0;
}

.library-section-heading {
  font-size: 1.4rem;
  font-weight: 600;
  margin: 0 0 18px 0;
  color: var(--charcoal, #050f28);
}

.library-intro{
  max-width: 960px;
  margin: 0 0 24px 0;
  font-size: 14.5px;
  line-height: 1.5;
  color: #444;
}



/* GRID FOR ALL SIX CARDS */
.library-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  max-width: 1100px;
  margin: 0 auto;
}

/* If you ever want a wide card, it will span all columns */
.library-card--wide {
  grid-column: 1 / -1;
}

/* ----------------------------
   LIBRARY CARD SYSTEM (LOCKED)
   ---------------------------- */

:root {
  --lib-card-bg: #fefaec;      /* default card background */
  --lib-card-hover: #def3f5;   /* hover background */
  --lib-card-text: #2b2b2b;
  --lib-card-muted: #444;
  --lib-card-radius: 16px;
  --lib-card-shadow: 0 10px 28px rgba(0,0,0,0.12);
  --lib-card-shadow-hover: 0 14px 34px rgba(0,0,0,0.16);
  --lib-gold: #d1a45a;
  --lib-link: var(--teal-link, #1a8a98);  /* your teal */
  --lib-card-shadow: 0 8px 22px rgba(0,0,0,0.12);
  --lib-card-shadow-hover: 0 14px 32px rgba(0,0,0,0.18);
}

.library-cards{ 
	display: grid; 
	grid-template-columns: repeat(3, minmax(0, 1fr)); 
	gap: 28px; 
	max-width: 1100px; 
	margin: 0 auto; 
	}


/* Whole card is a link */
.library-card-link {
  display: block;
  text-decoration: none;
  color: inherit;
}

/* CARD BASE */
.library-card {
  background: var(--lib-card-bg);
  border-radius: var(--lib-card-radius);
  box-shadow: var(--lib-card-shadow);
  padding: 16px 18px 18px;
  transition: box-shadow .18s ease, background .18s ease, border-color .18s ease;
  display: flex;
  flex-direction: column;
  min-height: 260px;
  max-width: 360px;
  border: 1px solid rgba(5,15,40,0.06);   /* NEW */
}

/* Hover state on whole card */
.library-card-link:hover .library-card,
.accessories-trigger:hover .library-card {
/*  transform: translateY(-2px);   remove the dancing up  */
  box-shadow: var(--lib-card-shadow-hover);
  background: var(--lib-card-hover);
}

/*
.library-card-link:hover .library-card {
  background: var(--lib-card-hover);
  box-shadow: var(--lib-card-shadow-hover);
  border-color: rgba(5,15,40,0.18);       /* NEW */
}
*/




/* IMAGE */
.library-card-img {
  display: block;
  width: 300px;
  height: 150px;              /* your 300x150 intent */
  border-radius: 12px;
  box-shadow: 0 0 26px rgba(0,0,0,0.18);
  margin: 0 0 10px 0;
}

/* TITLE */
.library-card-title {
  margin: 10px 0 8px 0;
  font-size: 1.2rem;
  line-height: 1.15;
  font-weight: 700;
  color: var(--lib-card-text);
  text-align: center;
}

/* BLURB TEXT */
.library-card-text {
  margin: 0;
  margin-top: 2px;
  margin-bottom: 12px;        /* extra breathing room above CTA */
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.65;
  color: var(--lib-card-muted);
  text-align: left;
  padding: 0 4px;
}

/* CTA AREA */
.library-card-cta {
  margin-top: auto;           /* pushes CTA to bottom of card */
  display: inline-flex;
  align-items: center;
  justify-content: center;    /* centers View Index in card */
  gap: 8px;
  font-size: 13.5px;
  font-weight: 600;
/*  color: var(--lib-link);  */
  color: #fefaec;
  text-decoration: none;
}

.library-card--wide{ grid-column: 1 / -1; }




/* Make sure text is teal, not inheriting charcoal */
.library-card-cta span {
/*  color: var(--lib-link); */
  color: #fefaec;
}

/* Underline only on hover (matches article index behavior) */
.library-card-link:hover .library-card-cta span {
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* GOLD CHEVRON ICON */
.dc-micro-arrow {
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
  display: inline-block;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.25));
}

/* Kill any old ::after arrow experiments */
.library-card-cta::after {
  content: none !important;
}

/* RESPONSIVE */
@media (max-width: 980px) {
  .library-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .library-grid {
    grid-template-columns: 1fr;
  }

  .library-card {
    padding: 16px 16px 18px;
    min-height: 0;   /* let them shrink a bit on phones */
  }

  .library-card-img {
    height: 170px;
  }
}







/* CTA stays centered, and we force a gold chevron no matter what the HTML contains */
.library-card-cta{
  margin-top: auto;                 /* also helps equal-height layout */
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 13.5px;
  font-weight: 600;
  color: #fefaec;
  text-decoration: none;
  position: relative;
}

/* Hide any literal arrows you typed in HTML (>, &rarr; etc.) */
.library-card-cta{
  letter-spacing: 0;
}
.library-card-cta span + * { /* if you have an svg or anything after span, leave it alone */ }

/* Always append a chevron with CSS (gold + shadow) */
.library-card-cta::after{
  content: "";
  width: 22px;
  height: 22px;
  display: inline-block;

  background-repeat: no-repeat;
  background-position: center;
  background-size: 22px 22px;

  /* inline SVG chevron */
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M9 6 L15 12 L9 18' fill='none' stroke='%23d1a45a' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");

  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.25));
}


/* Gold parchment section divider   currently unused, may find a need for it later, make longer, add a drop shadow */
.library-divider {
  height: 2px;
  max-width: 220px;
  margin: 24px auto 32px;
  border-radius: 999px;
  background: linear-gradient(
    to right,
    rgba(240,231,208,0) 0%,
    rgba(240,231,208,.30) 18%,
    rgba(240,231,208,.85) 50%,
    rgba(240,231,208,.30) 82%,
    rgba(240,231,208,0) 100%
  );
}





/* ===== end LIBRARY CARD SYSTEM ===== */


/* === Featured Guide block (all Wings) === */

.featured-guide {
  max-width: 780px;
  margin: 2.75rem 0 2.25rem;
  padding: 1.75rem 2.1rem 2.2rem;
  background: #fdf7ec;
  border: 1px solid #e2d4bf;
  border-radius: 10px;
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.06);
}

/* label line at top */

.featured-guide-label {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #333;
  padding: 0.35rem 0;
  border-top: 1px solid #d0c4b3;
  border-bottom: 1px solid #d0c4b3;
  margin-bottom: 1rem;
}



.featured-guide-label::after {
  content: "";
  flex: 1;
  height: 1px;
  background: #ded2c0;
  margin-left: 0.75rem;
}

/* title */

.featured-guide-title {
  margin: 0 0 1.15rem;
  font-size: 1.6rem;
  font-weight: 600;
  color: #050f28;
}

/* body text */

.featured-guide p {
  margin: 0 0 0.95rem;
  line-height: 1.7;
  color: #050f28;
  max-width: 66ch;          /* nicer line length */
}

.featured-guide p:last-of-type {
  margin-bottom: 1.5rem;
}

/* Continue Reading button */

.featured-guide-button-row {
  display: flex;
  justify-content: flex-end;   /* pushes button to the right */
  margin-top: 1rem;
  width: 100%;
}

.featured-guide-button {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.55rem 1.4rem;
  border-radius: 12px;      /* <<— the important fix */
  border: 1px solid #222;
  background: #050f28;
  color: #eee;
  font-size: 0.85rem;
  letter-spacing: 0.07em;
/*  text-transform: uppercase;  */
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
}

.featured-guide-button:hover {
  background: #222;
  border-color: #000;
}


.featured-guide-title {
  font-size: 1.7rem;
  margin-bottom: 1.3rem;
}


.library-text,
.featured-guide p,
.library-preview p,
.preview-text p,
.dc-article-body p {
  font-family: 'Inter', sans-serif !important;
  font-size: 1.1rem !important;
  font-weight: 400 !important;
  line-height: 1.7 !important;
  color: #050f28 !important;
}





/* === Wing search block under Featured Guide === */

.wing-search-block {
  max-width: 780px;              /* match featured-guide width */
  margin: 2rem auto 3rem auto;   /* center horizontally */
  display: flex;
  justify-content: center;       /* center the form inside */
}

.wing-search-form {
  display: flex;
  gap: 0.75rem;
  align-items: center;
}

/* Bigger centered input */
.wing-search-input {
  width: 520px;
  padding: 0.75rem 1rem;
  font-size: 1rem;
  border: 1px solid #c6baa9;
  border-radius: 12px;
  background: #fffdf8;
  box-shadow: 0 2px 4px rgba(0,0,0,0.06);
  transition: all 0.2s ease;
}

.wing-search-input:focus {
  outline: none;
  border-color: #b7ab98;
  box-shadow: 0 3px 6px rgba(0,0,0,0.12);
}

/* Button style consistent with your other CTAs */
.wing-search-button {
  padding: 0.75rem 1.5rem;
  background: #111;
  color: #f4f4f4;
  border: none;
  border-radius: 12px;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  cursor: pointer;
  transition: background 0.15s ease, transform 0.15s ease;
}

.wing-search-button:hover {
  background: #222;
  transform: translateY(-1px);
}





/* Centered, premium, bold search block 
.wing-search-block {
  display: flex;
  justify-content: center;
  margin: 2.5rem 0 3rem;
}
.wing-search-form {
  display: flex;
  gap: 0.75rem;
  align-items: center;
}

/* Bigger, wider, cleaner input
.wing-search-input {
  width: 520px;
  padding: 0.75rem 1rem;
  font-size: 1rem;
  border: 1px solid #c6baa9;
  border-radius: 12px;
  background: #fffdf8;
  box-shadow: 0 2px 4px rgba(0,0,0,0.06);
  transition: all 0.2s ease;
}

.wing-search-input:focus {
  outline: none;
  border-color: #b7ab98;
  box-shadow: 0 3px 6px rgba(0,0,0,0.12);
}

/* Button that matches the “Continue Reading” style
.wing-search-button {
  padding: 0.75rem 1.5rem;
  background: #111;
  color: #f4f4f4;
  border: none;
  border-radius: 12px;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  cursor: pointer;
  transition: background 0.15s ease, transform 0.15s ease;
}

.wing-search-button:hover {
  background: #222;
  transform: translateY(-1px);
}

.wing-search-block {
  max-width: 720px;   /* match your featured-guide width 
  margin: 2.5rem auto 3rem auto; /* auto centers it 
  display: flex;
  justify-content: center;
}
*/


/* Responsive layout */
@media (max-width: 900px) {
  .library-card {
    flex: 0 0 calc(50% - 12px);  /* two per row */
  }
}

@media (max-width: 600px) {
  .library-card {
    flex: 0 0 100%;              /* one per row */
  }
}















/* =========================
   DougC Clean Footer Module
   Prefix: dc-foot
   ========================= */

:root{
  --dc-gold: #d1a45a;
  --dc-bg: #07090d;
  --dc-card: rgba(255,255,255,.06);
  --dc-card2: rgba(255,255,255,.04);
  --dc-border: rgba(209,164,90,.22);
  --dc-text: #e9edf2;
  --dc-muted: rgba(233,237,242,.75);
}

.dc-foot{
  background: radial-gradient(circle at 50% 0%, rgba(255,255,255,.06), rgba(0,0,0,0) 60%), var(--dc-bg);
  padding: 44px 0 22px;
  color: var(--dc-text);
}

.dc-foot .dc-wrap{
  width: min(1100px, 92vw);
  margin: 0 auto;
}

/* 3 divider lines */
.dc-foot .dc-sep{
  display: grid;
  gap: 8px;
  justify-items: center;
  margin-bottom: 26px;
}
.dc-foot .dc-line{
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(
    to right,
    rgba(240,231,208,0) 0%,
    rgba(240,231,208,.30) 18%,
    rgba(240,231,208,.85) 50%,
    rgba(240,231,208,.30) 82%,
    rgba(240,231,208,0) 100%
  );
}
.dc-foot .dc-line.one{ width: 58%; opacity: .50; }
.dc-foot .dc-line.two{ width: 76%; opacity: .78; }
.dc-foot .dc-line.three{ width: 58%; opacity: .50; }

/* layout: form left (420px-ish), image right */
.dc-foot .dc-grid{
  display: grid;
  grid-template-columns: minmax(320px, 420px) 1fr;
  gap: 18px;
  align-items: stretch;
  justify-content: center;
}

/* left card */
.dc-foot .dc-card{
  background: linear-gradient(to bottom, rgba(255,255,255,.08), rgba(255,255,255,.045));
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 16px;
  padding: 18px 18px 16px;
  box-shadow: 0 18px 55px rgba(0,0,0,.55);
}

.dc-foot .dc-title{
  margin: 0 0 4px;
  font-size: 20px;
  font-weight: 800;
  letter-spacing: .2px;
}

.dc-foot .dc-sub{
  margin: 0 0 14px;
  color: var(--dc-muted);
  font-size: 13px;
  line-height: 1.35;
}

/* form */
.dc-foot .dc-form{
  display: grid;
  gap: 10px;
  margin-top: 10px;
}
.dc-foot .dc-field label{
  display: block;
  font-size: 12px;
  color: rgba(233,237,242,.85);
  margin: 0 0 6px;
  font-weight: 600;
}
.dc-foot .dc-field input{
  width: 100%;
  height: 40px;
  padding: 0 12px;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(0,0,0,.30);
  color: var(--dc-text);
  outline: none;
}
.dc-foot .dc-field input:focus{
  border-color: rgba(209,164,90,.55);
  box-shadow: 0 0 0 3px rgba(209,164,90,.15);
}

/* submit button */
.dc-foot .dc-btn{
  height: 42px;
  border-radius: 12px;
  border: 1px solid rgba(209,164,90,.55);
  background: linear-gradient(to bottom, rgba(0,0,0,.55), rgba(0,0,0,.85));
  color: var(--dc-gold);
  font-weight: 800;
  letter-spacing: .3px;
  cursor: pointer;
  transition: transform .12s ease, box-shadow .12s ease, border-color .12s ease;
}
.dc-foot .dc-btn:hover{
  transform: translateY(-1px);
  box-shadow: 0 10px 26px rgba(0,0,0,.55);
  border-color: rgba(209,164,90,.75);
}
.dc-foot .dc-btn:active{
  transform: translateY(0px);
}

/* microcopy */
.dc-foot .dc-micro{
  margin: 10px 0 0;
  font-size: 12px;
  color: rgba(233,237,242,.62);
}

/* right image panel */
.dc-foot .dc-image{
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,.08);
  box-shadow: 0 18px 55px rgba(0,0,0,.55);
  min-height: 293px;
}

.dc-foot .dc-image{
  width: 100%;
  max-width: 450px;
  aspect-ratio: 450 / 293;

  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.12);
  background-color: rgba(255,255,255,.04);

  background-image: url("images/footer-dispatch.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}



/* bottom row */
.dc-foot .dc-bottom{
  margin-top: 18px;
  display: grid;
  gap: 10px;
  justify-items: center;
  text-align: center;
}
.dc-foot .dc-copy{
  font-size: 12px;
  color: rgba(233,237,242,.70);
}
.dc-foot .dc-links a{
  color: var(--dc-gold);
  text-decoration: none;
  font-size: 12px;
  margin: 0 8px;
}
.dc-foot .dc-links a:hover{ text-decoration: underline; }

.dc-foot .dc-social a{
  width: 40px;
  height: 40px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.05);
}

.dc-foot .dc-social img{
  width: 30px;
  height: 30px;
}

}
.dc-foot .dc-social a{
  display: inline-flex;
  width: 30px;
  height: 30px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.04);
  align-items: center;
  justify-content: center;
  transition: transform .12s ease, border-color .12s ease;
}
.dc-foot .dc-social a:hover{
  transform: translateY(-1px);
  border-color: rgba(209,164,90,.45);
}
.dc-foot .dc-social img{
  width: 18px;
  height: 18px;
  display: block;
}

.dc-foot .dc-image{
  position: relative;
  width: 100%;
  max-width: 450px;
  aspect-ratio: 450 / 293;
  border-radius: 18px;
  overflow: hidden;

  background-image: url("images/footer-dispatch.jpg");
  background-size: cover;
  hero-max  : center;
}

/* DARKENING OVERLAY
.dc-foot .dc-image::after{
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,.35),
    rgba(17,14,8,.65)
  );
}
*/

.dc-foot .copyright,
.dc-foot .legal-links a {
  font-size: 0.9rem;    /* readable, respectful */
  opacity: 0.75;
}
.dc-foot .legal-links a:hover {
  opacity: 1;
  text-decoration: underline;
}

/* Footer base text scale */
.dc-foot {
  font-size: 1rem;          /* same as body text */
  line-height: 1.6;
}

/* Newsletter description text */
.dc-foot .newsletter-desc,
.dc-foot .newsletter-note {
  font-size: 1rem;          /* NOT smaller than body */
  opacity: 0.9;
}





/* FOOTER SOCIAL ICONS */
.dc-social{
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  margin-top: 14px;
}


.dc-social{
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}

.dc-social-link{
  width: 46px;                 /* circle size */
  height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;

  background: rgba(54,69,79,0.85);      /* charcoal */
  border: 1px solid rgba(209,164,90,0.70); /* gold ring */
  border-radius: 999px;

  box-shadow: 0 8px 18px rgba(0,0,0,0.35);
  transition: transform .12s ease, background .12s ease, border-color .12s ease;
}

.dc-social-link img{
  width: 30px;                  /* icon size */
  height: 30px;
  display: block;
}

.dc-social-link:hover{
  transform: translateY(-1px);
  background: rgba(54,69,79,0.95);
  border-color: rgba(209,164,90,0.95);
}
}


.dc-social a.dc-social-link { width: 56px !important; height: 56px !important; }
.dc-social a.dc-social-link img { width: 36px !important; height: 36px !important; }


.dc-social a{
  display: inline-flex;
  width: 36px;
  height: 36px;
  justify-content: center;
  align-items: center;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.06);
}

/*
.dc-social img{
  width: 30px;
  height: 30px;
  display: block;
}
*/

/* FORCE top social icons to sit above hero overlays */
.dc-social-top  {
  position: absolute;          /* or absolute if you prefer; fixed guarantees visibility */
  top: 18px;
  right: 18px;
  z-index: 9999;
}






/* === Social icon badge (circle + gold ring) === */
.dc-social {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;              /* spacing BETWEEN badges */
  align-items: center;
  justify-content: center; /* change if you want left */
}

/* The circular badge is the <a> */
.dc-social-link{
  width: 44px;            /* badge diameter (bigger than icon) */
  height: 44px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;

  background: rgba(54,69,79,0.90);   /* charcoal */
  border: 2px solid rgba(209,164,90,0.95); /* gold ring */

  text-decoration: none;
  box-sizing: border-box;
}

/* The icon itself */
.dc-social-link img{
  width: 30px;            /* icon size */
  height: 30px;
  display: block;
}

/* Optional hover polish */
.dc-social-link:hover{
  transform: translateY(-1px);
  filter: brightness(1.06);
}



.dc-foot label {
  font-size: 0.95rem;   /* slightly smaller than body, but readable */
  font-weight: 500;
  opacity: 0.9;
}


.dc-foot .copyright,
.dc-foot .legal-links a {
  font-size: 0.9rem;    /* readable, respectful */
  opacity: 0.75;
}
.dc-foot .legal-links a:hover {
  opacity: 1;
  text-decoration: underline;
}










/* mobile: stack */
@media (max-width: 860px){
  .dc-foot .dc-grid{
    grid-template-columns: 1fr;
  }
  .dc-foot .dc-image{
    min-height: 180px;
  }
}









/* RESPONSIVE */
@media (max-width: 860px){
  .dc-news-card{ grid-template-columns: 1fr; }
  .dc-news-right{ display:none; }
  #newsletter-form.form-row{
    grid-template-columns: 1fr;
  }
  .btn-submit{ width: 100%; }
}


/* ===== Footer readability pass (drop-in, last in file) ===== */
.dc-foot { 
  font-size: 16px; 
  line-height: 1.55; 
}

.dc-foot h3,
.dc-foot .dc-title { 
  font-size: 20px; 
  line-height: 1.2; 
}

.dc-foot .dc-desc,
.dc-foot p { 
  font-size: 16px !important; 
  opacity: .92;
}

.dc-foot label { 
  font-size: 15px !important; 
  font-weight: 600; 
  opacity: .92;
}

.dc-foot .dc-note,
.dc-foot small { 
  font-size: 15px !important; 
  opacity: .88; 
}

.dc-foot .dc-legal,
.dc-foot .dc-legal a { 
  font-size: 14px !important; 
  opacity: .85;
}

/* ===== Footer copyright & legal text sizing ===== */
.dc-foot .dc-legal,
.dc-foot .dc-legal p {
  font-size: 14.5px;
  line-height: 1.5;
  opacity: .9;
}

.dc-foot .dc-legal a {
  font-size: 14.5px;
  font-weight: 500;
  opacity: .95;
}
.dc-foot .dc-legal,
.dc-foot .dc-legal a {
  opacity: 1;
}

/* footer copyright + links (make readable) */
.dc-foot .dc-bottom{
  margin-top: 14px;              /* optional spacing */
  text-align: center;
}

.dc-foot .dc-copy{
  font-size: 15px;               /* try 15–16 */
  line-height: 1.5;
  color: rgba(255,255,255,.78);  /* readable on black */
}

/* links inside copyright line */
.dc-foot .dc-copy a{
  font-size: inherit;
  color: rgba(209,164,90,.95);   /* your gold */
  text-decoration: none;
}

.dc-foot .dc-copy a:hover{
  text-decoration: underline;
}

    /* AUDIO */
		.listen-btn {
		  display: inline-flex;
		  align-items: center;
		  gap: 8px;
		  background: #111; /* classy dark charcoal */
		  color: #fff;
		  padding: 10px 18px;
		  border: 1px solid #444;
		  border-radius: 4px;
		  font-size: 16px;
		  font-weight: 500;
		  letter-spacing: 0.5px;
		  cursor: pointer;
		  transition: all 0.25s ease;
		}

		.listen-btn .icon {
		  font-size: 18px;
		  line-height: 0;
		  margin-bottom: 1px;
		}

		.listen-btn:hover {
		  background: #222;
		  border-color: #666;
		}

		.listen-btn:active {
		  background: #000;
		  border-color: #888;
		}

/* === Promise header: title box + audio button side-by-side === */

/* wrapper that aligns title box + audio button */
.section-header-row{
  display: flex;
  align-items: center;
  gap: 50px;
}

/* the title "box" only */
.section-header-bar{
  width: max-content;
  display: inline-flex;
  align-items: center;

  background: rgba(0,0,0,.85);
  padding: 16px 26px;
  border-radius: 18px;
  box-shadow: 0 10px 26px rgba(0,0,0,.35);
}

.section-title{ margin: 0; }






/* AUDIO BUTTON – refined */
.audio-btn{
  display: inline-flex;
  align-items: center;
  gap: 8px;

  padding: 10px 16px;
  border-radius: 10px; 
  background: rgba(0,0,0,0.75);

  border: 1px solid #d4b87a; 
  color: #fefaec;

  font-size: 14px;
  font-weight: 600;
  letter-spacing: .2px;

  cursor: pointer;
  transition: 
    border-color .25s ease,
    box-shadow .25s ease,
    background .25s ease;
}

/* Hover: brighter, not louder*/
.audio-btn:hover{
  border-color: #f1dca8;
  background: rgba(0,0,0,0.85);
  box-shadow: 0 0 0 1px rgba(241,220,168,.25);
}

/* Base inherited from your .audio-btn */
/* Add this BELOW your existing .audio-btn rules */

.audio-btn.continue-btn {
  font-size: 14px;
  padding: 8px 16px;
  margin-top: 12px;
  margin-bottom: 18px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
}

.audio-btn.continue-btn .icon {
  font-size: 12px;
  opacity: 0.85;
}

/* Reveal Panel */
.dc-reveal {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height 0.45s ease, opacity 0.35s ease;
}

.dc-reveal.is-open {
  max-height: 2500px; /* Enough room for long content */
  opacity: 1;
}


/* Force-hidden state */
.dc-reveal {
  display: block !important;
  max-height: 0 !important;
  overflow: hidden !important;
  opacity: 0 !important;
  transition: max-height 0.45s ease, opacity 0.35s ease;
}

/* Visible state */
.dc-reveal.is-open {
  max-height: 3000px !important; /* Enough for VERY long text */
  opacity: 1 !important;
}


/* Reveal Panel */
.dc-reveal {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height 0.45s ease, opacity 0.35s ease;
}

.dc-reveal.is-open {
  max-height: 2500px; /* Enough room for long content */
  opacity: 1;
}





















/* FINAL audio button fix */
.audio-btn{
  border: 2px solid #e9d3ac !important;
  background: rgba(0,0,0,.78) !important;

  /* THIS is the important line */
  background-clip: border-box !important;

  box-sizing: border-box !important;
}

.audio-btn .icon{
  border-color: #f1dca8;
  font-size: 12px;
}

.audio-btn:hover{
  border-color: #fff2c8 !important;
  background: rgba(0,0,0,.9) !important;
  box-shadow: 0 0 0 1px rgba(233,211,172,.35);
}


/* ===== LOCK: LISTEN BUTTON (wins against spaghetti) ===== */
#listen-different{
  font-size: 16px !important;          /* fixes tiny unreadable button */
  font-weight: 600 !important;
  padding: 10px 16px !important;
  line-height: 1 !important;
  min-height: 40px !important;

  border: 5px solid #d1a45a !important;  /* gold border */
  border-radius: 10px !important;
  background: rgba(0,0,0,.78) !important;

  /* IMPORTANT: prevents background painting over border */
  background-clip: border-box !important;

  color: #fff !important;
  cursor: pointer !important;
  display: inline-flex !important;
  align-items: center !important;
  gap: 10px !important;
}

#listen-different:hover{
  border-color: #d1a45a !important;
  background: rgba(0,0,0,.90) !important;
  box-shadow: 0 0 0 1px rgba(233,211,172,.35) !important;
}



/* ===== LOCK: LISTEN BUTTON (THIS ONE ONLY) ===== */
#listen-different{
  font-size: 16px !important;
  font-weight: 600 !important;
  padding: 10px 16px !important;
  line-height: 1 !important;
  min-height: 40px !important;

  border: 3px solid #e9d3ac !important;   /* thicker so it's obvious */
  border-radius: 10px !important;
  background: rgba(0,0,0,.78) !important;
  background-clip: padding-box !important;

  color: #fff !important;
  cursor: pointer !important;

  display: inline-flex !important;
  align-items: center !important;
  gap: 10px !important;
}

/* FORCE hover border back on (kills the disappearing-border problem) */
#listen-different:hover,
#listen-different:focus,
#listen-different:active{
  border: 5px solid #d1a45a !important;
  background: rgba(0,0,0,.90) !important;
  outline: none !important;
}



/*************************************************
   CONTACT FORM LAYOUT — SELF-CONTAINED STYLES
*************************************************/

.dc-contact-wrapper {
    max-width: 800px;
    margin: 50px auto;
    padding: 40px;
    background: #1e1f22;       /* charcoal */
    border-radius: 12px;
}

.dc-contact-intro {
    color: #f5f3ed;            /* vanilla */
    font-size: 1.05rem;
    line-height: 1.7;
    text-align: left;          /* per your request */
    margin: 0 0 35px 0;
}

.dc-contact-form label {
    color: #f5f3ed;
    display: block;
    margin: 15px 0 6px;
    font-size: 0.98rem;
}

/* Base field styling */
.dc-contact-form input,
.dc-contact-form select,
.dc-contact-form textarea {
    width: 100%;
    padding: 12px;
    border-radius: 8px;
    border: 1px solid #444;
    background: #2b2d30;
    color: #f5f5f5;
    font-size: 1rem;
    box-sizing: border-box;
}

/* Half-width fields (Name, Email, Reason) */
.dc-contact-form .field-half {
    width: 50%;
    max-width: 380px;          /* keeps it from getting too wide on big screens */
}

/* Full-width message box */
.dc-contact-form textarea {
    resize: vertical;
    margin-top: 4px;
}

/* Gold button – styled similar to your “Join List” CTA */
.dc-gold-btn {
    margin-top: 25px;
    display: inline-block;
    padding: 14px 28px;
    font-size: 1.02rem;
    border-radius: 999px;
    background: #0d0d0d;                 /* deep black like newsletter */
    color: #d1a45a;                      /* gold text */
    border: 1px solid #d1a45a;           /* gold outline */
    cursor: pointer;
    font-weight: 600;
    letter-spacing: 0.03em;
}

.dc-gold-btn:hover {
    opacity: 0.85;
}


/* Mobile: make the half fields full-width for sanity */
@media (max-width: 768px) {
    .dc-contact-wrapper {
        margin: 30px 16px;
        padding: 24px;
    }

    .dc-contact-form .field-half {
        width: 100%;
        max-width: none;
    }
}

.dc-contact-wrapper { margin-bottom: 75px; }


/* ===== FORCE footer copyright + Privacy/Terms to be readable ===== */
.dc-foot,
.dc-foot .dc-bottom,
.dc-foot .dc-footer-bottom,
.dc-foot .dc-copyright,
.dc-foot .dc-legal,
.dc-foot .dc-legal-row,
.dc-foot .dc-footnote,
.dc-foot .dc-footnote-row,
.dc-foot small,
.dc-foot p,
.dc-foot a {
  font-size: 15px !important;
  line-height: 1.5 !important;
}

/* Make links look like links (still classy) */
.dc-foot a{
  font-weight: 600 !important;
  opacity: .95 !important;
}




/* === Clean article index card styling === */

/* Outer wrapper: just spacing, no colors */
.library-article {
  margin-bottom: 12px;
}

/* The actual pill – the link */
.library-article-link {
  display: block;
  padding: 10px 18px;
  border-radius: 10px;
  background-color: #f8efd4;        /* base card color */
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.10);
  text-decoration: none;
  color: inherit;
  transition: background-color 0.15s ease, box-shadow 0.15s ease;
}

/* Alternating rows: even rows get a slightly deeper tone */
.library-article:nth-child(even) .library-article-link {
  background-color: #e7ddc2;
}
/* Hover must beat the stripe colors */
.library-article-link:hover {
  background-color: #def3f5 !important;  /* or whatever hover color you want */
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.18);
}








/* Hover: whole pill changes color – no dancing, no inner outline */
.library-article-link:hover {
  background-color: #def3f5;        /* soft blue or pick your own */
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.18);
}





/* The card is the LINK, period */
.library-article-link {
  display: block;
  padding: 10px 18px;
  border-radius: 10px;
  background-color: #f8efd4;          /* base card color */
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.10);
  text-decoration: none;
  color: inherit;
  transition: background-color 0.15s ease, box-shadow 0.15s ease;
}

/* Alternating rows: even rows get a slightly deeper tone */
.library-article:nth-child(even) .library-article-link {
  background-color: #f0dfae;
}

/* Hover: whole pill, one element */
.library-article-link:hover {
  background-color: #def3f5;          /* pick whatever hover color you like */
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.18);
}





/* 20260129 7:17am */


/* Hard reset: no background on wrapper or inner row */
.library-article,
.library-article-row {
  background: transparent !important;
  box-shadow: none !important;
}
/* The actual pill is the LINK */
.library-article-link {
  display: block;
  padding: 10px 18px;
  border-radius: 10px;
  background-color: #f2dfb0 !important;   /* base tan */
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.10);
  text-decoration: none;
  color: inherit;
  transition: background-color 0.15s ease, box-shadow 0.15s ease;
}

/* Alternating stripe: even rows only */
.library-article:nth-child(even) .library-article-link {
  background-color: #e4d1aa !important;   /* slightly deeper tan */
}

/* Hover: ONE element, full pill */
.library-article-link:hover {
  background-color: #cfdfff !important;   /* your blue hover */
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.18);
}

.library-article,
.library-article-row {
  background: transparent !important;
  box-shadow: none !important;
}

/* Base card */
.library-article-link {
  display: block;
  padding: 10px 18px;
  border-radius: 10px;
  background-color: var(--article-row-bg) !important;
  box-shadow: 0 2px 4px rgba(0,0,0,0.10);
  text-decoration: none;
  color: inherit;
  transition: background-color 0.15s ease, box-shadow 0.15s ease;
}

/* Alternating stripe */
.library-article:nth-child(even) .library-article-link {
  background-color: var(--article-row-alt) !important;
}

/* Hover — clean, global, takes the whole pill */
.library-article-link:hover {
  background-color: var(--article-hover) !important;
  box-shadow: 0 4px 10px rgba(0,0,0,0.18);
}

/* 20260129 7:30 am  */

/* 1. WRAPPERS MUST NEVER HAVE A BACKGROUND */
.library-article,
.library-article:hover,
.library-article-row,
.library-article-row:hover {
  background: transparent !important;
  box-shadow: none !important;
}
/* 2. THE CARD IS THE LINK – BASE STATE */
.library-article-link {
  display: block;
  padding: 10px 18px;
  border-radius: 10px;
  background-color: var(--article-row-bg) !important; /* light stripe */
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.10);
  text-decoration: none;
  color: inherit;
  transition: background-color 0.15s ease, box-shadow 0.15s ease;
}

/* 3. EVEN ROW STRIPE – ALSO ON THE LINK ONLY */
.library-article:nth-child(even) .library-article-link {
  background-color: var(--article-row-alt) !important; /* darker stripe */
}

/* 4. HOVER – BOTH ODD AND EVEN, SAME COLOR, BEATS STRIPES */
.library-article:nth-child(odd) .library-article-link:hover,
.library-article:nth-child(even) .library-article-link:hover {
  background-color: var(--article-hover) !important; /* your blue */
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.18);
}

/* Title behaves like a link when the card is hovered */
.library-article-link:hover .library-article-title {
  text-decoration: underline;
  color: var(--article-hover);  /* your existing link color variable */
}


/* Index wrapper should not paint a background */
.library-article-list-wrapper {
  background: transparent;
  overflow: hidden;
  max-height: 0;               /* stay collapsed until activated */
  opacity: 0;
  transform: translateY(-8px);
  transition: max-height 0.3s ease,
              opacity 0.25s ease,
              transform 0.25s ease;
}

/* When activated, expand smoothly */
.library-article-list-wrapper.is-visible {
  max-height: 2000px;          /* tall enough for any index list */
  opacity: 1;
  transform: translateY(0);
}



/* ARTICLE INDEX ROWS  ---------------------------------- */

/* base row look */
.library-article-list .library-article {
  background: var(--article-row-bg);   /* color1 */
}

/* alternating stripe */
.library-article-list .library-article:nth-child(even) {
  background: var(--article-row-alt);  /* color2 */
}

/* hover the whole card when the link is hovered */
.library-article-list .library-article-link:hover .library-article {
  background: var(--article-hover);    /* color3 */
  box-shadow: 0 6px 16px rgba(0,0,0,0.14);
  border-color: rgba(5,15,40,0.16);
}

/* text treatment on hover – title only */
.library-article-list .library-article-link:hover .library-article-title {
  text-decoration: underline;
  color: #041d33; /* or whatever your standard link/dark text is */
}

--article-row-bg:  var(--color1);
--article-row-alt: var(--color2);
--article-hover:   var(--color3);

/* === FINAL LIBRARY ARTICLE INDEX STYLES (OVERRIDE) =================== */

/* Container for the list */
.library-article-list {
  margin: 40px 50px;
  max-width: 980px;
}

/* Each article row “card” */
.library-article-list .library-article {
  background: var(--article-row-bg);      /* color1 / parchment light */
  padding: 14px 20px;
  border-radius: 8px;
  margin-bottom: 10px;
  border: 1px solid rgba(5, 15, 40, 0.06);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04);
  transition:
    background 0.18s ease,
    box-shadow 0.18s ease,
    border-color 0.18s ease;
}

/* Alternating stripe (even rows) */
.library-article-list .library-article:nth-of-type(even) {
  background: var(--article-row-alt);     /* color2 / parchment darker */
}

/* Whole row is clickable */
.library-article-list .library-article-link {
  display: block;
  text-decoration: none;
  color: inherit;
}

/* Layout: left content + right meta */
.library-article-list .library-article-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 18px;
}

/* Left side */
.library-article-list .library-article-main {
  flex: 1 1 auto;
  min-width: 0;
}

.library-article-list .library-article-title {
  font-size: 18px;
  font-weight: 600;
  margin: 0 0 4px;
  color: #22201b;
  text-decoration: none;                  /* no underline until hover */
}

.library-article-list .library-article-snippet {
  font-size: 15px;
  line-height: 1.22;
  color: #4a433b;
  margin: 0;
}

/* Right side meta */
.library-article-list .library-article-meta {
  flex: 0 0 160px;
  text-align: right;
  font-size: 13px;
  line-height: 1.2;
  opacity: 0.85;
  padding-top: 2px;
}

.library-article-list .library-article-date {
  font-weight: 600;
}

/* Hover – works for BOTH odd & even rows */
.library-article-list .library-article:hover {
  background: var(--article-hover);       /* color3 / blue accent */
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.16);
  border-color: rgba(5, 15, 40, 0.16);
}

/* On hover, just underline the title (no color circus) */
.library-article-list .library-article:hover .library-article-title {
  text-decoration: underline;
  text-underline-offset: 3px;
}


/* 20260129 9:44 am


/* --- ARTICLE INDEX ROW STRUCTURE --- */
.library-article-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 18px 22px;
  margin-bottom: 12px;
  background: var(--article-row-bg);     /* light parchment */
  border-radius: 8px;
  border: 1px solid rgba(0,0,0,0.10);
  transition: background 0.25s ease, box-shadow 0.25s ease;
}

/* Alternating rows */
.library-article-list .library-article-row:nth-of-type(even) {
  background: var(--article-row-alt);    /* darker parchment */
}

/* Hover unified for both odd/even */
.library-article-row:hover {
  background: var(--article-hover);      /* blue accent */
  box-shadow: 0 4px 10px rgba(0,0,0,0.18);
  cursor: pointer;
}

/* Title */
.library-article-row .library-article-title {
  font-size: 1rem;
  margin: 0 0 4px 0;
  font-weight: 600;
  color: #30220f;
  text-decoration: none;
}

/* Title underline on hover */
.library-article-row:hover .library-article-title {
  text-decoration: underline;
}

/* Snippet text */
.library-article-row p {
  margin: 0;
  color: #4a3f33;
  font-size: 0.92rem;
  line-height: 1.45;
}

/* Meta (date + author) */
.library-article-meta {
  text-align: right;
  min-width: 120px;
  font-size: 0.82rem;
  color: #6a5f52;
}




/& 20260129 10:07 am  */



/* REAL structure — article row is the <a> */
.library-article-list a.library-article-row {
  display: flex;
  justify-content: space-between;
  gap: 20px;

  padding: 12px 18px;
  margin-bottom: 10px;

  border-radius: 8px;
  background: var(--article-row-bg);
  border: 1px solid rgba(5, 15, 40, 0.06);
  box-shadow: 0 1px 2px rgba(0,0,0,0.04);

  text-decoration: none;
  color: inherit;
  cursor: pointer;

  transition:
    background-color 0.18s ease,
    box-shadow 0.18s ease,
    border-color 0.18s ease;
}

/* Even row */
.library-article-list a.library-article-row:nth-of-type(even) {
  background: var(--article-row-alt);
}

/* Hover */
.library-article-list a.library-article-row:hover {
  background: var(--article-hover);
}

.library-article-list a.library-article-row:hover .library-article-title {
  text-decoration: underline;
  text-underline-offset: 3px;
}





/* === FINAL ARTICLE INDEX ROW STYLING === */

/* Base row (card) */
.library-article-list a.library-article-row {
  display: flex;
  justify-content: space-between;
  gap: 20px;

  padding: 12px 18px;
  margin-bottom: 10px;

  border-radius: 8px;
  background-color: var(--article-row-bg) !important;   /* light parchment */
  border: 1px solid rgba(5, 15, 40, 0.06);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04);

  text-decoration: none;
  color: inherit;
  cursor: pointer;

  transition:
    background-color 0.18s ease,
    box-shadow 0.18s ease,
    border-color 0.18s ease;
}

/* Alternating even rows */
.library-article-list a.library-article-row:nth-of-type(even) {
  background-color: var(--article-row-alt) !important;  /* darker parchment */
}

/* Hover on any row (odd or even) */
.library-article-list a.library-article-row:hover {
  background-color: var(--article-hover) !important;    /* blue accent */
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.18);
  border-color: rgba(5, 15, 40, 0.16);
}

/* Title behavior on hover */
.library-article-list a.library-article-row:hover .library-article-title {
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* Indent article index rows (align with header nicely) */
.library-article-list {
  margin-left: 50px;
}



/* Kill extra spacing inside */
.wing-search-form {
  margin: 0;
  padding: 0;
}

.wing-search-wrapper {
  background: var(--lib-card-bg);
  border-radius: var(--lib-card-radius);
  box-shadow: var(--lib-card-shadow);
  padding: 16px 18px 18px;
  transition: box-shadow .18s ease, background .18s ease, border-color .18s ease;
	max-width: 720px;
	width: auto;
  border: 1px solid rgba(5,15,40,0.06);   /* NEW */
}



.library-card-row {
  display: flex;
  flex-wrap: wrap;       /* ⭐ allow a second row */
  gap: 25px;
  justify-content: center;
}

/*
.library-card {
  flex: 1 1 calc(33.333% - 25px);  /* about one-third width 
  max-width: 360px;                /* keeps them from going huge on big screens
  flex-direction: column;
}
*/


.library-card {
  width: 360px;               
}

@media (max-width: 900px) {
  .library-card {
    flex: 1 1 100%;
    max-width: 100%;
  }
}


/* Subcategory Card Image Shadow */
.library-card-img {
    box-shadow: 0 6px 12px rgba(0,0,0,0.28);
    border-radius: 8px;
}

.accessories-subcats,
.other-subcats-block {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.accessories-subcats.is-open,
.other-subcats-block.is-open {
  /* JS will set max-height, this just makes the transition smooth */
}


.accessories-subcats {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

/* .is-open class is what the JS adds */
.accessories-subcats.is-open {
  /* we let JS set max-height dynamically */
}


.accessories-trigger {
  text-decoration: none;
  color: inherit;
  display: block; /* makes the whole card feel like one clickable block */
}

.accessories-trigger:hover {
  text-decoration: none;
}


/* Base wrapper behavior */
.library-article-list-wrapper {
  overflow: hidden;
  transition: max-height 0.3s ease;
}

/* CLOSED state: no vertical padding so they take up ZERO vertical space */
.library-article-list-wrapper:not(.is-visible) {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}

/* OPEN state: gets the nice breathing room */
.library-article-list-wrapper.is-visible {
  padding-top: 25px;
  padding-bottom: 25px;
}


.library-results {
  margin-left: 100px;
  margin-top: 50px;
}



/* Base state: closed, invisible, no vertical padding */
.library-article-list-wrapper {
  overflow: hidden;
  opacity: 0;
  padding-top: 0;
  padding-bottom: 0;
  transition: opacity 1.0s ease-out;
}

/* Open state: visible, with your 25px padding */
.library-article-list-wrapper.is-visible {
  opacity: 1;
  padding-top: 25px;
  padding-bottom: 25px;
}


.legal-body ul {
  padding-left: 1.8rem !important;   /* restores indent */
  list-style: disc !important;        /* normal bullets */
}

.legal-body li {
  padding-left: 0 !important;         /* removes article padding */
}

.legal-body li::before {
  content: none !important;           /* kills custom bullet */
}

audio {
  height: auto !important;
  min-height: 34px !important;
}



