/* =============================================================
   CBS NEWS — modern advertorial (Presell Diabetes)
   Type system mirrors the current CBS News look:
   - Labels / nav / kickers: Oswald (condensed news sans)
   - Headlines:              Nunito Sans (heavy) — CBS "Publico"-ish weight
   - Body / UI:              Nunito Sans
   ============================================================= */

* { margin: 0; padding: 0; box-sizing: border-box; }

:root{
  --cbs-black:#0a0a0a;
  --cbs-red:#eb0000;
  --cbs-red-d:#c40000;
  --cbs-blue:#0038a8;
  --ink:#16181d;
  --ink-soft:#3a3d44;
  --grey:#6b7078;
  --line:#e6e8eb;
  --bg:#ffffff;
  --page:#eceef1;
  --display:'Oswald','Arial Narrow',sans-serif;
  --serif:'Nunito Sans','Helvetica Neue',Arial,sans-serif;
  --sans:'Nunito Sans','Helvetica Neue',Arial,sans-serif;
  --cta-green:#12b24a;
  --cta-green-d:#0c8a39;
  --shadow:0 1px 2px rgba(16,18,29,.04), 0 12px 40px rgba(16,18,29,.07);
}

html{ -webkit-text-size-adjust:100%; scroll-behavior:smooth; }
body{
  background:var(--page);
  color:var(--ink);
  font-family:var(--sans);
  font-size:18px;
  line-height:1.65;
  -webkit-font-smoothing:antialiased;
  text-rendering:optimizeLegibility;
}

img{ max-width:100%; height:auto; display:block; pointer-events:none; }

/* ---------- CBS NEWS TOP BAR ---------- */
.cbs-header{
  background:#fff;
  color:var(--cbs-black);
  position:sticky;
  top:0;
  z-index:50;
  box-shadow:0 2px 0 var(--cbs-red), 0 6px 18px rgba(0,0,0,.12);
}
.cbs-header__inner{
  max-width:1040px;
  margin:0 auto;
  display:flex;
  align-items:center;
  gap:14px;
  padding:11px 20px;
}
.cbs-eye{ width:38px; height:38px; flex:0 0 auto; filter:drop-shadow(0 1px 1px rgba(0,0,0,.4)); }
.cbs-logo{ height:34px; width:auto; flex:0 0 auto; display:block; }
.cbs-wordmark{
  font-family:var(--display);
  font-weight:700;
  letter-spacing:.6px;
  font-size:23px;
  line-height:1;
  text-transform:uppercase;
}
.cbs-wordmark span{ font-weight:400; opacity:.8; }
.cbs-nav{
  margin-left:auto;
  display:flex;
  gap:24px;
  font-family:var(--display);
  font-size:13px;
  text-transform:uppercase;
  letter-spacing:.8px;
  font-weight:500;
}
.cbs-nav a{ color:#4a4f55; text-decoration:none; transition:color .15s ease; cursor:pointer; }
.cbs-nav a:hover{ color:#000; }
.cbs-live{
  color:#fff !important;
  background:var(--cbs-red);
  padding:3px 9px;
  border-radius:3px;
  font-weight:600;
  animation:livepulse 2s ease-in-out infinite;
}
@keyframes livepulse{ 0%,100%{ opacity:1; } 50%{ opacity:.72; } }
@media (max-width:640px){ .cbs-nav{ display:none; } }

/* ---------- ARTICLE SHELL ---------- */
.wrap{
  max-width:730px;
  margin:26px auto;
  background:var(--bg);
  padding:38px 40px 46px;
  border-radius:14px;
  box-shadow:var(--shadow);
}
@media (max-width:640px){
  .wrap{ margin:0 auto; padding:22px 18px 34px; border-radius:0; }
}

.eyebrow{
  display:inline-flex;
  align-items:center;
  gap:8px;
  color:var(--cbs-red);
  font-family:var(--display);
  font-weight:600;
  text-transform:uppercase;
  letter-spacing:1.4px;
  font-size:13px;
  margin-bottom:16px;
}
.eyebrow::before{
  content:"";
  width:22px; height:3px;
  background:var(--cbs-red);
  border-radius:2px;
}

h1.headline{
  font-family:var(--serif);
  font-weight:900;
  font-size:38px;
  line-height:1.16;
  letter-spacing:-.6px;
  color:#0d0f13;
  margin-bottom:20px;
}
@media (max-width:640px){ h1.headline{ font-size:28px; letter-spacing:-.3px; } }

.byline{
  display:flex;
  align-items:center;
  gap:13px;
  padding:15px 0;
  border-top:1px solid var(--line);
  border-bottom:1px solid var(--line);
  margin-bottom:26px;
}
.byline__avatar{
  width:44px; height:44px; border-radius:50%;
  flex:0 0 auto;
  background:linear-gradient(135deg,#d7dbe0,#eef0f3);
  border:1px solid var(--line);
}
.byline__meta{ font-size:14px; line-height:1.4; }
.byline__meta .author{ font-weight:800; color:#0d0f13; letter-spacing:.1px; }
.byline__meta .date{ color:var(--grey); font-size:13px; }
.byline__share{ margin-left:auto; display:flex; gap:8px; }
.share-ic{
  width:34px;height:34px;border-radius:50%;
  background:#f0f2f5;display:flex;align-items:center;justify-content:center;
  color:#555;font-size:14px;font-weight:700;
}

/* ---------- ARTICLE BODY ---------- */
.article p{ margin:0 0 22px; color:var(--ink-soft); }
.article p strong, .article p em strong{ color:var(--ink); }
.article p.lead{
  font-size:22px;
  line-height:1.5;
  color:var(--ink);
  font-weight:600;
  letter-spacing:-.2px;
}
.figure{ margin:8px 0 28px; }
.figure img{
  width:100%;
  border-radius:10px;
  box-shadow:0 6px 22px rgba(16,18,29,.10);
}

/* Center standalone (non-figure) article images and fit to column width */
.article > img{
  display:block;
  width:100%;
  height:auto;
  margin:28px auto;
  border-radius:10px;
  box-shadow:0 6px 22px rgba(16,18,29,.10);
}
.figure figcaption{
  font-size:13px; color:var(--grey);
  padding:12px 2px 16px; line-height:1.5;
  border-bottom:1px solid var(--line);
}

.punch{ font-weight:800; color:var(--ink); }
.big-punch{
  font-family:var(--serif);
  font-weight:900;
  font-size:25px;
  line-height:1.32;
  letter-spacing:-.3px;
  color:#0d0f13;
  margin:30px 0;
}
.center{ text-align:center; }
.red-punch{ color:var(--cbs-red); }
.red-punch u{ text-decoration-color:var(--cbs-red); text-underline-offset:4px; }

.pull{
  position:relative;
  border-left:5px solid var(--cbs-red);
  background:linear-gradient(90deg,rgba(235,0,0,.05),rgba(235,0,0,0));
  padding:16px 20px 16px 22px;
  margin:30px 0;
  border-radius:0 10px 10px 0;
  font-family:var(--serif);
  font-weight:600;
  font-style:italic;
  font-size:22px;
  line-height:1.42;
  letter-spacing:-.2px;
  color:#15171c;
}

.dialogue{ margin:0 0 20px; }
.dialogue .who{ font-weight:800; color:var(--ink); }
.dialogue.q{ color:var(--grey); }
.dialogue.q .who{ color:var(--grey); }

.tight-list{ margin:2px 0 24px; }
.tight-list p{
  margin:0 0 8px;
  font-weight:700;
  color:var(--ink);
  padding-left:26px;
  position:relative;
}
.tight-list p::before{
  content:"";
  position:absolute; left:2px; top:.62em;
  width:9px; height:9px; border-radius:50%;
  background:var(--cbs-red);
}

/* ---------- VIDEO / VSL BLOCK ---------- */
.video-cta-band{
  background:linear-gradient(180deg,#fffaf0,#fff4d6);
  border:1px solid #f1d998;
  text-align:center;
  padding:22px 18px 12px;
  margin:30px 0 10px;
  border-radius:14px;
  box-shadow:0 8px 26px rgba(180,140,0,.10);
}
.watch-below{
  font-family:var(--display);
  font-weight:600;
  text-transform:uppercase;
  letter-spacing:1px;
  font-size:21px;
  color:#b40000;
  margin-bottom:16px;
}
.video-frame{
  position:relative;
  width:100%;
  aspect-ratio:16/9;
  background:#0d0d0d;
  border-radius:10px;
  overflow:hidden;
  display:flex;
  align-items:center;
  justify-content:center;
  color:#fff;
  text-align:center;
  box-shadow:0 10px 30px rgba(0,0,0,.28);
}
/* EDITOR: replace .video-placeholder with your VSL <iframe>/<video> embed */
.video-placeholder{ padding:20px; }
.video-placeholder .play{
  width:74px;height:74px;border-radius:50%;
  background:rgba(255,255,255,.14);
  border:3px solid #fff;
  margin:0 auto 14px;
  display:flex;align-items:center;justify-content:center;
  transition:transform .2s ease, background .2s ease;
}
.video-frame:hover .play{ transform:scale(1.06); background:rgba(255,255,255,.22); }
.video-placeholder .play:after{
  content:"";display:block;
  border-left:22px solid #fff;
  border-top:14px solid transparent;
  border-bottom:14px solid transparent;
  margin-left:6px;
}
.video-placeholder small{ display:block; opacity:.6; font-size:13px; margin-top:6px; letter-spacing:.5px; }

/* ---------- CTA BUTTON (the ONLY clickable element) ---------- */
.cta-wrap{ text-align:center; margin:26px 0 10px; }
.cta-btn{
  display:inline-block;
  background:linear-gradient(180deg,#18cc57,var(--cta-green-d));
  color:#fff !important;
  font-family:var(--sans);
  font-weight:900;
  text-transform:uppercase;
  letter-spacing:.6px;
  font-size:19px;
  text-decoration:none;
  padding:19px 30px;
  border-radius:12px;
  box-shadow:0 6px 0 #0a6e2e, 0 12px 26px rgba(12,138,57,.34);
  transition:transform .1s ease, box-shadow .1s ease, filter .1s ease;
  max-width:540px;
  width:100%;
}
.cta-btn:hover{ filter:brightness(1.04); }
.cta-btn:active{ transform:translateY(4px); box-shadow:0 2px 0 #0a6e2e, 0 6px 14px rgba(12,138,57,.3); }
.cta-sub{ font-size:13px; color:var(--grey); margin-top:12px; }
@media (max-width:640px){ .cta-btn{ font-size:17px; padding:17px 18px; } }

/* ---------- SHARE REQUEST QUOTE ---------- */
.share-quote{
  background:linear-gradient(180deg,#f7f8fa,#eef1f5);
  border:1px solid var(--line);
  border-radius:14px;
  padding:24px 26px;
  margin:30px 0;
  font-family:var(--serif);
  font-weight:600;
  font-style:italic;
  font-size:19px;
  line-height:1.5;
  color:#20232a;
}

/* ---------- CELEBRITY TESTIMONIALS ---------- */
.section-title{
  font-family:var(--serif);
  font-weight:900;
  font-size:28px;
  letter-spacing:-.4px;
  text-align:center;
  margin:44px 0 26px;
  padding-top:28px;
  border-top:3px solid #0d0f13;
  line-height:1.28;
}
.celeb{
  border:1px solid var(--line);
  border-radius:14px;
  overflow:hidden;
  margin-bottom:24px;
  background:#fff;
  box-shadow:0 4px 18px rgba(16,18,29,.06);
  transition:transform .18s ease, box-shadow .18s ease;
}
.celeb:hover{ transform:translateY(-2px); box-shadow:0 10px 28px rgba(16,18,29,.10); }
.celeb__img{
  width:100%; aspect-ratio:16/10; background:#d9d9d9;
  display:flex;align-items:center;justify-content:center;color:#8a8a8a;font-size:13px;
}
.celeb__body{ padding:18px 20px 22px; }
.celeb__name{
  font-family:var(--serif);
  font-weight:900;
  font-size:20px;
  letter-spacing:-.2px;
  margin-bottom:9px;
  color:#0d0f13;
}
.celeb__name small{
  display:block;font-family:var(--sans);font-weight:400;
  font-size:13px;color:var(--grey);letter-spacing:0;
}
.celeb__quote{ font-style:italic; color:#3a3d44; }

/* ---------- WARNING BOX ---------- */
.warning{
  border:1.5px solid var(--cbs-red);
  border-radius:14px;
  overflow:hidden;
  margin:36px 0 24px;
  box-shadow:0 8px 26px rgba(235,0,0,.10);
}
.warning__head{
  background:linear-gradient(180deg,#f21414,var(--cbs-red-d));
  color:#fff;
  font-family:var(--display);
  font-weight:600;
  letter-spacing:1.4px;
  text-transform:uppercase;
  text-align:center;
  padding:13px;
  font-size:18px;
}
.warning__body{ padding:20px 22px; background:#fff6f6; }
.warning__body p{ margin:0 0 14px; color:var(--ink-soft); }
.warning__body p:last-child{ margin-bottom:0; }
.warning__body strong{ color:#b40000; }

.attention-note{
  background:#fff6f6;
  border:1.5px solid var(--cbs-red);
  border-radius:14px;
  padding:18px 22px;
  margin:0 0 24px;
}
.attention-note p{ margin:0; color:var(--ink-soft); }
.attention-note strong{ color:#b40000; }
.attention-note__lead{
  font-family:var(--display);
  text-transform:uppercase;
  letter-spacing:.6px;
  color:var(--cbs-red);
  font-weight:600;
}

/* ---------- FACEBOOK COMMENTS ---------- */
.fb{
  margin-top:44px;
  border-top:1px solid var(--line);
  padding-top:24px;
  font-family:var(--sans);
}
.fb__bar{
  display:flex;align-items:center;justify-content:space-between;
  margin-bottom:10px;
}
.fb__bar h3{ font-size:19px; color:#1c1e21; font-weight:800; }
.fb__bar .count{ color:#65676b; font-weight:400; font-size:15px; }
.fb__sort{ color:#65676b; font-size:14px; font-weight:700; }
.fb__input{ display:flex;align-items:center;gap:10px;margin:14px 0 20px; }
.fb-ava{
  width:40px;height:40px;border-radius:50%;flex:0 0 auto;
  background:#dfe3ee;overflow:hidden;
}
.fb-ava.sm{ width:36px;height:36px; }
.fb__input .box{
  flex:1;background:#f0f2f5;border-radius:18px;
  padding:9px 16px;color:#65676b;font-size:15px;
}
.comment{ display:flex; gap:10px; margin-bottom:16px; }
.comment__content{ flex:1; }
.bubble{
  background:#f0f2f5;border-radius:18px;padding:10px 15px;display:inline-block;max-width:100%;
}
.bubble .name{
  font-weight:700;color:#050505;font-size:14px;display:inline-flex;align-items:center;gap:6px;
}
.badge-topfan{
  background:#e7f3ff;color:#1877f2;font-size:11px;font-weight:700;
  border-radius:4px;padding:1px 5px;text-transform:none;
}
.bubble .text{ font-size:15px;color:#050505;line-height:1.42;margin-top:2px; }
.comment__actions{
  display:flex;gap:16px;padding:5px 14px;font-size:13px;font-weight:700;color:#65676b;
}
.comment__actions .like-active{ color:#1877f2; }
.comment__meta{
  display:inline-flex;align-items:center;gap:4px;margin-left:auto;font-weight:400;
}
.reaction-pill{
  display:inline-flex;align-items:center;gap:2px;
  background:#fff;border-radius:10px;box-shadow:0 1px 2px rgba(0,0,0,.15);
  padding:0 5px;font-size:12px;color:#65676b;font-weight:600;
}
.reply{ margin-left:46px; }

/* ---------- FOOTER ---------- */
.site-footer{
  max-width:730px;margin:0 auto 26px;background:#fff;
  border:1px solid var(--line);border-radius:14px;
  padding:22px;font-size:12px;color:#8a8a8a;line-height:1.6;
}
.site-footer strong{ color:#666; }
.disclaimer{ margin-bottom:12px; }
@media (max-width:640px){ .site-footer{ margin:0; border-radius:0; border-left:0; border-right:0; } }

.comments-closed {
  font-size: 0.875em;
  font-weight: 600;
  text-align: center;
  margin: 0.9375em 0 5px;
  color: #555;
}