.rhmagazine-posts-listing {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
}

.rhmagazine-postcard {
    width: 33.333333%;
    flex: 0 0 33.33333%;
    padding-right: 15px;
    padding-left: 15px;
}

.rhmagazine-postcard .card-header img {
    border-top-right-radius: 8px;
    border-top-left-radius: 8px;
}

.rhmagazine-postcard .post-title {
    font-size: 17px;
    text-align: center;
    color: #333;
}

.card-body {
    border: 1px solid #e3e3e3;
    border-bottom-right-radius: 8px;
    border-bottom-left-radius: 8px;
    padding: 30px 30px 40px;
}

.post-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 30px;
}

.post-info span:first-child {
    color: #000;
    margin-right: 5px;
}

/* .rhmagazine-postcard {
    border-radius: 8px;
} */
  
#rhmagazine-posts-wrapper.loading {
height: 300px;
width: 100%;;
position: relative;
}

.rhmagazine-posts-listing {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    padding-top: 20px;
    padding-bottom: 20px;
}

.rhmagazine-posts-listing .rhmagazine-postcard {
    width: 33.333333%;
    flex: 0 0 33.333333%;
    padding-left: 10px;
    padding-right: 10px;
    margin-bottom: 15px;
}

/* Loader */
.lds-dual-ring {
    display: inline-block;
    width: 80px;
    height: 80px;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}
.lds-dual-ring:after {
    content: " ";
    display: block;
    width: 64px;
    height: 64px;
    margin: 8px;
    border-radius: 50%;
    border: 6px solid #fff;
    border-color: #fff transparent #fff transparent;
    animation: lds-dual-ring 1.2s linear infinite;
}
@keyframes lds-dual-ring {
    0% {
    transform: rotate(0deg);
    }
    100% {
    transform: rotate(360deg);
    }
}

.rhmagazine-loader {
    display: none;
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 9999;
    top: 0;
    left: 0;
    background: rgba(0,0,0,.6);
}

.rhmagazine-loader.show {
    display: block;
}

@media(max-width: 768px) {
	.rhmagazine-posts-listing .rhmagazine-postcard {
		width: 100%;
		flex: 0 0 100%;
		margin-bottom: 30px;
	}
}