.lp-news-list {
	margin-bottom: 40px;
}

.lp-news-list__items {
	list-style: none;
	margin: 0;
	padding: 0;
}

.lp-news-list__item {
	display: flex;
	flex-direction: row;
	flex-wrap: nowrap;
	gap: 20px;
	height: auto;
	justify-content: flex-start;
	padding: 24px 0px;
	border-bottom: 1px solid var(--key-color);
}

.lp-news-list__date {
	font-size: 18px;
	font-weight: 700;
	line-height: 1.5;
	text-align: left;
	width: 140px;
	max-width: 100%;
	color: var(--key-color);
}

.lp-news-list__link {
	/* font-size: 14px; */
	/* text-decoration: none; */
	/* color: #333; */
	color: #5d5d5d;
	flex: 5;
	font-family: var(--s-font-54b2327d);
	font-size: 16px;
	font-weight: 500;
	letter-spacing: 0.05em;
	line-height: 1.5;
	margin: 0px 0px 0px 0px;
	text-align: left;
}

.lp-news-list__link:hover {
	text-decoration: underline;
}

.lp-news-list__arrow {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 28px;
    height: 28px;
    margin-left: auto;
    color: #fff;
    transition: opacity 0.3s;
    border-radius: 50%;
    background: var(--key-color);
    overflow: hidden;
}

.lp-news-list__arrow:hover {
    color: #fff;
}
.lp-news-list__item__icon {
    width: 20px;
    height: 20px;
}
.lp-news-list__placeholder {
	padding: 12px;
	border: 1px dashed #ccc;
	font-size: 13px;
	color: #555;
}







@media screen and (max-width: 768px) {
	.lp-section-heading__link {
		font-size: 14px;
	}
	.lp-news-list__item {
		flex-direction: column;
		position: relative;
	}
	.lp-news-list__date {
		font-size: 12px;
	}
	.lp-news-list__link {
		font-size: 14px;
	}
	.lp-news-list__arrow {
		position: absolute;
		right: 0;
		top: 50%;
		width: 22px;
		height: 22px;
		transform: translateY(-50%);
	}
}