.appstechy-blog-posts-list {
	display: grid;
	grid-column-gap: 20px !important;
	grid-row-gap: 20px !important;
}
.appstechy-blog-post-card {
	border-radius: 10px !important;
	padding: 20px 20px 20px 20px;
	box-shadow: 0px 0px 16px 6px rgba(218, 218, 218, 0.5) inset;
	background: #fff;
	display: flex;
	flex-wrap: wrap;
}
.appstechy-blog-post-image-container {
	max-width: 50%;
	flex: 0 0 50%;
	margin: 0 !important;
}
.appstechy-blog-post-image-container img {
	display: block;
	width: 100%;
	height: 250px;
	object-fit: cover;
	border-radius: 10px;
}
.appstechy-blog-post-content-container {
	max-width: 50%;
	flex: 0 0 50%;
	padding-left: 15px;
}
.appstechy-blog-post-title {
	color: #000000;
	font-family: "Montserrat", Sans-serif;
	font-size: 20px;
	font-weight: 600;
	text-transform: capitalize;
	margin: 0 0 10px;
}
.appstechy-blog-post-title a {
    color: inherit;
}
.appstechy-blog-post-meta span {
	font-family: "Lato", Sans-serif;
	font-size: 13px;
	font-weight: 600;
	line-height: 1.3em;
	color: #adadad;
}
.appstechy-blog-post-meta {
	margin: 0 0 13px;
    display: flex;
    align-items: center;
    gap: 3px;
}
.appstechy-blog-post-excerpt {
	color: #444444;
	font-family: "Lato", Sans-serif;
	font-size: 16px;
	font-weight: 400;
    line-height: 24px;
	margin: 0 0 10px;
}
.appstechy-blog-post-read-more {
	font-family: "Montserrat", Sans-serif;
	font-size: 15px;
	font-weight: 600;
	color: #0176AB;
}
.appstechy-blog-post-read-more:hover {
    color: #0176AB;
}
.elementor-pagination {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin: 50px 0 0;
}
.elementor-pagination .page-numbers {
	background: #027aae;
	padding: 7px 25px 12px;
	border-radius: 5px;
	color: #fff !important;
	fill: #fff;
	font-size: 24px;
	display: flex;
	align-items: baseline;
	line-height: 1;
	justify-content: center;
    transition: all .2s linear;
}
.elementor-pagination .page-numbers:hover {
    background: #014461;
}
.wp-block-latest-posts__list li a, 
.wp-block-categories-list li a {
	font-size: 17px;
	font-family: 'Lato';
	color: #0176AB;
	font-weight: 500;
}
.wp-block-heading {
	font-size: 20px !important;
	font-family: 'Lato';
	font-weight: 600;
	margin-bottom: 20px;
}


/* **single blog** */
.widget_search .wp-block-search__label {
	font-size: 18px;
	font-weight: 500;
	margin: 0 0 5px; 
	display: block;
}

@media all and (max-width: 767px) {
    .appstechy-blog-post-image-container {
        max-width: 100%;
        flex: 0 0 100%;
    }
    .appstechy-blog-post-content-container {
        max-width: 100%;
        flex: 0 0 100%;
        padding: 15px 0 0;
    }
    .elementor-pagination {
        margin: 40px 0;
    }
}