.news-item-card-container {
	max-width: 1200px;
	margin: 40px auto;
	padding: 0 15px;
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
	gap: 20px;
}
.carousel_news_list
{
	  display: flex;          /* 启用 flex 布局 */
  flex-wrap: wrap;        /* 允许换行 */
  justify-content: space-between; /* 两端对齐 */
}
.news-item-card {
	border-radius: 8px;
	overflow: hidden;
	transform: translateY(30px);
	transition: all 0.6s ease;
	  width: 100%;           
  display: flex;

  margin-bottom: 40px;
  justify-content: space-between;
  align-items: stretch;

}



.news-item-card.visible {
	opacity: 1;
	transform: translateY(0);
}

.news-item-card img {
	width:30%;
	height: 200px;
	object-fit: cover;
	border-radius: 0.25em;
}

.news-item-card .content {
	padding: 15px;
    width: calc(70% - 30px);
    border-bottom: 1px solid #eee;
}

.news-item-card .content h3 {
	font-size: 18px;
	margin: 0 0 10px;
}

.news-item-card .content p {
	font-size: 14px;
	color: #666;
}

.news-item-card .content {
	padding: 15px;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}

.news-item-card .content .date {

	margin: 0 0 0.5em;
}
.news-item-card .content .date .day
{
    font-size: 1.25em;
    color: #000;
}
.news-item-card .content .date .yearmonth
{
    font-size: 0.8em;
    color: #666;
}

.news-item-card .content h3 {
	font-size: 1em;
	height: 2.8em;
      /* 2 行高度 */
	margin: 0 0 10px;
	font-weight: 600;
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 2;
      /* Limit to two lines */
	-webkit-box-orient: vertical;
}

.news-item-card .content .description {
	font-size: 0.6em;
	color: #666;
	margin: 0 0 10px;
	height: 2.8em;
      /* 2 行高度 */
	line-height: 1.5;
      /* Ensure two lines for the description */
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 2;
      /* Limit to two lines */
	-webkit-box-orient: vertical;
}

.news-item-card .content .description a{
    color: #666;
}

.news-item-card .content .view-details {
	font-size: 12px;
	color:#52b03f;
	text-decoration: none;
	margin-top: auto;
	padding-top: 1em;
    
}

  


