.xindongda_featured_news_main {
  padding: 2.5rem 0;
}

.xindongda_featured_news_grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.xindongda_featured_news_image_wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 468 / 350;
  overflow: hidden;
  border-radius: .5rem;
}

.xindongda_featured_news_image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.xindongda_featured_news_tag {
  position: absolute;
  top: 1rem;
  left: 1rem;
  padding: .375rem .75rem;
  border: 2px solid rgba(57, 211, 141, 0.30);
  background: rgba(10, 10, 10, 0.90);

  color: var(--color-primary);
  font-size: 18px;
  font-weight: 400;
  line-height: 1;
}

.xindongda_featured_news_content {
  margin-top: 1.875rem;
}

.xindongda_featured_news_date {
  color: rgba(255, 255, 255, 0.40);
  font-size: var(--font-size-24);
  font-weight: 400;
  line-height: 1.5;
  margin-bottom: .5625rem;
}

.xindongda_featured_news_title {
  color: #FFF;
  font-size: var(--font-size-22);
  font-weight: 600;
  line-height: 1.81818;
  margin-bottom: .875rem;

  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  overflow: hidden;
  text-overflow: ellipsis;
  height: 3.65em;
}

.xindongda_featured_news_desc {
  color: rgba(255, 255, 255, 0.60);
  font-size: var(--font-size-18);
  font-weight: 400;
  line-height: 1.25;
  margin-bottom: 1.875rem;

  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  overflow: hidden;
  text-overflow: ellipsis;
  height: 3.75em;
}

.xindongda_featured_news_link {
  color: #39D38D;
  display: flex;
  align-items: center;
  gap: .5rem;
  transition: all 0.3s ease;
}

.xindongda_featured_news_link span {
  font-size: var(--font-size-28);
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 1.5px;
}

.xindongda_featured_news_link svg {
  width: max(1.0625rem, 24px);
}

.xindongda_featured_news_arrow {
  flex-shrink: 0;
}

@media screen and (max-width: 992px) {
  .xindongda_featured_news_grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }

  .xindongda_featured_news_desc {
    margin-bottom: 8px;
  }
}

@media screen and (max-width: 576px) {
  .xindongda_featured_news_grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .xindongda_featured_news_content {
    margin-top: 12px;
  }

  .xindongda_featured_news_title {
    height: auto;
    margin-bottom: 8px;
  }

  .xindongda_featured_news_desc {
    height: auto;
    margin-bottom: 8px;
  }
}