:root {
  --cnnt-red: #c21f25;
  --cnnt-red-dark: #9e171d;
  --cnnt-gold: #d8a522;
  --cnnt-gold-soft: #fbf6e6;
  --cnnt-navy: #1e4f9a;
  --cnnt-ink: #1f2b3d;
  --cnnt-body: #546274;
  --cnnt-line: #e2e5ea;
  --cnnt-muted: #f5f7fa;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Open Sans", system-ui, sans-serif;
  font-feature-settings: "ss01" 1, "cv02" 1, "cv10" 1;
  font-size: 16px;
  line-height: 1.65;
}

body.mobile-nav-open {
  overflow: hidden;
}

a,
button,
input {
  transition: all 0.2s ease;
}

img {
  display: block;
}

aside .panel{background: #f6f9fb;}

.site-topline {
  background:
    linear-gradient(90deg, var(--cnnt-red-dark), var(--cnnt-navy) 48%, #d74935 100%);
  color: white;
}

.site-brandline {
  background: #fffbc3; /*fff;*/
  position: relative;
}

.site-mobilebar {
  position: sticky;
  top: 0;
  z-index: 75;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid var(--cnnt-line);
  backdrop-filter: blur(14px);
}

.site-mobilebar__logo {
  display: inline-flex;
  align-items: center;
  min-width: 0;
}

.header-mark {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 70% 45%, rgba(216, 165, 34, 0.1), transparent 16%),
    radial-gradient(circle at 76% 45%, rgba(30, 79, 154, 0.08), transparent 20%);
}

.site-nav {
  background: #fff;
  border-bottom: 1px solid var(--cnnt-line);
  position: sticky;
  top: 0;
  z-index: 60;
  box-shadow: 0 0 0 rgba(8, 31, 58, 0);
  transition: box-shadow 0.2s ease, background-color 0.2s ease;
}

.site-nav__brand {
  display: inline-flex;
  align-items: center;
  width: 0;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
  transition: width 0.2s ease, opacity 0.2s ease, margin-right 0.2s ease;
}

.site-nav.is-sticky {
  box-shadow: 0 14px 36px rgba(8, 31, 58, 0.08);
}

.site-nav.is-sticky .site-nav__brand {
  width: 112px;
  margin-right: 10px;
  opacity: 1;
  pointer-events: auto;
}

.site-nav.is-sticky .main-navbar > .nav-item.home,
.site-nav.is-sticky .main-navbar > .nav-item:first-child {
  display: none;
}

.site-nav .widget,
.main-navbar,
.main-nav,
.site-nav ul {
  overflow: visible;
}

.main-navbar {
  display: flex;
  align-items: stretch;
}

.main-navbar > .nav-item {
  position: relative;
  display: inline-flex;
  align-items: stretch;
  overflow: visible;
}

.nav-item {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  padding: 0 10px;
  color: var(--cnnt-ink);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  white-space: nowrap;
  border-bottom: 3px solid transparent;
}

.nav-item.menu-home a:before {
  content: "\f015";
  margin-right: 6px;
  font-family: "Font Awesome 6 Pro";
  font-size: 20px;
}

.nav-item.menu-home span{display: none;}

.nav-item:hover,
.nav-item.is-home {
  color: var(--cnnt-navy);
}

.nav-item.is-home {
  border-bottom-color: var(--cnnt-navy);
}

.nav-latest {
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--cnnt-ink);
  white-space: nowrap;
}

.nav-latest:hover {
  color: var(--cnnt-navy);
}

.dropdown.has-children:hover > .dropdown-menu{
  display: grid !important;
  left: auto;
  top: 80%;
}

.search-icon {
  position: relative;
  display: block;
  width: 18px;
  height: 18px;
  border: 3px solid currentColor;
  border-radius: 50%;
}

.search-icon::after {
  content: "";
  position: absolute;
  right: -5px;
  bottom: -4px;
  width: 8px;
  height: 3px;
  background: currentColor;
  transform: rotate(45deg);
  transform-origin: center;
}

.mobile-nav {
  position: fixed;
  inset: 0;
  z-index: 90;
  background: rgba(12, 19, 31, 0.4);
}

.mobile-nav__backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background: transparent;
}

.mobile-nav__panel {
  position: relative;
  display: flex;
  height: 100dvh;
  flex-direction: column;
  background:
    linear-gradient(180deg, rgba(246, 239, 226, 0.96) 0%, rgba(247, 249, 251, 0.98) 22%, rgba(255, 255, 255, 1) 100%);
  overflow: hidden;
}

.mobile-nav__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  padding: 24px 20px 18px;
  border-bottom: 1px solid var(--cnnt-line);
}

.mobile-nav__close {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 1px solid var(--cnnt-line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.85);
  color: var(--cnnt-navy);
  font-size: 16px;
}

.mobile-nav__body {
  flex: 1 1 auto;
  min-height: 0;
  padding: 12px 20px 28px;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior: contain;
}

.mobile-nav .widget {
  display: grid;
  gap: 8px;
}

.mobile-nav .main-navbar,
.mobile-nav ul {
  display: grid;
  gap: 10px;
  width: 100%;
  margin: 0;
  padding: 0;
  list-style: none;
}

.mobile-nav .nav-item {
  display: block;
  min-height: 0;
  padding: 0;
  border: 0;
  position: relative;
}

.mobile-nav a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 56px;
  padding: 0 14px;
  border: 1px solid var(--cnnt-line);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 10px 24px rgba(8, 31, 58, 0.05);
}

.mobile-nav .dropdown-menu {
  position: static;
  display: none;
  min-width: 0;
  margin: 8px 0 2px;
  padding: 0 0 0 12px;
  border: 0;
  box-shadow: none;
  background: transparent;
  float: none;
}

.mobile-nav .nav-item.is-open > .dropdown-menu {
  display: grid;
  gap: 0;
}

.mobile-nav .dropdown-menu .nav-link,
.mobile-nav .dropdown-menu a {
  display: flex;
  justify-content: flex-start;
  min-height: 44px;
  padding: 0 12px;
  border: 0;
  border-bottom: 1px solid var(--cnnt-line);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.mobile-nav .nav-link {
  width: 100%;
  color: var(--cnnt-ink);
  padding-right: 56px;
}

.mobile-nav .nav-item.is-open > .nav-link {
  color: var(--cnnt-navy);
}

.mobile-submenu-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 7px;
  right: 10px;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--cnnt-navy);
  font-size: 16px;
  flex-shrink: 0;
}

.mobile-submenu-toggle i {
  transition: transform 0.2s ease;
}

.mobile-nav .nav-item.is-open > .mobile-submenu-toggle i {
  transform: rotate(180deg);
}

.mobile-nav .dropdown-menu li:last-child .nav-link,
.mobile-nav .dropdown-menu li:last-child a {
  border-bottom: 0;
}

@media (min-width: 1024px) {
  .site-nav {
    position: sticky;
  }

  .mobile-submenu-toggle {
    display: none;
  }
}

@media (max-width: 1023.98px) {
  .site-nav {
    position: static;
  }

  .site-header {
    border-bottom: 0;
  }

  .site-brandline {
    display: none;
  }

  .breaking-strip .mx-auto {
    grid-template-columns: auto minmax(0, 1fr);
    align-items: center;
  }

  .breaking-strip__badge {
    min-width: 40px;
    padding: 0;
    background: transparent;
    color: var(--cnnt-red);
    justify-content: flex-start;
  }

  .breaking-strip__badge-icon {
    display: inline-flex;
    font-size: 16px;
  }

  .breaking-strip__badge-text {
    display: none;
  }
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 1000;
  display: none;
  float: left;
  min-width: 10rem;
  padding: .5rem 0;
  margin: .125rem 0 0;
  font-size: 1rem;
  color: #212529;
  text-align: left;
  list-style: none;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid rgba(0, 0, 0, .15);
  border-radius: .25rem;
}

.main-navbar > .nav-item >.dropdown-menu {
  margin: 0px;
  padding: 0px;
  border-radius: inherit;
  border: none;
  height: auto;
  -webkit-background-clip: initial;
  background-clip: initial;
  box-shadow: 1px 3px 10px 0px #0000005c;
  min-width: 240px;
  top: calc(100% - 1px);
  left: 0;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.16s ease, visibility 0.16s ease;
}

.main-navbar > .nav-item:hover > .dropdown-menu,
.main-navbar > .nav-item:focus-within > .dropdown-menu,
.main-navbar > .nav-item.is-open > .dropdown-menu,
.main-navbar > .nav-item.open > .dropdown-menu {
  display: block !important;
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.main-navbar .dropdown-menu .nav-item {
  display: block;
  position: relative;
}

.main-navbar .dropdown-menu .nav-link {
  display: block;
  padding: 0 10px;
  line-height: 45px;
  text-transform: capitalize;
  border-bottom: 1px dashed #ddd;
}

.breaking-strip {
  background: #fff;
  border-bottom: 1px solid var(--cnnt-line);
}

.breaking-strip__badge {
  gap: 8px;
}

.breaking-strip__badge-icon {
  display: none;
}

.ticker-track span {
  display: inline-block;
  min-width: 100%;
  white-space: nowrap;
  animation: ticker-scroll 26s linear infinite;
}

@keyframes ticker-scroll {
  from {
    transform: translateX(15%);
  }

  to {
    transform: translateX(-100%);
  }
}

.panel {
  background: transparent;
  border: 0;
  box-shadow: none;
  border-radius: 0;
}

.panel-hero {
  position: relative;
  overflow: hidden;
}

.panel-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(216, 165, 34, 0.08), transparent 18%);
}

.panel-dark {
  background:
    linear-gradient(180deg, rgba(247, 249, 251, 1), rgba(247, 249, 251, 1));
}

.section-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  border-bottom: 2px solid rgba(214, 166, 59, 0.28);
  padding-bottom: 12px;
}

.section-title h2 {
  position: relative;
  padding-left: 34px;
  font-family: "Merriweather", Georgia, serif;
  font-size: 22px;
  font-weight: 800;
  line-height: 1.2;
  color: var(--cnnt-navy);
}

.section-title h2::before {
  content: "🌾";
  position: absolute;
  left: 0;
  top: -1px;
  font-size: 22px;
  line-height: 1;
}

.section-title a {
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--cnnt-navy);
}

.section-title a:hover {
  color: var(--cnnt-red-dark);
}

.section-title--mini h2 {
  font-size: 20px;
}

.section-title--dark {
  border-bottom-color: rgba(214, 166, 59, 0.22);
}

.section-title--dark h2 {
  color: var(--cnnt-navy);
}

.section-title--dark a {
  color: var(--cnnt-navy);
}

.story-media {
  overflow: hidden;
  border-radius: 0;
  background: #eaf0f5;
  border: 0;
  position: relative;
}

.story-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.story-kicker {
  margin-top: 14px;
  font-size: 10px;
  font-weight: 800;
  line-height: 1.5;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--cnnt-navy);
}

.story-time {
  margin-top: 10px;
  font-size: 10px;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #7a8895;
}

.stack-card {
  border-bottom: 1px solid var(--cnnt-line);
  padding-bottom: 20px;
}

.stack-card:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}
.text-cnnt-body{font-weight: 500;}
.stack-title,
.micro-headline h3,
.news-card h3,
.side-story h3,
.rank-item a,
.feature-title,
.list-rail a,
.research-card h3,
.footer-col h3 {
  color: var(--cnnt-navy);
}

.stack-title {
  margin-top: 10px;
  font-family: "Merriweather", Georgia, serif;
  font-size: 18px;
  font-weight: 800;
  line-height: 1.45;
}

.micro-headline h3 {
  margin-top: 8px;
  font-family: "Merriweather", Georgia, serif;
  font-weight: 600;
}

.news-card h3 {
  margin-top: 12px;
  font-family: "Merriweather", Georgia, serif;
  font-size: 16px;
  line-height: 1.5;
  font-weight: 800;
}

.feature-title {
  margin-top: 12px;
  font-family: "Merriweather", Georgia, serif;
  font-size: 22px;
  line-height: 1.5;
  font-weight: 700;
}

.story-summary {
  margin-top: 12px;
  color: var(--cnnt-body);
  font-weight: 500;
}

.list-rail {
  display: grid;
  gap: 0;
}

.list-rail a {
  padding: 0 0 10px 0;
  font-family: "Merriweather", Georgia, serif;
  font-size: 16px;
  line-height: 1.5;
  font-weight: 800;
}

.list-rail a:hover,
.rank-item a:hover,
.news-card h3:hover,
.side-story h3:hover,
.stack-title:hover {
  color: var(--cnnt-navy);
}

.side-story {
  display: grid;
  grid-template-columns: 92px 1fr;
  gap: 14px;
  align-items: start;
}

.side-story img {
  width: 92px;
  height: 92px;
  object-fit: cover;
  border-radius: 0;
}

.side-story h3 {
  margin-top: 6px;
  font-family: "Merriweather", Georgia, serif;
  font-size: 15px;
  line-height: 1.5;
  font-weight: 800;
}

.side-story--compact {
  grid-template-columns: 112px 1fr;
}

.side-story--compact img {
  width: 112px;
  height: 84px;
}

.rank-item {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 12px;
  align-items: start;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--cnnt-line);
}

.rank-item:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.rank-item span {
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  border-radius: 0;
  background: var(--cnnt-gold-soft);
  color: var(--cnnt-navy);
  font-size: 14px;
  font-weight: 900;
}

.rank-item a {
  font-size: 14px;
  line-height: 1.55;
  font-weight: 700;
}

.market-card {
  border-top: 1px solid var(--cnnt-line);
  background: transparent;
  padding: 16px 0 18px;
}

.market-card:first-child {
  border-top: 0;
}

.market-card:last-child {
  border-bottom: 1px solid var(--cnnt-line);
}

.market-card__label {
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--cnnt-navy);
}

.market-card__rows {
  margin-top: 10px;
  display: grid;
  gap: 8px;
}

.market-card__rows div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  font-size: 18px;
  color: var(--cnnt-body);
}

.market-card__rows strong {
  color: var(--cnnt-navy);
  font-size: 20px;
}

.ad-banner {
  border: 1px solid var(--cnnt-line);
}

.form-field {
  width: 100%;
  border: 1px solid var(--cnnt-line);
  background: white;
  padding: 14px 16px;
  font-size: 14px;
  color: var(--cnnt-ink);
  outline: none;
}

.form-field:focus {
  border-color: rgba(177, 31, 36, 0.35);
  background: white;
}

.primary-btn,
.secondary-btn {
  min-height: 46px;
  padding: 0 18px;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.primary-btn {
  background: var(--cnnt-red);
  color: white;
}

.primary-btn:hover {
  filter: brightness(1.04);
}

.secondary-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(180deg, var(--cnnt-gold), #ba8d2e);
  color: white;
}

.secondary-btn--ghost {
  background: transparent;
  border: 1px solid var(--cnnt-line);
  color: var(--cnnt-navy);
}

.research-band {
  background: #f6f9fb;
  border-top: 1px solid var(--cnnt-line);
  border-bottom: 1px solid var(--cnnt-line);
}

.research-card {
  display: grid;
  gap: 14px;
  grid-template-columns: 110px 1fr;
  background: transparent;
  padding: 0 0 16px;
}

.research-card img {
  width: 110px;
  height: 110px;
  object-fit: cover;
  border-radius: 0;
}

.research-card h3 {
  font-family: "Merriweather", Georgia, serif;
  font-size: 16px;
  line-height: 1.5;
  font-weight: 800;
  color: var(--cnnt-navy);
}

.research-card p {
  margin-top: 8px;
  line-height: 1.7;
  color: var(--cnnt-body);
  font-weight: 500;
}

.research-card__description{font-size: 14px;}

.media-shell {
  background: #272727;
  color: white;
}

.media-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  padding-bottom: 14px;
}

.media-head__left {
  display: flex;
  min-width: 0;
  align-items: center;
  gap: 22px;
}

.media-head h2 {
  margin: 0;
  color: var(--cnnt-gold);
  font-family: "Open Sans", system-ui, sans-serif;
  font-size: 18px;
  font-weight: 800;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.media-head h2::before {
  content: none;
}

.media-tabs {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px;
}

.media-tabs a,
.media-social span,
.media-social__list span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
}

.media-tabs a:hover {
  color: white;
}

.media-social {
  display: flex;
  align-items: center;
  gap: 16px;
}

.media-social > span {
  text-transform: none;
}

.media-social__list {
  display: flex;
  align-items: center;
  gap: 16px;
}

.media-layout {
  display: grid;
  gap: 28px;
  margin-top: 24px;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
}

.media-frame {
  background: transparent;
}

.media-hero-card,
.media-card {
  color: white;
}

.media-hero-title,
.media-card h3 {
  margin-top: 14px;
  color: white;
  font-family: "Open Sans", system-ui, sans-serif;
  font-weight: 800;
}

.media-hero-title {
  font-size: 28px;
  line-height: 1.35;
}

.media-hero-summary {
  margin-top: 10px;
  max-width: 92%;
  color: rgba(255, 255, 255, 0.82);
  font-size: 16px;
  line-height: 1.75;
}

.media-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.media-card h3 {
  font-size: 16px;
  line-height: 1.5;
}

.media-actions {
  display: flex;
  justify-content: center;
  margin-top: 28px;
}

.media-more {
  display: inline-flex;
  min-width: 110px;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.6);
  color: white;
  font-size: 14px;
  font-weight: 700;
}

.media-more:hover {
  background: rgba(255, 255, 255, 0.08);
}

.media-feature {
  position: relative;
}

.play-badge {
  position: absolute;
  left: 20px;
  bottom: 20px;
  display: grid;
  place-items: center;
  width: 62px;
  height: 62px;
  background: rgba(255, 255, 255, 0.88);
  color: var(--cnnt-navy);
  font-size: 22px;
  border: 1px solid rgba(31, 43, 61, 0.12);
}

.play-badge--small {
  left: 12px;
  bottom: 12px;
  width: 32px;
  height: 32px;
  font-size: 13px;
}

.footer-col h3 {
  font-family: "Merriweather", Georgia, serif;
  font-size: 17px;
  font-weight: 800;
}

.footer-col p,
.footer-col li {
  margin-top: 10px;
  color: var(--cnnt-body);
  font-size: 14px;
  line-height: 1.8;
}
.is-sticky .menu-home {
  display: none;
}
@media (max-width: 1279px) {
  .section-title h2 {
    font-size: 20px;
  }

  .feature-title {
    font-size: 24px;
  }

  .media-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 767px) {
  .hotspot .left-bar{order: 2;}
  .hotspot .right-bar{order: 1;}
  .hotspot .center-bar{order: 0;}
  .section-title {
    align-items: flex-start;
    flex-direction: column;
  }

  .section-title h2 {
    font-size: 18px;
  }

  .section-title--mini h2 {
    font-size: 17px;
  }

  .feature-title {
    font-size: 21px;
  }

  .stack-title,
  .news-card h3,
  .list-rail a,
  .research-card h3 {
    font-size: 15px;
  }

  .media-shell {
    padding: 20px 16px;
  }

  .media-head,
  .media-head__left,
  .media-social {
    align-items: flex-start;
    flex-direction: column;
  }

  .media-grid {
    gap: 15px;
  }
  .media-hero-card, .media-card{text-align: justify;}

  .media-hero-title {
    font-size: 22px;
  }

  .media-hero-summary,
  .media-card h3 {
    max-width: none;
    font-size: 15px;
    font-weight: 500;
  }

  .breaking-strip__badge-icon{display: block;}

  .side-story,
  .side-story--compact,
  .research-card {
    grid-template-columns: 84px 1fr;
  }

  .side-story img,
  .side-story--compact img {
    width: 84px;
    height: 84px;
  }

  .research-card img {
    width: 84px;
    height: 84px;
  }

  .nav-item {
    padding: 0 8px;
    font-size: 14px;
  }
}
