﻿
.News {
	display: flex;
	flex-direction: column;
	gap: 15px;
}

	.News .News-item {
		display: flex;
		flex-direction: column;
		padding: 10px;
		border-radius: 3px;
		background-color: #fff;
		border: 1px solid rgba(0,160,220,.5);
	}

		.News .News-item.News-item--important {
			border: 1px solid rgba(220,53,69,.5);
		}

			.News .News-item.News-item--important .News-item-title {
				color: #dc3545;
			}

		.News .News-item .News-item-title {
			font-size: 1.5rem;
			font-weight: bold;
			margin-bottom: .2rem;
			display: flex;
			flex-direction: column;
			color: #00a0dc;
		}

		.News .News-item .News-item-date {
			font-size: .7rem;
			color: #999;
		}

		.News .News-item .News-item-content {
			font-size: 1rem;
			color: #333;
		}
