/* 
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 */
/* ==================================================
   C5Desk Blog Listing
   ================================================== */

.c5-blog-page {
	width: 100%;
	padding: 50px 20px 70px;
}

.c5-blog-container {
	width: 100%;
	max-width: 1140px;
	margin: 0 auto;
}

.c5-blog-header {
	margin-bottom: 35px;
}

.c5-blog-title {
	margin: 0;
	font-size: 36px;
	line-height: 1.2;
}

/* Blog Grid */

.c5-blog-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 30px;
	align-items: stretch;
}

/* Individual Card */

.c5-blog-card {
	display: flex;
	flex-direction: column;
	min-width: 0;
	margin: 0;
	background: #f5f5f5;
	overflow: hidden;
}

/* Featured Image */

.c5-blog-image {
	display: block;
	width: 100%;
	aspect-ratio: 16 / 9;
	overflow: hidden;
}

.c5-blog-image img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

/* Card Content */

.c5-blog-card-content {
	display: flex;
	flex-direction: column;
	flex: 1;
	padding: 22px;
}

/* Post Title */

.c5-blog-card-title {
	margin: 0 0 8px;
	font-size:26px;
	line-height: 1.3;
}

.c5-blog-card-title a {
	text-decoration: none;
}

/* Date + Author */

.c5-blog-meta {
	margin-bottom: 18px;
	font-size: 13px;
	line-height: 1.5;
}

/* Excerpt */

.c5-blog-excerpt {
	margin-bottom: 20px;
	font-size: 16px;
	line-height: 1.6;
}

.c5-blog-excerpt p {
	margin: 0;font-size:17px;letter-spacing:1px;
}

/* Read More */

.c5-blog-read-more {
	display: inline-block;
	margin-top: auto;
	text-decoration: none;
	font-weight: 500;
}

/* Pagination */

.c5-blog-pagination {
	margin-top: 50px;
	text-align: center;
}

.c5-blog-pagination .nav-links {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	gap: 10px;
}

.c5-blog-pagination .page-numbers {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 42px;
	min-height: 42px;
	padding: 8px 12px;
	text-decoration: none;
}

/* Tablet */

@media (max-width: 1024px) {

	.c5-blog-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

}

/* Mobile */

@media (max-width: 767px) {

	.c5-blog-page {
		padding: 35px 15px 50px;
	}

	.c5-blog-grid {
		grid-template-columns: 1fr;
		gap: 25px;
	}

	.c5-blog-title {
		font-size: 30px;
	}

	.c5-blog-card-content {
		padding: 18px;
	}

}

/* Blog Load More */

.c5-blog-load-more-wrapper {
	display: flex;
	justify-content: center;
	margin-top: 50px;
}

.c5-load-more {
	min-width: 160px;
	padding: 14px 30px;
	border: 0;
	border-radius: 3px;
	cursor: pointer;
	font-size: 16px;
	font-weight: 600;
	line-height: 1.2;
	transition: opacity 0.2s ease, transform 0.2s ease;
}

.c5-load-more:hover {
	transform: translateY(-2px);
}

.c5-load-more:disabled {
	cursor: wait;
	opacity: 0.65;
	transform: none;
}