.news_list_area {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    /* flex-direction: column; */
    /* row-gap: clamp(0.625rem, -0.042rem + 1.08vw, 1.25rem); */
    /* gap: clamp(0.625rem, -0.042rem + 1.08vw, 1.25rem); */
}

/* 最新消息列表 ---------- */
.news_list_item{
    width: 100%;
    box-sizing: border-box;
    padding: 1.25rem 0;
    border-bottom: 1px dashed #ddd;
    /* border: 2px solid var(--grey_color);
    border-radius: clamp(0.313rem, -0.021rem + 0.54vw, 0.625rem);
    box-shadow: rgba(0, 0, 0, 0.1) 0px -2px 6px -1px, rgba(0, 0, 0, 0.1) 0px 20px 25px -5px; */
}

.news_list_item .news_box{
	display: flex;
	align-items: center;
	gap: clamp(0.625rem, -0.042rem + 1.08vw, 1.25rem);
}
.news_list_item .news_box,
.news_list_item .news_box:hover{
	text-decoration: none;
}

/* 列表圖片 ---------- */
.news_img{
    width: 100%;
    max-width: 12.5rem;
    aspect-ratio: 48 / 36;
    display: block;
    position: relative;
    overflow: hidden;
    border-radius: clamp(0.313rem, -0.021rem + 0.54vw, 0.625rem);
    padding-top: unset;
}
.news_img img{
	width:100%;
	height:auto;
	transition: all 0.3s ease-out;
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
	float: none;
	width: 100% !important;
	height: 100% !important;
	object-fit: cover;
	transition: all 0.3s ease-out;
}

/* 最新消息列表 ---------- */
.news_info{
	display: flex;
	flex-direction: column;
	gap: 10px;
}

/* 日期 ---------- */
.news_date{
	font-size: 1rem;
	font-weight: 600;
	color: var(--primary_color);
}

/* 列表資訊 ---------- */
.news_info .news_title {
	padding: 0;
	margin: 0;
	line-height: normal;

	font-size: clamp(1.125rem, 0.992rem + 0.22vw, 1.25rem);
	line-height: 1.5;
	color: #333;

	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
	overflow: hidden;
}


@media(max-width:420px) {
	.news_box{
		flex-direction: column;
		gap: 1.25rem;
	}

	.news_img{
		max-width: unset;
	}
}