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

html,
body {
  width: 100%;
}

body {
  background: #f5f5f5;
  color: #131313;
  font: 16px/1.65 "Proxima Nova", "Segoe UI", Arial, "PingFang SC", "Microsoft YaHei", sans-serif;
}

a {
  color: inherit;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

img {
  border: 0;
  display: block;
  max-width: 100%;
}

ul,
ol,
li {
  list-style: none;
}

input,
button {
  font: inherit;
}

button {
  background: none;
  border: 0;
}

.cbs-shell {
  width: 1280px;
  max-width: calc(100% - 48px);
  margin: 0 auto;
}

.cbs-header {
  background: #121212;
  color: #fff;
  position: relative;
  z-index: 60;
}

.cbs-main-nav {
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.nav-inner {
  min-height: 64px;
  display: grid;
  grid-template-columns: auto auto minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
}

.nav-toggle {
  width: 40px;
  height: 40px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.nav-toggle img {
  width: 18px;
  height: 18px;
  filter: invert(1);
}

.brand-wrap {
  min-width: 0;
}

.brand-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  white-space: nowrap;
}

.brand-eye {
  width: 34px;
  height: 20px;
  border: 2px solid #fff;
  border-radius: 999px;
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.brand-eye::after {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #fff;
}

.brand-text {
  font-size: 27px;
  letter-spacing: -0.2px;
  font-weight: 700;
  line-height: 1;
}

.nav-scroller {
  min-width: 0;
  overflow: hidden;
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: 20px;
  white-space: nowrap;
  overflow-x: auto;
  padding-bottom: 2px;
}

.primary-nav::-webkit-scrollbar {
  display: none;
}

.primary-nav a {
  display: block;
  padding: 22px 0 19px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.55px;
  text-transform: uppercase;
  color: #f6f6f6;
  border-bottom: 3px solid transparent;
}

.primary-nav a:hover {
  text-decoration: none;
  border-color: #d80f23;
}

.search-link {
  width: 40px;
  height: 40px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.search-link img {
  width: 17px;
  height: 17px;
  filter: invert(1);
}

.cbs-sub-nav {
  background: #fff;
  color: #121212;
  border-bottom: 1px solid #e7e7e7;
}

.cbs-sub-nav .cbs-shell {
  min-height: 46px;
  display: flex;
  align-items: center;
  gap: 14px;
}

.sub-nav-title {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.7px;
  color: #b8081a;
  font-weight: 700;
  flex-shrink: 0;
}

.sub-nav-list {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
  overflow-x: auto;
  white-space: nowrap;
}

.sub-nav-list::-webkit-scrollbar {
  display: none;
}

.sub-nav-list a {
  font-size: 13px;
  color: #252525;
}

.sub-nav-list a:hover {
  color: #b8081a;
}

.cbs-live-strip {
  background: linear-gradient(90deg, #9f0517 0%, #cb0e24 100%);
  color: #fff;
}

.live-inner {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 16px;
  align-items: center;
  padding: 11px 0;
}

.live-badge {
  height: 25px;
  padding: 0 10px;
  border: 1px solid rgba(255, 255, 255, 0.6);
  display: inline-flex;
  align-items: center;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.9px;
  font-weight: 700;
}

.live-story {
  min-width: 0;
}

.live-headline {
  display: block;
  font-family: "Publico Headline", Georgia, "Times New Roman", serif;
  font-size: 23px;
  line-height: 1.12;
  font-weight: 700;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.live-headline:hover {
  text-decoration: underline;
}

.live-brief {
  margin-top: 3px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.9);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.cbs-home,
.cbs-list-page,
.cbs-show-page {
  padding: 22px 0 40px;
}

.hero-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.7fr) minmax(0, 1fr);
  gap: 20px;
  align-items: start;
}

.hero-lead,
.mini-card,
.video-promote,
.block,
.stream-panel,
.rail-card,
.list-panel,
.article-panel {
  background: #fff;
  border: 1px solid #dfdfdf;
}

.card-media {
  display: block;
  position: relative;
  background: #ececec;
  overflow: hidden;
}

.ratio-16x9 {
  aspect-ratio: 16 / 9;
}

.ratio-square {
  aspect-ratio: 1 / 1;
}

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

.hero-copy {
  padding: 18px 20px 18px;
}

.kicker {
  height: 24px;
  padding: 0 11px;
  background: #cd0e21;
  color: #fff;
  display: inline-flex;
  align-items: center;
  font-size: 11px;
  letter-spacing: 0.7px;
  text-transform: uppercase;
  font-weight: 700;
}

.hero-headline {
  margin-top: 12px;
  font-family: "Publico Headline", Georgia, "Times New Roman", serif;
  font-size: 48px;
  line-height: 1.02;
  letter-spacing: -0.4px;
  font-weight: 700;
}

.hero-headline a:hover {
  text-decoration: underline;
}

.hero-standfirst {
  margin-top: 12px;
  font-size: 19px;
  color: #3f3f3f;
  line-height: 1.58;
}

.meta-row {
  margin-top: 13px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 16px;
  font-size: 12px;
  color: #666;
}

.inline-more {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: #1f1f1f;
  font-weight: 600;
  letter-spacing: 0.2px;
}

.inline-more img {
  width: 13px;
  height: 13px;
}

.inline-more:hover {
  text-decoration: none;
  color: #b8081a;
}

.related-inline {
  margin: 0 20px 18px;
  padding-top: 13px;
  border-top: 1px solid #ededed;
  display: grid;
  gap: 7px;
}

.related-inline a {
  font-size: 14px;
  font-weight: 600;
  line-height: 1.4;
}

.related-inline a::before {
  content: "•";
  margin-right: 6px;
  color: #b8081a;
}

.hero-stack {
  display: grid;
  gap: 14px;
}

.mini-card {
  display: grid;
  grid-template-columns: 180px minmax(0, 1fr);
  gap: 12px;
  padding: 12px;
}

.mini-card h3 {
  font-family: "Publico Headline", Georgia, "Times New Roman", serif;
  font-size: 25px;
  line-height: 1.1;
  font-weight: 700;
  letter-spacing: -0.15px;
}

.mini-card p {
  margin-top: 6px;
  font-size: 14px;
  color: #4a4a4a;
  line-height: 1.5;
}

.mini-card .meta-row {
  margin-top: 8px;
}

.video-promote {
  padding: 14px 14px 12px;
}

.video-promote-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding-bottom: 10px;
  border-bottom: 1px solid #ededed;
}

.video-promote-head h3 {
  font-family: "Publico Headline", Georgia, "Times New Roman", serif;
  font-size: 30px;
  line-height: 1.05;
  letter-spacing: -0.2px;
}

.video-promote-head a {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: #3f3f3f;
}

.video-promote-head img {
  width: 12px;
  height: 12px;
}

.video-list {
  margin-top: 8px;
  display: grid;
  gap: 10px;
}

.video-list li {
  padding-bottom: 9px;
  border-bottom: 1px solid #ededed;
}

.video-list li:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.video-list a {
  display: block;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.35;
}

.video-list span {
  display: block;
  margin-top: 4px;
  font-size: 12px;
  color: #6a6a6a;
}

.block {
  margin-top: 24px;
  padding: 0 18px 18px;
}

.block-head {
  min-height: 62px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  border-bottom: 1px solid #ededed;
}

.block-title {
  font-family: "Publico Headline", Georgia, "Times New Roman", serif;
  font-size: 36px;
  line-height: 1.05;
  letter-spacing: -0.3px;
  font-weight: 700;
}

.block-more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  color: #3f3f3f;
  font-weight: 600;
}

.block-more img {
  width: 12px;
  height: 12px;
}

.story-grid {
  padding-top: 16px;
  display: grid;
  gap: 16px;
}

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

.story-grid--4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.story-card {
  display: grid;
  gap: 10px;
}

.story-card h3 {
  font-family: "Publico Headline", Georgia, "Times New Roman", serif;
  font-size: 26px;
  line-height: 1.12;
  letter-spacing: -0.2px;
  font-weight: 700;
}

.story-card p {
  font-size: 15px;
  color: #4a4a4a;
  line-height: 1.55;
}

.story-card .meta-row {
  margin-top: 0;
}

.story-card .meta-row span {
  font-size: 12px;
  color: #666;
}

.split-layout {
  margin-top: 24px;
  display: grid;
  grid-template-columns: minmax(0, 1.78fr) 340px;
  gap: 20px;
  align-items: start;
}

.stream-panel {
  padding: 0 18px 10px;
}

.stream-list {
  margin-top: 2px;
}

.stream-list li {
  display: grid;
  grid-template-columns: 252px minmax(0, 1fr);
  gap: 14px;
  padding: 15px 0;
  border-bottom: 1px solid #ececec;
}

.stream-list li:last-child {
  border-bottom: 0;
}

.stream-list h3 {
  font-family: "Publico Headline", Georgia, "Times New Roman", serif;
  font-size: 33px;
  line-height: 1.04;
  letter-spacing: -0.28px;
  font-weight: 700;
}

.stream-list p {
  margin-top: 8px;
  font-size: 16px;
  color: #474747;
  line-height: 1.58;
}

.stream-meta {
  margin-top: 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  font-size: 12px;
  color: #666;
}

.stream-meta a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 600;
  color: #222;
}

.rail {
  display: grid;
  gap: 16px;
}

.rail-card {
  padding: 12px 14px 14px;
}

.rail-title {
  font-family: "Publico Headline", Georgia, "Times New Roman", serif;
  font-size: 29px;
  line-height: 1.06;
  letter-spacing: -0.18px;
  padding-bottom: 10px;
  border-bottom: 1px solid #ececec;
}

.rail-list {
  margin-top: 8px;
  display: grid;
  gap: 10px;
}

.rail-list li {
  padding-bottom: 9px;
  border-bottom: 1px solid #ececec;
}

.rail-list li:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.rail-list a {
  display: block;
  font-size: 16px;
  line-height: 1.36;
  font-weight: 600;
}

.rail-list span {
  display: block;
  margin-top: 4px;
  font-size: 12px;
  color: #666;
}

.number-list {
  margin-top: 8px;
  display: grid;
  gap: 10px;
}

.number-list li {
  display: grid;
  grid-template-columns: 28px minmax(0, 1fr);
  gap: 10px;
  align-items: start;
  padding-bottom: 9px;
  border-bottom: 1px solid #ececec;
}

.number-list li:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.number-list i {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #f1f1f1;
  color: #1f1f1f;
  font-size: 12px;
  font-style: normal;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.number-list a {
  font-size: 15px;
  line-height: 1.4;
  font-weight: 600;
}

.tag-list {
  margin-top: 10px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.tag-list a {
  height: 30px;
  padding: 0 10px;
  border: 1px solid #dddddd;
  display: inline-flex;
  align-items: center;
  font-size: 13px;
  color: #3a3a3a;
  background: #fafafa;
}

.tag-list a:hover {
  border-color: #b8081a;
  color: #b8081a;
  text-decoration: none;
}

.thumb-list {
  margin-top: 10px;
  display: grid;
  gap: 10px;
}

.thumb-list li {
  display: grid;
  grid-template-columns: 92px minmax(0, 1fr);
  gap: 10px;
  align-items: start;
  padding-bottom: 10px;
  border-bottom: 1px solid #ececec;
}

.thumb-list li:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.thumb-list a {
  font-size: 15px;
  line-height: 1.4;
  font-weight: 600;
}

.breadcrumb {
  font-size: 12px;
  color: #666;
  line-height: 1.5;
  margin-bottom: 12px;
}

.breadcrumb a {
  color: #3a3a3a;
}

.breadcrumb span {
  margin: 0 6px;
}

.list-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.78fr) 340px;
  gap: 20px;
  align-items: start;
}

.list-panel {
  padding: 0 18px 16px;
}

.list-heading {
  min-height: 64px;
  display: flex;
  align-items: center;
  border-bottom: 1px solid #ececec;
  font-family: "Publico Headline", Georgia, "Times New Roman", serif;
  font-size: 52px;
  line-height: 1.02;
  letter-spacing: -0.45px;
  font-weight: 700;
}

.featured-list {
  margin-top: 16px;
  border: 1px solid #ececec;
}

.featured-list .featured-copy {
  padding: 14px 14px 16px;
}

.featured-list h2 {
  font-family: "Publico Headline", Georgia, "Times New Roman", serif;
  font-size: 36px;
  line-height: 1.06;
  letter-spacing: -0.3px;
  font-weight: 700;
}

.featured-list p {
  margin-top: 8px;
  font-size: 17px;
  color: #454545;
}

.featured-list .meta-row {
  margin-top: 10px;
}

.list-cards {
  margin-top: 8px;
}

.list-cards li {
  display: grid;
  grid-template-columns: 250px minmax(0, 1fr);
  gap: 14px;
  padding: 16px 0;
  border-bottom: 1px solid #ececec;
}

.list-cards li:last-child {
  border-bottom: 0;
}

.list-cards h3 {
  font-family: "Publico Headline", Georgia, "Times New Roman", serif;
  font-size: 34px;
  line-height: 1.05;
  letter-spacing: -0.25px;
  font-weight: 700;
}

.list-cards p {
  margin-top: 8px;
  font-size: 16px;
  color: #474747;
  line-height: 1.58;
}

.pagination {
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid #ececec;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.pagination a {
  min-width: 36px;
  height: 36px;
  padding: 0 11px;
  border: 1px solid #d7d7d7;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  color: #2e2e2e;
  background: #fff;
}

.pagination a:hover {
  text-decoration: none;
  background: #191919;
  border-color: #191919;
  color: #fff;
}

.show-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.78fr) 340px;
  gap: 20px;
  align-items: start;
}

.article-panel {
  padding: 20px 24px 24px;
}

.article-label {
  display: inline-flex;
  align-items: center;
  height: 25px;
  padding: 0 11px;
  background: #cd0e21;
  color: #fff;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.7px;
  font-weight: 700;
}

.article-title {
  margin-top: 12px;
  font-family: "Publico Headline", Georgia, "Times New Roman", serif;
  font-size: 56px;
  line-height: 1.01;
  letter-spacing: -0.55px;
  font-weight: 700;
}

.article-meta {
  margin-top: 14px;
  padding: 10px 0;
  border-top: 1px solid #ececec;
  border-bottom: 1px solid #ececec;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 16px;
  font-size: 12px;
  color: #666;
}

.article-media {
  margin-top: 16px;
}

.article-body {
  margin-top: 20px;
  font-size: 19px;
  line-height: 1.9;
  color: #1f1f1f;
  word-break: break-word;
}

.article-body p {
  margin: 14px 0;
}

.article-body img {
  max-width: 100%;
  height: auto;
}

.article-topics {
  margin-top: 20px;
  padding-top: 14px;
  border-top: 1px solid #ececec;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
}

.article-topics span {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  color: #666;
}

.article-topics a {
  height: 30px;
  padding: 0 12px;
  border: 1px solid #dddddd;
  display: inline-flex;
  align-items: center;
  font-size: 13px;
  background: #fafafa;
}

.related-block {
  margin-top: 26px;
}

.related-list {
  margin-top: 10px;
  border-top: 1px solid #ececec;
}

.related-list li {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid #ececec;
}

.related-list li:last-child {
  border-bottom: 0;
}

.related-list a {
  min-width: 0;
  font-size: 18px;
  line-height: 1.4;
  font-weight: 600;
}

.related-list span {
  flex-shrink: 0;
  font-size: 12px;
  color: #666;
  padding-top: 4px;
}

.cbs-footer {
  background: #101010;
  color: #d4d4d4;
  margin-top: 40px;
}

.footer-top {
  padding: 30px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(0, 1fr) minmax(0, 1fr);
  gap: 28px;
}

.footer-branding {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #fff;
}

.footer-branding .brand-eye {
  border-color: #fff;
}

.footer-branding .brand-eye::after {
  background: #fff;
}

.footer-branding .brand-text {
  font-size: 30px;
}

.footer-brand p {
  margin-top: 12px;
  font-size: 14px;
  color: #b8b8b8;
  line-height: 1.75;
  max-width: 520px;
}

.footer-live {
  margin-top: 14px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  height: 34px;
  padding: 0 14px;
  border: 1px solid #d74b57;
  color: #fff;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.65px;
  font-weight: 700;
}

.footer-live img {
  width: 12px;
  height: 12px;
  filter: invert(1);
}

.footer-col h4 {
  font-family: "Publico Headline", Georgia, "Times New Roman", serif;
  font-size: 24px;
  line-height: 1.08;
  color: #fff;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-links {
  margin-top: 12px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 12px;
}

.footer-links a {
  color: #d7d7d7;
  font-size: 14px;
  line-height: 1.2;
}

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

.footer-bottom {
  padding: 13px 0 24px;
  font-size: 12px;
  color: #a8a8a8;
  line-height: 1.8;
}

.footer-bottom a {
  color: #efefef;
}

.footer-bottom .partner-links {
  margin-top: 8px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 12px;
}

@media (max-width: 1024px) {
  .cbs-shell {
    max-width: calc(100% - 30px);
  }

  .nav-inner {
    grid-template-columns: auto auto minmax(0, 1fr) auto;
    gap: 12px;
  }

  .brand-text {
    font-size: 24px;
  }

  .primary-nav {
    gap: 16px;
  }

  .live-headline {
    font-size: 20px;
  }

  .hero-layout,
  .split-layout,
  .list-layout,
  .show-layout,
  .footer-top {
    grid-template-columns: 1fr;
  }

  .story-grid--3,
  .story-grid--4 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .stream-list li,
  .list-cards li {
    grid-template-columns: 220px minmax(0, 1fr);
  }

  .hero-headline,
  .article-title,
  .list-heading {
    font-size: 44px;
    letter-spacing: -0.28px;
  }

  .mini-card h3,
  .stream-list h3,
  .list-cards h3 {
    font-size: 30px;
  }
}

@media (max-width: 760px) {
  .cbs-shell {
    max-width: calc(100% - 22px);
  }

  .nav-inner {
    min-height: 56px;
    grid-template-columns: auto minmax(0, 1fr) auto;
  }

  .brand-wrap {
    order: 2;
  }

  .nav-scroller {
    display: none;
  }

  .search-link {
    order: 3;
    width: 36px;
    height: 36px;
  }

  .nav-toggle {
    width: 36px;
    height: 36px;
    order: 1;
  }

  .brand-text {
    font-size: 21px;
  }

  .cbs-sub-nav .cbs-shell {
    min-height: 40px;
  }

  .sub-nav-title {
    font-size: 11px;
  }

  .live-inner {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 10px 0;
  }

  .live-badge {
    width: max-content;
  }

  .live-headline {
    font-size: 18px;
  }

  .live-brief {
    white-space: normal;
  }

  .cbs-home,
  .cbs-list-page,
  .cbs-show-page {
    padding-top: 16px;
  }

  .hero-copy,
  .article-panel,
  .list-panel,
  .stream-panel,
  .block {
    padding-left: 14px;
    padding-right: 14px;
  }

  .hero-headline,
  .article-title,
  .list-heading {
    font-size: 34px;
    letter-spacing: 0;
  }

  .hero-standfirst,
  .article-body {
    font-size: 17px;
  }

  .mini-card,
  .stream-list li,
  .list-cards li,
  .thumb-list li {
    grid-template-columns: 1fr;
  }

  .mini-card h3,
  .stream-list h3,
  .list-cards h3 {
    font-size: 28px;
    letter-spacing: 0;
  }

  .video-promote-head h3,
  .block-title,
  .rail-title,
  .footer-col h4 {
    font-size: 24px;
  }

  .story-grid--3,
  .story-grid--4 {
    grid-template-columns: 1fr;
  }

  .related-list {
    margin-top: 8px;
  }

  .related-list li {
    display: block;
  }

  .related-list span {
    display: block;
    padding-top: 5px;
  }

  .footer-top {
    gap: 20px;
    padding: 22px 0;
  }

  .footer-branding .brand-text {
    font-size: 26px;
  }
}
