/* 
Theme Name: Hello Elementor Child
Theme URI: https://github.com/elementor/hello-theme-child/
Description: Hello Elementor Child is a child theme of Hello Elementor, created by Elementor team
Author: Elementor Team
Author URI: https://elementor.com/
Template: hello-elementor
Version: 2.0.0
Text Domain: hello-elementor-child
License: GNU General Public License v3 or later.
License URI: https://www.gnu.org/licenses/gpl-3.0.html
Tags: flexible-header, custom-colors, custom-menu, custom-logo, editor-style, featured-images, rtl-language-support, threaded-comments, translation-ready
*/

/* Add your custom styles here */


/* CATEGORY SLIDER */

.category-tabs-wrapper{
	overflow-x:auto;
	padding-bottom:60px;
}
.category-tabs{
	display:flex;
	gap:10px;
	min-width:max-content;
}
.cat-btn{
	padding:8px 20px;
	border-radius:30px;
	border:1px solid #ddd;
	background:#fff;
	cursor:pointer;
	white-space:nowrap;
	transition:.3s;
	color: hsl(210.9, 14.3%, 45.3%);
}
.cat-btn.active,
.cat-btn:hover{
	background:#e0ad2f;
	color:#000;
	border-color:#e0ad2f;
}

/* GRID */
.blog-post-grid{
	display:grid;
	grid-template-columns:repeat(3,1fr);
	gap:25px;
}
@media(max-width:768px){
	.blog-post-grid{
		grid-template-columns:1fr;

	}
}

/* CARD */

.post-card{
	display:block;
	background:#fff;
	border-radius:12px;
	overflow:hidden;
	text-decoration:none;
	color:#000;
	transition:.3s;
}

.post-card:hover{
	transform:translateY(-5px);
	box-shadow:0 10px 30px rgba(0,0,0,0.1);
}

/* IMAGE */
.post-image{
	position:relative;
	overflow:hidden;

}
.post-image img{
	width:100%;
	transition:.4s;
}
.post-card:hover img{
	transform:scale(1.1);
}
.post-category{
	position:absolute;
	top:10px;
	left:10px;
	background:#fff;
	padding:4px 10px;
	font-size:12px;
	border-radius:20px;
}

/* CONTENT */
.post-content{
	padding:15px;
	padding: 15px;
	display: flex;
	flex-wrap: wrap;
}

.post-meta{
	font-size:13px;
	color:#777;
	order: 3;
}

.post-title{
	font-size:18px;
	margin-bottom:10px;
	transition:.3s;
}

.post-card:hover .post-title{
	color:#e0ad2f;
}
.post-desc{
	font-size: 14px;
	color: #555;
	border-bottom: 1px solid #ddd;
	padding-bottom: 15px
}

/* PAGINATION */
.blog-pagination{
	margin-top:30px;
	text-align:center;
}
.blog-pagination a{
	padding:8px 14px;
	border:1px solid #ddd;
	margin:3px;
	display:inline-block;
	border-radius:6px;
}
.blog-pagination .current{
	background:#e0ad2f;
	padding:8px 14px;
	border-radius:6px;

}





