/*
	Theme Name: Reerso
	Description: Reerso Theme
	Version: 1.0.0
	Author: Medialine
*/
.flex {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
}

.wrap {
	-ms-flex-wrap: wrap;
	    flex-wrap: wrap;
}

.column {
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	    -ms-flex-direction: column;
	        flex-direction: column;
}

.center {
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
}

.j-end {
	-webkit-box-pack: end;
	    -ms-flex-pack: end;
	        justify-content: flex-end;
}

.end {
	-webkit-box-align: end;
	    -ms-flex-align: end;
	        align-items: flex-end;
}

.baseline {
	-webkit-box-align: baseline;
	    -ms-flex-align: baseline;
	        align-items: baseline;
}

.j-center {
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
}

.between {
	-webkit-box-pack: justify;
	    -ms-flex-pack: justify;
	        justify-content: space-between;
}

.flex-row{
	margin: 0 -10px;
}

.blogItem{
	width: 100%;
	padding: 0 10px;
	margin-bottom: 20px;
}

.post-table{
	border: 1px solid rgba(0, 0, 0, 0.7);
}

.post-info{
	padding: 20px 10px;
}

.post-info .entry-meta{
	display: block;
	margin: 10px 0;
}

.post-info h2 a{
	color: var(--rr-accent-text-color);
	text-decoration: none;
}

.post-info p,
.post-info .date{
	font-weight: 500;
}

.blogItem-link{
    background-color: var(--rr-accent-color);
    border-radius: var(--rr-border-radius);
    color: var(--rr-button-text-color);
    text-decoration: none;
    padding: 5px 15px;
    display: inline-block;
    margin-top: 10px;
	-webkit-transition: var(--rr-transition);
    transition: var(--rr-transition);
}

.blogItem-link:hover{
	background-color: var(--rr-second-bg-color);
    color: var(--rr-accent-text-color);
}

.single-post{
	padding-bottom: 20px;
}

.single-post h1 a{
	color: #000;
	font-size: 32px;
	text-decoration: none;
}

.single-post .date{
	display: block;
	margin-bottom: 10px;
}

@media(min-width:768px){
	.blogItem{
		width: 50%;
	}
}

@media(min-width: 960px){
	.blogItem{
		width: 25%;
	}
}