/* 
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 Page Custom Styles */
.category-posts-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 0;
}
.posts-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}
.post-card {
    background: #fff;
    padding: 32px;
}
.post-title {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 16px;
}
.post-excerpt {
    font-size: 1.2rem;
    margin-bottom: 16px;
}
.post-date {
    color: #666;
    font-size: 1rem;
}
/* Category Banner Styles */
.category-title {
    color: #222;
    margin: 0;
    line-height: 100% !important;
}
.category-banner {
    width: 100%;
    text-align: center;
    background: linear-gradient(135deg, #E6FBEA, #7BD88F, #31A050);
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.category-banner > * {
    color: #fff !important;
}



/* Single Post Page Styles */
.single-banner {
    width: 100%;
    background: linear-gradient(135deg, #E6FBEA, #7BD88F, #31A050);
    text-align: center;
    margin-bottom: 48px;
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}
.single-title {
    font-size: 3rem;
    font-weight: bold;
    color: #fff;
    margin: 0 0 16px 0;
}
.single-date {
    color: #e0e7ef;
    font-size: 1.1rem;
    margin-bottom: 16px;
}
.single-excerpt {
    color: #f5f7fa;
    font-size: 1.3rem;
    margin-bottom: 0;
}
.single-content-wrapper {
    display: flex;
    justify-content: center;
    padding: 0 16px 64px 16px;
}
.single-content-card {
    background: #fff;
    border-radius: 10px;
    max-width: 1260px;
    width: 100%;
    padding: 48px 40px;
    font-size: 1.2rem;
    color: #222;
}
@media (max-width: 768px) {
  .posts-grid {
    grid-template-columns: 1fr !important;
  }
.single-title {
    	font-size: 2rem;
	}
.single-date {
    margin: 0;
}
	.two-col-post-title {
		grid-template-columns: 1fr !important;
		display: grid;
	}
	.two-col-post-excerpt {
		margin: 0;
	}
}