.news-list {
    padding: 10px 0;
	row-gap: 20px;
}
.news-list__item {
    border-radius: 10px;
	border: 1px solid #C1C1C1;
	min-height: 130px;
	overflow: hidden;
	transition: all .3s;
}
.news-list__item:hover {
	border-color: var(--color-green-1);
}
.news-list__item:hover .news-list-item__title{
	color: var(--color-green-1);
}
.news-list__item:hover .news-list-item__image{
	border-color: var(--color-green-1);
}
.news-list-item__image {
	border-right: 2px solid var(--color-blue);
	transition: all .3s;
}
.news-list-item__image > img {
    display: block;
	height: 100%;
	object-fit: cover;
	width: 210px;
}
.news-list-item__content {
	box-sizing: border-box;
	padding: 20px 25px;
	row-gap: 20px;
	width: 100%;
}
.news-list-item__title {
	color: var(--color-green-2);
	font-size: 1.125rem;
	font-weight: 700;
	line-height: 1.5rem;
	text-transform: uppercase;
	transition: all .3s;
}
.news-list-item__announcement {
	color: var(--color-gray-2);
	line-height: 1.375rem;
	margin-top: 10px;
}
.news-list-item__info {
	color: #929292;
    font-size: .875rem;
}
.news-list-empty-row {
    text-transform: uppercase;
    text-align: center;
    color: #CCC;
    font-size: 1rem;
}

.news-item-page__content {
    margin-bottom: 20px;
}
.news-item-page__image {
	border-radius: 15px;
	box-shadow: 0px 0px 11px 0px rgba(129, 129, 129, 0.25);
	height: 400px;
	overflow: hidden;
}
.news-item-page__image > img {
	display: block;
	height: 100%;
	object-fit: cover;
	width: 100%;
}
.news-item-page__info {
    margin-bottom: 30px;
    font-size: 14px;
    color: #929292;
}
.news-item-page__backlink {
    color: #4a4a4a;
}
.news-item-page__see-also {
    padding: 30px 0;
}
.news-item-page__see-also > a {
    display: block;
    font-size: .875rem;
    line-height: 1.3;
    margin: 5px 0;
    padding: 5px 0;
}

.news-widget {
	column-gap: 20px;
    margin-top: 30px;
}
.news-widget__item {
	background-color: var(--color-white);
	border-radius: 10px;
	overflow: hidden;
	transition: all .3s;
	width: 360px;
}
.news-widget-item__container {
	border-top: 4px solid var(--color-blue);
	padding: 20px 20px 15px;
	row-gap: 20px;
	transition: all .3s;
}
.news-widget-item__title {
	color: var(--color-green-2);
    display: block;
	font-size: 1.125rem;
	font-weight: 700;
	line-height: 1.5rem;
    height: 3rem;
	overflow: hidden;
    text-decoration: none;
	text-transform: uppercase;
	transition: all .3s;
}
.news-widget .news-item-title:hover {
    text-decoration: none;
}
.news-widget-item__image {
    display: block;
}
.news-widget-item__image > img {
    display: block;
	height: 224px;
	object-fit: cover;
	width: 100%;
}
.news-widget__item:hover .news-widget-item__container {
	border-color: var(--color-green-1);
}
.news-widget__item:hover {
	outline: 1px solid var(--color-green-1);
}
.news-widget__item:hover .news-widget-item__title {
	color: var(--color-green-1);
}

@media (max-width: 850px) {

	.news-item-page__image {
		height: 300px;
	}

	.news-widget {
		flex-direction: column;
		row-gap: 15px;
	}
	.news-widget__item {
		display: flex;
		flex-direction: row;
		width: 100%;
	}
	.news-widget-item__image {
		flex-shrink: 0;
	}
	.news-widget-item__image > img {
		height: 130px;
		width: 220px;
	}
	.news-widget-item__container {
		border-left: 4px solid var(--color-blue);
		border-top: none;
		width: 100%;
	}
}

@media (max-width: 575px) {

	.news-list {
		row-gap: 15px;
	}
	.news-list__item {
		flex-direction: column;
	}
	.news-list-item__image {
		border-bottom: 2px solid var(--color-blue);
		border-right: none;
	}
	.news-list-item__image > img {
		height: 188px;
		width: 100%;
	}
	.news-list-item__content {
		padding: 15px;
	}

	.news-item-page__image {
		height: 212px;
	}

	.news-widget__item {
		flex-direction: column;
		width: 100%;
	}
	.news-widget-item__image {
		flex-shrink: 0;
	}
	.news-widget-item__image > img {
		height: 224px;
		width: 100%;
	}
	.news-widget-item__container {
		border-left: none;
		border-top: 4px solid var(--color-blue);
		box-sizing: border-box;
		padding: 15px;
	}
}