* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}

body {
  background-color: #fff;
}

.news-page {
  color: #fff;
  position: relative;
  width: 100%;
  overflow: hidden;
  padding-bottom: 40px;
}

.news-page::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* background-image: url('../img/gerais/cbsnewsvideo.jpg'); */
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
  z-index: -2;
}

.news-page::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* background: linear-gradient(180deg,
      rgba(8, 13, 24, 0.88) 0%,
      rgba(4, 6, 10, 0.94) 100%); */
  z-index: -1;
}

.main-header {
  width: 100%;
  position: relative;
  z-index: 2;
}

.header-overlay {
  width: 100%;
  background-color: #0c0c0c;
}

.nav-container {
  width: 100%;
  padding: 0 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
}



.bottom-row {
  height: 38px;
  border-bottom: 1px solid #1a1a1a;
  background-color: #0e0e0e;
}

.top-left-menu,
.sub-menu-left,
.weather-widget {
  display: none !important;
}

.logo {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 16px;
  font-weight: 800;
  letter-spacing: 0.5px;
}

.logo_abc {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}


.cbs-eye-icon {
  width: 18px;
  height: 18px;
  border: 2px solid #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.inner-circle {
  width: 6px;
  height: 6px;
  background-color: #fff;
  border-radius: 50%;
}

.search-btn {
  background: none;
  border: none;
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
}

.mobile-grid-btn {
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  padding: 5px 0;
}

.grid-icon {
  width: 3.5px;
  height: 3.5px;
  background: #fff;
  box-shadow: 0 -5px #fff, 0 5px #fff, -5px 0 #fff, -5px -5px #fff, -5px 5px #fff, 5px 0 #fff, 5px -5px #fff, 5px 5px #fff;
}

.mobile-trending-links {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  white-space: nowrap;
  width: 100%;
  padding: 4px 0;
  scrollbar-width: none;
}

.mobile-trending-links::-webkit-scrollbar {
  display: none;
}

.mobile-trending-links a {
  color: #999;
  text-decoration: none;
  font-size: 13px;
  font-weight: 500;
}

.mobile-trending-links a:hover {
  color: #fff;
}

@media (min-width: 768px) {

  .header-overlay {
    background: transparent;
  }

  .nav-container {
    max-width: 1320px;
    margin: 0 auto;
    padding: 10px 0 0 10px;
    position: relative;
  }

  .top-row {
    height: 52px;
    border-bottom: 0.5px solid #ccc;
  }

  .bottom-row {
    height: 48px;
    border-bottom: none;
    background-color: transparent;
  }

  .mobile-grid-btn,
  .mobile-trending-links {
    display: none !important;
  }

  .top-left-menu,
  .sub-menu-left,
  .weather-widget {
    display: flex !important;
  }

  .top-left-menu {
    gap: 24px;
  }

  .top-left-menu a {
    color: #000;
    text-decoration: none;
    /* font-size: 14px; */
    font-weight: 700;
    display: flex;
    align-items: center;
  }


  .sub-menu-left a {
    color: #000;
    text-decoration: none;
    /* font-size: 16px; */
    /* font-weight: 700; */
    display: flex;
    align-items: center;
  }

  .arrow {
    color: #8a8a8a;
    font-size: 11px;
    margin-left: 5px;
  }

  .live-link {
    display: flex;
    align-items: center;
  }

  .live-dot {
    width: 6px;
    height: 6px;
    background-color: #e51b24;
    border-radius: 50%;
    margin-right: 6px;
  }


  .logo {
    font-size: 19px;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
  }

  .cbs-eye-icon {
    width: 22px;
    height: 22px;
    border-width: 3px;
  }

  .inner-circle {
    width: 8px;
    height: 8px;
  }

  .sub-menu-left {
    align-items: center;
    gap: 20px;
  }

  .location-brand {
    font-size: 15px;
    font-weight: 900;
    color: #000;
  }

  .separator {
    color: rgba(255, 255, 255, 0.25);
    font-size: 14px;
    margin: 0 2px;
  }

  .weather-widget {
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 700;
    border-left: 0.5px solid #ccc;
    padding-left: 20px;
    height: 50px;
    color: #000;
  }

  .cloud-icon {
    /* color: #cccccc; */
  }
}

.page-content {
  width: 100%;
  max-width: 1260px;
  margin: 0 auto;
  padding: 40px 24px;
  display: flex;
  justify-content: center;
  position: relative;
  z-index: 1;
}

.video-section {
  width: 100%;
  max-width: 720px;
  border-radius: 4px;
}

.a-i-e-cont {
  color: #000;
  background-image: unset;
  font-family: Poppins, sans-serif;
  font-size: 23px;
  line-height: 38px;
  text-align: center;
  width: 50%;
  max-width: 1260px;
  margin: 40px auto;
  padding: 0 24px;
}

.a-i-e-cont h2 {
  font-weight: normal;
  font-size: inherit;
  line-height: inherit;
}


@media (max-width: 768px) {
  .a-i-e-cont {
    width: 100%;
    margin: 20px auto;
    padding: 0 20px;
    font-size: 20px;
    line-height: 30px;
  }
}












/* ===== FB COMMENTS (new style) ===== */
.init-comments {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 1rem 2rem;
}

.comments-box {
  border: 1px solid #ddd;
  border-radius: 4px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
  background: #fff;
  font-family: Arial, Helvetica, sans-serif;
}

.main-head-facebook {
  margin-top: 50px;
  padding: .75rem 1rem;
  background-color: #f9fafb;
  border-bottom: 1px solid #ddd;
}

.main-head-facebook .flex {
  display: flex;
  align-items: center;
}

.main-head-facebook .w-5 {
  width: 1.25rem;
  height: 1.25rem;
}

.main-head-facebook .text-sm {
  font-size: .875rem;
  line-height: 1.25rem;
  padding-left: 10px;
  font-weight: 600;
  color: #374151;
}

.main-head-facebook .text-xs {
  font-size: .75rem;
  line-height: 1rem;
  color: #6b7280;
  margin-top: .25rem;
  padding-left: 9px;
}

.comments-box .comment-count {
  padding: 16px;
  font-weight: 600;
  font-size: 14px;
}

.comments-box .comment {
  display: flex;
  gap: 10px;
  padding: 10px 16px;
}

.comments-box .comment.reply {
  margin-left: 40px;
}

.comments-box .avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  flex-shrink: 0;
}

.comments-box .content {
  flex: 1;
}

.comments-box .bubble {
  background: #f0f2f5;
  border-radius: 18px;
  padding: 10px 14px;
}

.comments-box .name {
  font-weight: 600;
  color: #385898;
  font-size: 14px;
}

.comments-box .text {
  font-size: 15px;
  margin-top: 4px;
  color: #050505;
}

.comments-box .actions {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 4px;
  font-size: 12px;
  color: #65676b;
}

.comments-box .actions .dot {
  color: #bcc0c4;
}

.comments-box .action-btn {
  background: none;
  border: none;
  font-size: 12px;
  color: #65676b;
  font-weight: 600;
  cursor: pointer;
  padding: 0;
}

.comments-box .action-btn:hover {
  text-decoration: underline;
}

.comments-box .reactions {
  margin-right: 38px;
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 6px;
}

.comments-box .reaction-count {
  font-size: 12px;
  font-weight: 600;
  color: #65676b;
  padding: 0;
}

.comments-box .reaction-icons {
  display: flex;
  align-items: center;
}

.comments-box .reaction {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.15);
}

.comments-box .reaction.like {
  background: #1877f2;
  z-index: 2;
}

.comments-box .reaction.love {
  background: linear-gradient(135deg, #ff4d4d, #ff0066);
  /* margin-left: -6px; */
}

/* HERO IMAGE */
.hero-img-wrap {
  max-width: 900px;
  margin: 0 auto;
  overflow: hidden;
}

.hero-img {
  display: block;
  width: 100%;
  height: auto;
}

/* MEDIA QUERIES PARA RESPONSIVIDADE */
@media (min-width: 768px) {
  .hero-img {
    width: 75%;
    margin: 0 0 0 auto;
  }

  .today-sub-nav {
    display: none;
  }

  .today-nav-desktop {
    display: flex;
  }

  .today-signin-btn {
    display: block;
  }

  .hero-content h1 {
    font-size: 1.875rem;
  }

  .hero-content .subtitle {
    font-size: 1.125rem;
  }

  .pricing-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .package-card.popular {
    order: -1;
  }

  .comments-box .comment.reply {
    margin-left: 50px;
  }
}



.top-left-menu i,
.sub-menu-left i {
  font-size: 10px;
  margin-left: 9px;
}


.cbs-live-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  background-color: #ff0000;
  border-radius: 50%;
  margin-right: 6px;
  vertical-align: middle;
}




/* ===== MEDIA LOGOS ===== */
.media-logos {
  background: #fff;
  padding: 24px 16px;
}

.media-logos__list {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 32px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.media-logos__item img {
  height: 48px;
  width: auto;
  object-fit: contain;
  filter: grayscale(100%);
  opacity: .7;
  transition: all .3s ease;
}

.media-logos__item img:hover {
  filter: grayscale(0%);
  opacity: 1;
}