/* 
Theme Name: Hello Elementor Child
Theme URI:
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 */

p{
  color:#000;
}
 
.main-heading-one h2 {
	font-family: "Roboto", Sans-serif !important;
    font-size: 28px !important;
    font-weight: 600 !important;
    color: #000000 !important;
}
section#comments {
    display: none;
}

.single-post main#content {
    max-width: 100% !important;
}

.single-post .page-content {
    padding: 5% 8%;
}

.page-content {
	display: flex;
	gap: 40px;
}

.left-side-content {
	flex: 0 0 70%;
}

.right-side-content {
	flex: 0 0 30%;
}

/* Sticky sidebar */
.sticky-sidebar {
	position: sticky;
	top: 100px; /* adjust for header height */
}

/* Sidebar box */
.recent-post {
	background: #ffffff;
	padding: 25px;
	border-radius: 12px;
	box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.sidebar-title {
	font-size: 22px;
	margin-bottom: 20px;
	border-bottom: 2px solid #f1f1f1;
	padding-bottom: 10px;
}

/* Recent post item */
.recent-post-item {
	margin-bottom: 18px;
}

.recent-post-item a {
	display: flex;
	gap: 12px;
	text-decoration: none;
	color: #222;
}

.recent-thumb img {
	width: 70px;
	height: 70px;
	object-fit: cover;
	border-radius: 8px;
}

.recent-content h4 {
	font-size: 15px;
	line-height: 1.4;
	margin: 0 0 6px;
}

.recent-date {
	font-size: 12px;
	color: #777;
}

/* Hover effect */
.recent-post-item a:hover h4 {
	color: #A50808; /* brand accent */
}

/* Responsive */
@media (max-width: 991px) {
	.page-content {
		flex-direction: column;
	}

	.sticky-sidebar {
		position: relative;
		top: 0;
	}
}


