/* 最新ニュース大板块 */
.news-feature{
  display: flex;
  gap: 24px;
  align-items: stretch;
  padding: 24px 0;
  border-top: 1px solid #eee; /* 可按需删除 */
}

/* 左侧视频区域 */
.news-feature__media{
  flex: 1 1 55%;
  min-width: 0; /* 防止溢出 */
}

.news-feature__video{
  width: 100%;
  height: 100%;
  max-height: 360px;         /* 控制“比较大的板块高度” */
  object-fit: cover;
  border-radius: 12px;
  background: #000;
}

/* 右侧文字区域 */
.news-feature__content{
  flex: 1 1 45%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.news-feature__title{
  font-size: 22px;
  margin: 0 0 8px;
}

.news-feature__meta{
  font-size: 14px;
  color: #666;
  margin: 0 0 12px;
}

.news-feature__text{
  font-size: 16px;
  line-height: 1.7;
  margin: 0 0 16px;
}

.news-feature__btn{
  display: inline-block;
  width: fit-content;
  padding: 10px 16px;
  border-radius: 999px;
  text-decoration: none;
  background-color: #333;
  color: #fff;
  font-size: 14px;
}

.news-feature__btn:hover {
  text-decoration-line: none;
  background-color: #111;
  color: #bbb;
}

/* 手机端：上下排列 */
@media (max-width: 768px){
  .news-feature{
    flex-direction: column;
  }
  .news-feature__video{
    max-height: 240px;
  }
}
