
/*News*/
.news-section {
	padding: 110px 0;
	background: #fff;
}

.news-title {
	text-align: center;
	margin-bottom: 70px;
}

.news-list {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 22px;
}

.news-card {
	display: block;
	width: 100%;
	max-width: 960px;
	padding: 30px 34px;
	text-decoration: none;
	background: transparent;
	border: 1px solid rgba(4, 57, 94, .12);
	border-radius: 18px;
	-webkit-transition: all .35s ease;
	transition: all .35s ease;
}

.news-card .cm-date {
	margin-bottom: 12px;
}

.news-card .cm-link-lg {
	display: block;
	margin-bottom: 14px;
}

.news-excerpt {
	color: #5f7384;
	line-height: 1.7;
}

.news-card:hover {
	background: #fff;
	border-color: rgba(4, 57, 94, .18);
	box-shadow: 0 18px 40px rgba(4, 57, 94, .08);
	-webkit-transform: translateY(-4px);
	-ms-transform: translateY(-4px);
	transform: translateY(-4px);
}

.news-card:hover .cm-link-lg {
	color: #3c81c9;
}

@media(max-width:991px) {
	.news-section {
		padding: 80px 0;
	}

	.news-card {
		max-width: 100%;
		padding: 24px;
	}
}

/*news section specific*/
.news-article-section {
	padding: 110px 0;
}

.news-article-title {
	text-align: left;
	margin-bottom: 70px;
}

.news-article-back {
	margin-top: 40px;
}

.archive-container {
    margin-top: 50px;
    background: #fff;
    border: 1px solid #d9d9d9;
    border-radius: 8px;
    overflow: hidden;
    transition: all .25s ease;
}

.archive-container:hover {
    border-color: #c2c2c2;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.archive-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
	padding: 24px 30px;
    cursor: pointer;

    font-family: 'Archivo', sans-serif;	
	font-size: 32px;
    font-weight: bold;
    color: #04395e;

    border-radius: 8px;
    transition: all .25s ease;
}

.archive-header span {
    font-size: 2.2rem;
    font-weight: 600;
    color: #003366;
}

.archive-arrow {
    font-size: 22px;
    color: #04395e;
    transition: transform .25s ease;
}

.archive-container.open .archive-arrow {
    transform: rotate(180deg);
}

.archive-content {
    display: none;
    padding: 24px;
}

.archive-container.open .archive-content {
    border-top: 1px solid #e6e6e6;
}

.archive-container.open .archive-header {
    border-radius: 8px 8px 0 0;
}