.museum-news-page {
    background-color: #f5f5f5;
    padding: 50px 0;
    overflow: hidden;
}
.museum-news-page .heading {
    font-size: 35px;
    font-weight: 700;
    text-align: center;
    color: #03498d;
}
.museum-news-page .museum-news-list {
    margin-top: 50px;
}
.museum-news-page .museum-news-list .museum-article {
    margin-bottom: 30px;
    cursor: pointer;
}
.museum-news-page .museum-news-list .museum-article a {
    text-decoration: none;
    color: initial;
}
.museum-news-page .museum-news-list .museum-article .museum-article-content {
	display: flex;
	flex-direction: column;
    background-color: #f9fafc;
    overflow: hidden;
    height: 100%;
}
.museum-news-page .museum-news-list .museum-article .museum-article-content .museum-article-image {
    height: 300px;
    background-size: cover;
    background-position: center;
}
.museum-news-page .museum-news-list .museum-article .museum-article-content .museum-article-heading {
    font-weight: 700;
    font-size: 20px;
    margin: 25px 40px 20px;
    color: #0e5192;
	line-height: 1.3;
}
.museum-news-page .museum-news-list .museum-article .museum-article-content .museum-article-description {
    font-size: 14px;
    margin: 0 40px 20px;
}
.museum-news-page .museum-news-list .museum-article .museum-article-content .museum-article-details {
    display: flex;
    justify-content: space-between;
    font-size: 14px;
    margin: auto 40px 30px;
}