.kuangke-featured-news-section {
  padding: 130px 0;
  background-color: #f8f9fa;
}

.kuangke-featured-news-wrapper {
  max-width: 1440px;
  margin: 0 auto;
}

/* 上部分：标题区域（左右布局） */
.kuangke-featured-news-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 80px;
}

/* 左侧标题内容区域 */
.kuangke-featured-news-header .title-content {
  flex: 1;
  max-width: 962px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.kuangke-featured-news-header .section-title {
  font-family: var(--title-font-family);
    font-weight: 700;
    font-size: 36px;
    line-height: 36px;
    color: var(--title-text-color);
    margin: 0;
}

.kuangke-featured-news-header .section-subtitle {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.172;
  color: #333;
  margin: 0;
}

.kuangke-featured-news-header .view-more-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 20px 40px;
  background-color: transparent;
  border: 1px solid var(--color-primary);
  color: var(--color-primary);
  text-decoration: none;
  font-family: var(--font-family);
  font-weight: 600;
  font-size: 16px;
  line-height: 1.172;
  letter-spacing: 1%;
  text-transform: uppercase;
  border-radius: 60px;
  transition: all 0.3s ease;
  width: 200px;
  height: 58px;
  flex-shrink: 0;
}

.kuangke-featured-news-header .view-more-btn:hover {
  background-color: var(--color-primary);
  color: white;
  text-decoration: none;
}

/* 下部分：新闻内容区域（左右布局） */
.kuangke-news-content-wrapper {
  width: 100%;
}

.kuangke-news-content {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

/* 左侧：大新闻 */
.kuangke-main-news-card {
  background: white;
  border-radius: 20px;
  box-shadow: 0px 4px 10px 0px rgba(185, 209, 230, 0.3);
  overflow: hidden;
  width: 710px;
  height: 600px;
  display: flex;
  flex-direction: column;
  flex: 0 0 710px;
}

.kuangke-main-news-card .news-image {
  width: 100%;
  height: 360px;
  overflow: hidden;
  border-radius: 20px 20px 0 0;
}

.kuangke-main-news-card .news-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.kuangke-main-news-card .news-content {
  padding: 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.kuangke-main-news-card .news-title {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 18px;
  line-height: 1.172;
  color: var(--title-text-color);
  margin: 0;
}

.kuangke-main-news-card .news-title a {
  color: inherit;
  text-decoration: none;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.kuangke-main-news-card .news-title a:hover {
  color: var(--color-primary);
}

.kuangke-main-news-card .news-desc {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 16px;
  line-height: normal;
  -webkit-line-clamp: 2;
  color: #808080;
  margin: 0;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.kuangke-main-news-card .news-date {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 12px;
  line-height: 1.172;
  color: #808080;
  align-self: flex-start;
}

/* 右侧：三个小新闻 */
.kuangke-side-news-list {
  display: flex;
  flex-direction: column;
  gap: 34px;
}

/* 小新闻卡片样式 */
.kuangke-side-news-item {
  background: white;
  border-radius: 20px;
  box-shadow: 0px 4px 10px 0px rgba(185, 209, 230, 0.3);
  overflow: hidden;
  height: 177px;
  padding: 0 20px 0 0;
  display: flex;
  align-items: center;
}

.kuangke-side-news-item .news-image {
  width: 260px;
  height: 177px;
  flex-shrink: 0;
  overflow: hidden;
  border-radius: 20px 0 0 20px;
}

.kuangke-side-news-item .news-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.kuangke-side-news-item .news-content {
  padding: 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.kuangke-side-news-item .news-title {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 18px;
  line-height: 1.172;
  color: var(--title-text-color);
  margin: 0;
}

.kuangke-side-news-item .news-title a {
  color: inherit;
  text-decoration: none;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.kuangke-side-news-item .news-title a:hover {
  color: var(--color-primary);
}

.kuangke-side-news-item .news-desc {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 14px;
  line-height: 1.8;
  color: #808080;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.kuangke-side-news-item .news-date {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 12px;
  line-height: 1.172;
  color: #808080;
  align-self: flex-start;
}

/* 响应式设计 */
@media (max-width: 1440px) {
  .kuangke-featured-news-wrapper {
    padding: 0 20px;
  }
}

@media (max-width: 1200px) {
  .kuangke-featured-news-wrapper {
    padding: 0 20px;
  }

  .kuangke-featured-news-header .title-content {
    max-width: 100%;
  }

  .kuangke-main-news-card,
  .kuangke-side-news-list {
    flex: 1;
    width: auto;
  }

  .kuangke-main-news-card {
    height: 500px;
  }

  .kuangke-main-news-card .news-image {
    height: 300px;
  }
}

@media (max-width: 992px) {
  .kuangke-featured-news-section {
    padding: 80px 0;
  }

  .kuangke-featured-news-wrapper {
    padding: 0 20px;
  }

  .kuangke-featured-news-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 30px;
    margin-bottom: 60px;
  }

  .kuangke-featured-news-header .section-title {
    font-size: 36px;
  }

  .kuangke-news-content {
    flex-direction: column;
    gap: 40px;
  }

  .kuangke-main-news-card,
  .kuangke-side-news-list {
    width: 100%;
    max-width: 100%;
  }

  .kuangke-main-news-card {
    height: 450px;
  }

  .kuangke-main-news-card .news-image {
    height: 250px;
  }
}

@media (max-width: 768px) {
  .kuangke-featured-news-section {
    padding: 60px 0;
  }

  .kuangke-featured-news-wrapper {
    padding: 0 15px;
  }

  .kuangke-featured-news-header .section-title {
    font-size: 32px;
  }

  .kuangke-featured-news-header .section-subtitle {
    font-size: 16px;
  }

  .kuangke-featured-news-header .view-more-btn {
    display: none;
  }

  .kuangke-side-news-item {
    height: 101px;
  }

  .kuangke-side-news-item .news-image {
    width: 138px;
    height: 101px;
  }

  .kuangke-main-news-card .news-content {
    gap: 0;
  }

  .kuangke-side-news-item .news-content {
    padding: 15px;
    gap: 0;
  }

  .kuangke-side-news-item .news-title {
    font-size: 16px;
  }

  .kuangke-side-news-item .news-title a {
    -webkit-line-clamp: 1;
  }

  .kuangke-side-news-item .news-desc {
    font-size: 12px;
    margin-bottom: 10px;
  }

  .kuangke-main-news-card {
    height: 400px;
  }

  .kuangke-main-news-card .news-image {
    height: 200px;
  }

  .kuangke-main-news-card .news-title {
    font-size: 20px;
  }

  .kuangke-main-news-card .news-title a {
    -webkit-line-clamp: 2;
  }

  .kuangke-main-news-card .news-desc {
    font-size: 14px;
    margin-bottom: 10px;
  }

  .kuangke-side-news-list {
    gap: 10px;
  }

  .kuangke-news-content{
    gap: 16px;
  }
} 