/* =====================================================================
   Pressel / Advertorial — news-portal style layout
   HTML + CSS only (no scripts). Brand and copy are placeholders.
   Accent color centralized in the --accent variable.
   ===================================================================== */

:root {
  --accent: #FF503C;          /* brand color (replace with yours) */
  --accent-2: #FF6B3D;
  --link: #2563eb;
}

* { box-sizing: border-box; }

body.advertorial {
  font-family: 'Proxima Nova', 'Mulish', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  background-color: #ffffff;
  color: #2a2a2a;
  -webkit-font-smoothing: antialiased;
  margin: 0;
  padding: 0;
}

img { max-width: 100%; }

/* --- HEADER --- */
.today-header-wrapper {
  position: sticky;
  top: 0;
  z-index: 9999;
  background: #fff;
  border-bottom: 1px solid #e8e8e8;
}

.today-header-inner {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  height: 54px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* ROW 1 — left dropdown nav */
.today-nav-top {
  display: flex;
  align-items: center;
  gap: 4px;
  flex-shrink: 0;
}

.nav-top-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin: 0;
  padding: 5px 10px;
  border-radius: 6px;
  font-size: 15px;
  font-weight: 600;
  color: #1a1a1a;
  text-decoration: none;
  white-space: nowrap;
  cursor: pointer;
  transition: background-color 0.15s ease;
}

.nav-top-link:hover { background-color: #eef0f2; }

.nav-top-link .chevron {
  width: 11px;
  height: 11px;
  flex-shrink: 0;
}

.nav-top-live .live-dot {
  color: var(--accent);
  font-size: 20px;
  line-height: 0;
  margin-right: -1px;
}

.nav-top-more {
  margin: 0;
  padding: 5px 10px;
  border-radius: 6px;
  font-size: 18px;
  letter-spacing: 2px;
  color: #1a1a1a;
  text-decoration: none;
  cursor: pointer;
  line-height: 1;
  transition: background-color 0.15s ease;
}

.nav-top-more:hover { background-color: #eef0f2; }

/* ROW 1 — centered logo */
.today-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
  cursor: pointer;
}

.today-logo-center {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.today-logo .brand-logo {
  height: 46px;
  width: auto;
  display: block;
}

/* ROW 1 — right search */
.today-header-right {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
}

.today-header-right .icon-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  cursor: pointer;
  color: #2a2a2a;
  font-size: 18px;
  padding: 4px;
}

/* ROW 2 — category links */
.today-nav-secondary {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  height: 42px;
  display: flex;
  align-items: center;
  gap: 6px;
  overflow-x: auto;
  border-top: 1px solid #eef0f2;
}

.today-nav-secondary p {
  margin: 0;
  padding: 5px 10px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 600;
  color: #1a1a1a;
  text-decoration: none;
  white-space: nowrap;
  cursor: pointer;
  flex-shrink: 0;
  transition: background-color 0.15s ease;
}

.today-nav-secondary p:hover { background-color: #eef0f2; }

.today-nav-secondary .nav-show-title {
  font-weight: 800;
  font-size: 15px;
}

.today-nav-secondary .nav-divider {
  color: #c9ccd0;
  font-size: 14px;
  flex-shrink: 0;
  margin: 0 2px;
}

/* --- BREAKING NEWS --- */
.breaking-news-banner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 10px 20px;
  display: flex;
  align-items: center;
  gap: 14px;
  border-bottom: 1px solid #e8e8e8;
}

.breaking-news-label {
  display: inline-flex;
  align-items: center;
  background: #f2f2f2;
  padding: 6px 16px;
  font-size: 13px;
  font-weight: 700;
  color: #2a2a2a;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  white-space: nowrap;
  border-left: 4px solid var(--accent-2);
}

.breaking-news-date {
  font-size: 13px;
  color: #2a2a2a;
}

/* --- ARTICLE HEADER --- */
.article-header {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px 20px 0;
}

.article-header .article-category,
.article-header .article-title,
.article-header .article-byline { max-width: 800px; }

.article-category {
  font-size: 12px;
  font-weight: 700;
  color: #2a2a2a;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 12px;
  display: inline-block;
}

.article-title {
  font-family: 'Proxima Nova', 'Mulish', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-size: 38px;
  font-weight: 800;
  line-height: 1.15;
  color: #000;
  margin: 0 0 16px 0;
}

.article-byline {
  padding: 12px 0;
  border-top: 1px solid #e8e8e8;
}

.byline-authors {
  margin: 0 0 4px;
  font-size: 13px;
  font-weight: 400;
  color: #2a2a2a;
}

.byline-name {
  font-weight: 700;
}

.byline-meta {
  margin: 0;
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: #6b6b6b;
}

.byline-logo { height: 13px; width: auto; }

/* --- CONTENT + SIDEBAR WRAPPER --- */
.content-with-sidebar {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  gap: 40px;
  padding: 0 20px;
  align-items: flex-start;
}

.content-main-col { flex: 1; min-width: 0; max-width: 800px; }

.today-article-content { padding: 24px 0 0; }

.today-article-content p {
  font-size: 17px;
  line-height: 1.7;
  color: #2a2a2a;
  margin-bottom: 16px;
}

.today-article-content strong, .today-article-content b { font-weight: 700; }

.article-body > img {
  width: 100%;
  border-radius: 4px;
  margin-bottom: 24px;
}

.article-body hr {
  border: none;
  border-top: 1px solid #e8e8e8;
  margin: 28px 0;
}

/* --- SUBTÍTULOS DO ARTIGO --- */
.article-subhead {
  font-family: 'Proxima Nova', 'Mulish', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-size: 26px;
  font-weight: 800;
  line-height: 1.25;
  color: #000;
  margin: 34px 0 16px;
}

/* --- FIGURAS DO ARTIGO --- */
.article-figure {
  margin: 28px 0;
}

.article-figure img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
}

.article-figure figcaption {
  margin-top: 10px;
  font-size: 14px;
  line-height: 1.5;
  color: #6b6b6b;
}

/* --- CTA --- */
.cta-section { text-align: center; margin: 28px 0; }

.cta-link {
  display: inline-block;
  color: var(--link);
  font-size: 18px;
  font-weight: 700;
  text-decoration: underline;
  margin-bottom: 12px;
}

.cta-section img { width: 100%; border-radius: 4px; display: block; }

.video-thumb { position: relative; border-radius: 4px; overflow: hidden; }

.play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 92px;
  height: 92px;
  border-radius: 50%;
  background: #e01a22;
  box-shadow: 0 0 0 10px rgba(255, 255, 255, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.15s ease, background-color 0.15s ease;
}

.play-button svg { width: 36px; height: 36px; margin-left: 4px; }

.video-thumb:hover .play-button {
  background: #b4141f;
  transform: translate(-50%, -50%) scale(1.06);
}

.cta-button {
  display: inline-block;
  width: 100%;
  padding: 16px 20px;
  border-radius: 6px;
  font-size: 20px;
  font-weight: 700;
  text-decoration: none;
  text-align: center;
}

.cta-button-watch {
  width: 85%;
  background: #75141D;
  color: #fff;
  border-radius: 8px;
  box-shadow: 0 4px 0 #4f0d13, 0 8px 16px rgba(117, 20, 29, 0.35);
  animation: cta-pulse 2.2s ease-in-out infinite;
}

@keyframes cta-pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.04); }
}

/* --- BLOCKQUOTE --- */
.article-blockquote {
  border-left: 4px solid var(--accent);
  margin: 24px 0;
  padding: 16px 24px;
  background: #fafafa;
  font-style: italic;
  font-size: 18px;
  line-height: 1.6;
  color: #555;
}

.article-blockquote cite {
  display: block;
  margin-top: 12px;
  font-style: normal;
  font-size: 15px;
  font-weight: 700;
  color: #1a1a1a;
}

/* --- MORE FROM CBS NEWS (cards estilo 60 Minutes) --- */
.more-news-section { margin: 34px 0; }

.more-news-title {
  font-size: 19px;
  font-weight: 700;
  color: #1a1a1a;
  margin: 0 0 14px;
}

.more-news-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 28px;
}

.more-news-grid:last-child { margin-bottom: 0; }

/* Card: texto à esquerda, thumb à direita */
.news-card {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
  padding: 14px;
  background: #f2f2f2;
  border-radius: 10px;
  text-decoration: none;
  color: inherit;
  transition: background-color 0.15s ease;
}

.news-card:hover { background: #e8e8e8; }
.news-card:hover .news-card-text p { text-decoration: underline; }

.news-card-text { flex: 1; min-width: 0; }

.news-card-brand {
  display: block;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.2px;
  color: #1a1a1a;
  margin-bottom: 6px;
}

.news-card-brand b { font-weight: 800; }

.news-card-brand-mornings { color: #e8730c; }
.news-card-brand-mornings b { color: #e8730c; }

.news-card-brand-hw {
  color: #a3122a;
  font-weight: 800;
  font-size: 11px;
  letter-spacing: 0.4px;
}

.news-card-text p {
  margin: 0;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.35;
  color: #1a1a1a;
}

.news-card > img {
  width: 96px;
  height: 96px;
  flex-shrink: 0;
  object-fit: cover;
  border-radius: 6px;
  display: block;
  background: #ddd;
}

/* --- COMMENTS (Facebook style) --- */
.comments-wrapper { margin-top: 36px; }

.fb-heading {
  font-size: 20px;
  font-weight: 700;
  color: #1a1a1a;
  margin: 0 0 16px;
}

.comments-container {
  border: 1px solid #dddfe2;
  border-radius: 16px;
  padding: 24px;
}

.comment {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding-bottom: 20px;
  position: relative;
}

.comment .user-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  flex-shrink: 0;
  background: #ddd;
  object-fit: cover;
  border: 1px solid #e4e6eb;
}

.comment .comment-data {
  flex: 1;
  min-width: 0;
  background: #f0f2f5;
  border-radius: 18px;
  padding: 12px 16px;
}

.comment .name {
  margin: 0;
  font-weight: 700;
  font-size: 15px;
  color: #385898;
}

.comment .text {
  margin: 4px 0 0;
  font-size: 15px;
  line-height: 1.5;
  color: #1c1e21;
}

.comment .buttons {
  display: flex;
  gap: 6px;
  align-items: center;
  margin: 10px 0 0;
  font-size: 13px;
  color: #65676b;
}

.comment .buttons like,
.comment .buttons answer { font-weight: 700; cursor: pointer; }

.comment likes {
  position: absolute;
  right: 16px;
  bottom: 30px;
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 13px;
  font-weight: 600;
  color: #65676b;
}

.comment likes::before {
  content: "👍 ❤️";
  font-size: 15px;
  letter-spacing: -2px;
}

.comments-closed {
  text-align: center;
  color: #65676b;
  font-style: italic;
  font-weight: 400;
  margin: 8px 0 0;
}

/* --- SIDEBAR (padrão 60 Minutes) --- */
.ads-sidebar {
  width: 300px;
  flex-shrink: 0;
  position: sticky;
  top: 117px; /* altura do header sticky (97px) + respiro */
}

/* Barra vermelha "60 MINUTES" */
.sidebar-brand-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  height: 46px;
  border-radius: 6px;
  margin-bottom: 14px;
  background: linear-gradient(135deg, #8f0f18 0%, #b4141f 45%, #7d0d15 100%);
  color: #fff;
  line-height: 1;
}

.sidebar-brand-bar .sixty {
  font-size: 21px;
  font-weight: 400;
  letter-spacing: 1px;
}

.sidebar-brand-bar .minutes {
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 2px;
  align-self: flex-end;
  padding-bottom: 13px;
}

/* Vídeo em destaque */
.sidebar-video {
  display: block;
  text-decoration: none;
  color: inherit;
  padding-bottom: 16px;
  margin-bottom: 16px;
  border-bottom: 1px solid #e0e0e0;
}

.sidebar-video .video-thumb { border-radius: 6px; }

.sidebar-video img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  display: block;
  background: #ddd;
}

.play-button-sm {
  width: 56px;
  height: 56px;
  box-shadow: 0 0 0 6px rgba(255, 255, 255, 0.18);
}

.play-button-sm svg { width: 22px; height: 22px; }

.sidebar-video-title {
  margin-top: 12px;
  font-size: 17px;
  font-weight: 700;
  line-height: 1.3;
  color: #1a1a1a;
}

.sidebar-video:hover .sidebar-video-title { text-decoration: underline; }

.sidebar-video-time {
  margin-top: 4px;
  font-size: 14px;
  color: #6b6b6b;
}

/* Cards da lista lateral (mesmo padrão do More from CBS News) */
.news-card-side { margin-bottom: 12px; }
.news-card-side .news-card-text p { font-size: 15px; }
.news-card-side > img { width: 78px; height: 78px; }

/* --- INFO BLOCKS (ingredients / disclaimer / references) --- */
.info-block {
  background: #f7f7f7;
  border: 1px solid #e5e5e5;
  border-radius: 6px;
  padding: 22px 26px;
  margin: 24px 0;
}

.info-block-title {
  font-size: 15px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #2a2a2a;
  margin: 0 0 14px;
}

.info-block p {
  font-size: 14px;
  line-height: 1.65;
  color: #555;
  margin: 0 0 14px;
}

.info-block p:last-child { margin-bottom: 0; }

.references-list {
  margin: 0;
  padding-left: 22px;
  list-style: decimal;
}

.references-list li {
  font-size: 13px;
  line-height: 1.6;
  color: #555;
  margin-bottom: 14px;
  padding-left: 6px;
}

.references-list li:last-child { margin-bottom: 0; }

.references-list a {
  color: var(--link);
  text-decoration: none;
  word-break: break-word;
}

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

/* --- FOOTER --- */
.today-footer {
  padding: 40px 20px 32px;
  background: #0d0d0f;
  margin-top: 40px;
}

.today-footer-inner { max-width: 1200px; margin: 0 auto; }

.footer-logo-row {
  display: flex;
  justify-content: center;
  margin-bottom: 36px;
}

.footer-logo {
  height: 40px;
  width: auto;
}

.footer-columns {
  display: flex;
  flex-wrap: wrap;
  gap: 36px;
  padding-bottom: 28px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-col { min-width: 150px; }

.footer-col h4 {
  margin: 0 0 14px;
  font-size: 14px;
  font-weight: 700;
  color: #fff;
}

.footer-col p {
  margin: 0 0 10px;
  font-size: 14px;
  font-weight: 400;
  color: #b7b9bd;
  cursor: pointer;
}

.footer-col p:hover { color: #fff; text-decoration: underline; }

.footer-copyright {
  margin: 20px 0 0;
  font-size: 12px;
  color: #7c7f84;
}

/* ===================== RESPONSIVE ===================== */
@media (max-width: 768px) {
  .today-nav-top { display: none; }

  .today-header-inner { height: 50px; padding: 0 12px; justify-content: center; }
  .today-logo .brand-logo { height: 36px; }

  .today-header-right { position: absolute; right: 12px; top: 50%; transform: translateY(-50%); }

  .today-nav-secondary {
    padding: 0 12px;
    gap: 4px;
    -webkit-overflow-scrolling: touch;
  }

  .breaking-news-banner { padding: 8px 12px; gap: 10px; }
  .breaking-news-label { font-size: 11px; padding: 3px 12px; }
  .breaking-news-date { font-size: 12px; }

  .footer-columns { gap: 24px 16px; }
  .footer-col { min-width: calc(50% - 8px); }

  .article-header { padding: 16px 16px 0; }
  .article-title { font-size: 28px; }

  .content-with-sidebar { flex-direction: column; padding: 0; gap: 0; }
  .content-main-col { max-width: none; }
  .today-article-content { padding: 16px 16px 0; }
  .today-article-content p { font-size: 16px; }
  .article-subhead { font-size: 22px; margin: 28px 0 14px; }

  .ads-sidebar { display: none; }

  .cta-button-watch {
    width: 100%;
    font-size: 17px;
    padding: 14px 16px;
  }

  .more-news-grid { grid-template-columns: 1fr; gap: 10px; }
  .more-news-title { font-size: 18px; }
  .news-card { padding: 12px; gap: 12px; }
  .news-card-text p { font-size: 15px; }
  .news-card > img { width: 84px; height: 84px; }
}

@media (max-width: 1024px) and (min-width: 769px) {
  .today-nav-top { gap: 14px; }
  .nav-top-link { font-size: 13px; }
  .today-nav-secondary { gap: 4px; }
  .today-nav-secondary p { font-size: 13px; }

  .ads-sidebar { width: 250px; }
  .more-news-grid { grid-template-columns: 1fr; }
}

/* === AJUSTES LEAD2 BLACK ================================================= */

/* --- corpo do artigo em serifada, um pouco maior --- */
.today-article-content p,
.today-article-content .cta-link,
.article-subhead {
  font-family: 'Source Serif 4', Georgia, 'Times New Roman', serif;
}

.today-article-content p {
  font-size: 22px;
  line-height: 1.58;
  color: #1c1c1c;
  margin-bottom: 24px;
  letter-spacing: 0.1px;
}

.today-article-content p b,
.today-article-content p strong { font-weight: 700; }

.article-subhead { font-size: 30px; font-weight: 700; line-height: 1.28; }

/* --- headline agora mora dentro da coluna principal --- */
.content-main-col > .article-header {
  max-width: none;
  margin: 0;
  padding: 20px 0 0;
}
.content-main-col > .article-header .article-title,
.content-main-col > .article-header .article-byline { max-width: none; }

/* a sidebar sobe junto com a headline */
.content-with-sidebar { padding-top: 0; }
.ads-sidebar { width: 416px; top: 117px; }  /* 320 + 30% */

@media (max-width: 1024px) and (min-width: 769px) {
  .ads-sidebar { width: 351px; }
}

@media (max-width: 768px) {
  .content-main-col > .article-header { padding: 16px 16px 0; }
  .today-article-content p { font-size: 19px; line-height: 1.58; margin-bottom: 20px; }
  .article-subhead { font-size: 24px; }
}
