.election-news {
  padding-bottom: 0;
}

.news-featured-visual {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(300px, 1.15fr);
  gap: 28px;
  align-items: center;
  margin-bottom: 30px;
}

.news-featured-copy {
  min-width: 0;
}

.news-featured-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
}

.news-featured-category {
  color: var(--brand-red);
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
}

.news-featured-time {
  color: #5f5f5f;
  font-size: 12px;
  line-height: 1;
}

.news-featured-title {
  color: var(--text);
  font-size: 28px;
  font-weight: 900;
  line-height: 1.18;
  margin: 0 0 22px;
}

.news-featured-summary {
  color: #555;
  font-size: 14px;
  line-height: 1.35;
  margin: 0;
  max-width: 390px;
}

.news-featured-image {
  display: block;
  overflow: hidden;
  border-radius: 8px;
  background: #e7e7e7;
  aspect-ratio: 16 / 9;
}

.news-featured-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 767px) {
  .news-featured-visual {
    grid-template-columns: 1fr;
    gap: 16px;
    margin-bottom: 26px;
  }

  .news-featured-title {
    font-size: 24px;
    margin-bottom: 14px;
  }

  .news-featured-summary {
    max-width: none;
  }
}

.news-video-section {
  width: 100vw;
  margin: 0;
  margin-left: calc(50% - 50vw);
  padding: 28px 0 36px;
  background: #fbf3e9;
}

.news-video-inner {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
}

.news-video-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 14px;
}

.news-video-title-wrap {
  display: flex;
  align-items: center;
  gap: 8px;
  min-width: 0;
}

.news-video-title {
  color: var(--text);
  font-size: 16px;
  font-weight: 900;
  line-height: 1;
  margin: 0;
}

.news-video-dot {
  width: 10px;
  height: 10px;
  border: 2px solid var(--brand-red);
  border-radius: 50%;
  position: relative;
}

.news-video-dot::after {
  content: "";
  position: absolute;
  inset: 2px;
  border-radius: 50%;
  background: var(--brand-red);
}

.news-video-live {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 16px;
  padding: 2px 6px;
  border-radius: 100px;
  background: #ffb753;
  color: var(--text);
  font-size: 9px;
  font-weight: 900;
  line-height: 1;
}

.news-video-sponsor {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #333;
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
}

.news-video-sponsor img {
  width: 38px;
  height: auto;
}

.news-video-embed {
  position: relative;
  display: block;
  overflow: hidden;
  background: #111;
  color: #fff;
  aspect-ratio: 16 / 9;
}

.news-video-embed iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

@media (max-width: 767px) {
  .news-video-section {
    padding: 22px 0 28px;
  }

  .news-video-head {
    align-items: flex-start;
  }

}

@media (max-width: 767px) {
  .news-featured-visual {
    gap: 12px;
  }

  .news-featured-image {
    order: -1;
    border-radius: 6px;
  }

  .news-featured-meta {
    margin-bottom: 6px;
  }

  .news-featured-category,
  .news-featured-time {
    font-size: 10px;
  }

  .news-featured-title {
    font-size: 22px;
    line-height: 1.15;
  }

  .news-featured-summary {
    font-size: 14px;
    line-height: 1.45;
  }

  .latest-news-section {
    margin-top: 22px;
  }

  .latest-news-grid {
    display: block;
  }

  .latest-news-grid .news-card {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 92px;
    grid-template-rows: auto 1fr;
    column-gap: 12px;
    align-items: start;
    padding-bottom: 12px;
    margin-bottom: 12px;
    border-bottom: 1px solid #e1e1e1;
  }

  .latest-news-grid .news-image {
    grid-column: 2;
    grid-row: 1 / span 2;
    margin: 0;
  }

  .latest-news-grid .news-image img {
    width: 92px;
    aspect-ratio: 1.45 / 1;
    border-radius: 6px;
    object-fit: cover;
  }

  .latest-news-grid .news-meta {
    grid-column: 1;
    grid-row: 1;
    gap: 8px;
    margin-bottom: 3px;
  }

  .latest-news-grid .news-category,
  .latest-news-grid .news-time {
    font-size: 9px;
    line-height: 1.1;
  }

  .latest-news-grid .news-category {
    font-weight: 700;
  }

  .latest-news-grid .news-title {
    grid-column: 1;
    grid-row: 2;
    font-size: 12px;
    font-weight: 700;
    line-height: 1.2;
  }

}
