.articles{
	display: flex;
    flex-direction: row;
    flex-wrap: wrap;
	justify-content: space-between;
    align-items: flex-start;
	margin:40px 0;
}
.articleRow{
	width:calc( 50% - 20px );
	margin: 0 20px 40px 0;
}
.articleRow:nth-child(2n+2){
	margin-right:0;
}
.article__link{
	display:block;
}
.article__image{
	width:100%;
	max-width:100%;
	display:block;
	height:auto;
}
.article__image:hover{
	opacity:0.6;
}
.article__content{}
.article__content h3{
	    text-align: left;
    text-transform: none;
    font-weight: 500;
}
.article__title{}
.article__description{}
.controls{}
.articleRow .btn{
	
}
.tldr{
	padding: 20px 40px;
    font-size: 18px;
    line-height: 32px;
    background-color: #eef7ff;
    margin: 20px 0;
}
.tldr strong{
	color: #3b5369;
}

.table-wrap{
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    margin: 30px 0;    
    background: #fff;
}
.table-wrap table{
	    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
    line-height: 1.5;
    text-align: left;
    min-width: 600px;
	margin:0;
}
@media screen and (max-width:650px) {
	.articleRow,
	.articleRow:nth-child(2n+2){
		width:100%;
		margin:0 auto 50px;
	}
}