#ajax-show-results{
	display: grid;
	grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}
@media (max-width: 520px) {
	#ajax-show-results{
		display: grid;
		grid-template-columns: repeat(1, 1fr);
    	gap: 10px;
	}
}

.show-post-card {
    border: 0;
    border-top: 10px solid #00DCAB;
    margin-top: 50px;
    box-shadow: 0 2px 31px #E9E9E9;
	position: relative;
    display: flex;
    flex-direction: column;
    min-width: 0;
    word-wrap: break-word;
    background-color: #fff;
    background-clip: border-box;
}


.show-post-card-img-top {
    max-height: 180px;
    border-radius: 0;
    width: 92%;
    margin: 0 auto;
    position: absolute;
    top: -40px;
    right: 0;
    left: 0;
    clear: both;
    min-height: 150px;
}

.show-post-card-content {
	margin-top: 140px;
    margin-bottom: 50px;
	flex: 1 1 auto;
    padding: 1.25rem;
}

.show-post-card-title {
	 color: #00DCAB;
    font-size: 2rem;
    margin: 0 0 10px;
	margin-bottom: 0.75rem;
	font-weight: 700;
}

.show-post-card-text {
    color: #919191;
    font-size: 14px;
    text-align: justify;
}

.show-post-card-date {
    padding: 0;
    position: absolute;
    bottom: 8px;
    left: 20px;
}
.show-post-card-date span {
    padding: 5px 20px;
    background-color: #00DCAB;
    color: #FFFFFF;
}

#ajax-pagination{
	flex: 0 0 100%;
    max-width: 100%;
	display: flex;
    padding-left: 0;
    list-style: none;
    border-radius: 0.25rem;
	justify-content: center;
	padding-top:20px;
}
.ajax-page-btn {
    position: relative;
    padding: 0.1rem 0.75rem;
    margin-left: -1px;
    line-height: 1.25;
    color: #344555;
    background-color: #fff;
    border: 1px solid #dee2e6;
	padding: 10px;
	margin:5px;
}

.ajax-page-btn:hover {
    background-color: #0056b3;
}

.ajax-page-btn.disabled {
    background-color: #cccccc;
    cursor: not-allowed;
}

.ajax-page-btn.active {
    color: #FFFFFF;
    background-color: #344555;
    border: solid 1px #344555;
}

.ajax-page-btn.previous,
.ajax-page-btn.next {
    font-size: 1rem;
}

.ajax-page-btn span {
    display: inline-block;
    padding: 0 5px;
}