.latest-news-section {
  padding: 80px 40px; 
  overflow: hidden;
  background-color: #141414;
  color: #ffffff;;
}
.latest-news-container {
  max-width: 1440px;
  margin: 0 auto;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
}
.news-left-col {
  width: 50%;
  position: sticky;
  top: 40px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 400px;
  padding-right: 20px;
}
.news-main-title {
 
  font-family: Inter-SemiBold, Inter;
  font-weight: 500;
  font-size: 80px;
  color: #FFFFFF;
  line-height: 1.1;
  text-align: left;
  font-style: normal;
  text-transform: none;
}
.view-all-link {
  color: inherit;
  font-size: 16px;
  text-decoration: underline;
  text-underline-offset: 4px;
  opacity: 0.8;
  transition: opacity 0.3s ease;
  width: fit-content;
  text-decoration: underline !important;
}
.view-all-link:hover {
  opacity: 1;
}

.news-right-col {
  width: 50%;
}
.blog-list-wrapper {
  display: flex;
  flex-direction: column;
  gap: 0px; 
}
.blog-item-card {
  text-decoration: none;
  color: inherit;
  display: block;
  transition: background-color 0.3s ease;
  border-radius: 8px;
}
.blog-item-card:hover {
  background-color: #212121;
}
.blog-item-inner {
  display: flex;
  align-items: center;
  padding: 16px;
  position: relative;
}

.blog-item-inner:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border-radius: 8px;
}

.blog-img-box {
  width: 140px;
  height: 140px;
  flex-shrink: 0;
  border-radius: 6px;
  overflow: hidden;
  background-color: #222;
}
.blog-img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.placeholder-img {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #333 0%, #222 100%);
}
.blog-info-box {
  flex-grow: 1;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.blog-date { 
  font-family: Inter-Medium, Inter;
  font-weight: 500;
  font-size: 18px;
  line-height: 22px;
  text-align: left;
  font-style: normal;
  text-transform: none;
}
.blog-title {
  font-size: 24px;
  line-height: 1;
  margin: 0;
  font-weight: 400;
  max-width: 80%;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  font-family: Inter-Medium, Inter;
}
.blog-arrow-icon {
  height: 100px;
  flex-shrink: 0;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-right: 10px;
  transition: transform 0.3s ease;
}
.blog-item-card:hover .blog-arrow-icon {
  transform: translateX(4px);
}

/* 移动端自适应方案 */
@media (max-width: 992px) {
  .latest-news-container {
    flex-direction: column;
  }
  .news-left-col {
    width: 100%;
    min-height: auto;
    position: static;
    margin-bottom: 20px;
    padding-right: 0;
  }
  .news-main-title {
    font-size: 40px;
    margin-bottom: 10px;
  }
  .news-right-col {
    width: 100%;
  }
}
@media (max-width: 576px) {
  .latest-news-section {
    padding: 40px 20px;
  }
  .blog-item-inner {
    flex-direction: row;
    align-items: flex-start;
    padding: 12px 0;
  }
  .blog-img-box {
    width: 90px;
    height: 90px;
  }
  .blog-info-box {
    padding: 0 16px;
    gap: 8px;
  }
  .blog-title {
    font-size: 16px;
  }
  .blog-arrow-icon {
    position: absolute;
    right: 0;
    bottom: 16px;
  }
}