.entry-title .blog-title {
    display: block !important;   
}
/* === General Layout === */
.single-post-layout {
    display: flex;
    gap: 30px;
    max-width: 1200px;
    margin: 40px auto;
    padding: 0 20px;
    flex-wrap: wrap;
}

/* === Main Content Area === */
.content-area {
    flex: 3;
    min-width: 0;
}

/* === Sidebar Area === */
aside.sidebar-area {
    width: 30%;
    margin-top: 10%;
}

/* === Blog Title / Hero Title === */
.entry-header {
    margin-bottom: 30px;
    border-bottom: 2px solid #eee;
    padding-bottom: 15px;
}
.blog-title {
    font-family: 'Poppins';
    font-size: 38px;
    color: #5a5a5a;
    line-height: 1.2;
    margin: 0;
}
@media (max-width: 768px) {
.blog-title {
	font-size: 24px;
	}
}
/* === Post Thumbnail === */
.post-thumbnail {
    margin-bottom: 25px;
}
.post-thumbnail img {
    width: 100%;
    height: auto;
    border-radius: 10px;
}

/* === Social Share Buttons === */
.share-post {
    display: flex;
    gap: 24px;
}
.social-share {
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid #ddd;
	font-size: 30px;
}
.social-share strong {
    display: block;
    margin-bottom: 10px;
}
.social-share a {
    display: inline-block;
    margin-right: 12px;
    color: #0073aa;
    text-decoration: none;
    font-weight: 500;
}
.social-share a:hover {
    text-decoration: underline;
}
@media (max-width: 768px){
	.share-post{
	font-size: 18px;
	}
}
/* content full */
.entry-content {
    font-family: 'Poppins';
}

/* === recently comment list === */


.recent-comments-list {
    gap: 15px;
    list-style: none;
    padding: 0;
    margin: 0;
}

/* === Author Box === */
.author-box {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 40px;
    padding: 6px 5px;
    border-radius: 8px;
	width: 100%;
	background: #f8fbfb;
}
.author-avatar img {
    border-radius: 50%;
    width: 80px;
    height: 80px;
}
.author-info h4 {
    margin: 0 0 5px;
    font-size: 20px;
    color: #5a5a5a;
    font-family: 'Poppins';
}
.author-info p {
    margin: 0;
    font-size: 15px;
    color: #555;
}
@media (max-width: 768px) {
	.author-box{
		display: block;
	}
}
@media (max-width: 768px) {
  .author-bio p {
    display: -webkit-box;
    -webkit-line-clamp: 5; /* 5 lines tak dikhayega */
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
  }
}

/* === Related Posts === */
.related-posts {
    margin-top: 60px;
}
.related-posts h3 {
    margin-bottom: 20px;
    font-size: 22px;
    color: #222;
}
.related-posts ul {
    display: flex;
    gap: 20px;
    list-style: none;
    padding-left: 0;
}
.related-posts li {
    flex: 1 1 calc(25% - 20px);
    background: #fafafa;
    padding: 12px;
    border: 1px solid #e1e1e1;
    border-radius: 6px;
    text-align: center;
    transition: box-shadow 0.2s ease;
}
.related-posts li:hover {
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}
.related-posts img {
    width: 100%;
    height: auto;
    margin-bottom: 10px;
    border-radius: 6px;
}
.related-posts p {
    font-size: 16px;
    color: #333;
    margin: 0;
}
.more-posts-button {
    text-align: center;
    flex: 1 1 100%;
    margin-top: 20px;
}
.more-posts-button a {
    display: inline-block;
    padding: 10px 20px;
    background: #0073aa;
    color: #fff;
    border-radius: 5px;
    text-decoration: none;
}
.more-posts-button a:hover {
    background: #005a8c;
}

/* === Recent Comments === */
.widget.recent-comments {
    margin-top: 40px;
    padding: 10px 5px;
    border-radius: 15px;
}
.recent-comments h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: #5a5a5a;
    border-bottom: 2px solid #ddd;
    padding-bottom: 8px;
}
.recent-comment-item {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 6px;
    padding: 12px;
    margin-bottom: 15px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.05);
    transition: all 0.2s ease;
}
.recent-comment-item:hover {
    box-shadow: 0 3px 6px rgba(0,0,0,0.1);
    transform: translateY(-2px);
}
.recent-comment-item a {
    text-decoration: none;
    color: #333;
}
.recent-comment-item strong {
    color: #515455;
    font-size: 22px;
    margin-bottom: 5px;
    display: block;
}
.comment-snippet {
    color: #4ca6bb;
    font-size: 19px;
    margin-bottom: 6px;
    text-transform: capitalize;
}
.comment-post-title {
    font-size: 16px;
    font-style: normal;
    color: #4ca6bb;
}
		
/* reply form start*/
.comments-area {
  max-width: 100%
  margin: 40px auto;
  padding: 20px;
}

/* Title */
  .comments-title {
    font-size: 24px;
    margin-bottom: 20px;
    font-weight: 600;
    color: #5a5a5a;
    font-family: 'Poppins';
    text-align: left;
}

/* Comment List */
.comment-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

/* Single Comment */
.comment {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  margin-bottom: 30px;
  padding-bottom: 20px;
  border-bottom: 1px solid #eee;
}

/* Avatar */
.comment-author .avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  margin-right: 15px;
}

/* Comment Content */
.comment-body {
  flex: 1;
}

.comment-author {
  font-weight: bold;
  color: #0073aa;
  margin-bottom: 5px;
}

p.comment-form-url {
    display: none;
}
input#author {
    height: 33px;
    border: 1px solid #ccc;
    border-radius: 11px;
    padding: 5px;
}
input#email {
    height: 33px;
    border: 1px solid #ccc;
    border-radius: 11px;
    padding: 5px;
}
.comment-content {
  margin: 5px 0 10px 0;
  font-size: 16px;
  color: #555;
}

.comment-metadata {
  font-size: 12px;
  color: #aaa;
  margin-bottom: 10px;
}


/* Reply link */
.reply a {
  display: inline-block;
  font-size: 14px;
  color: #0073aa;
  text-decoration: none;
  background: #e0f3ff;
  padding: 5px 10px;
  border-radius: 5px;
  transition: background 0.3s;
}

.reply a:hover {
  background: #b3e5fc;
}

/* Comment Form */
#respond {
  margin-top: 40px;
}

#reply-title {
    font-size: 24px;
    margin-bottom: 20px;
    color: #5a5a5a;
    text-align: left;
    font-family: 'Poppins';
}

.comment-form-comment textarea {
  width: 100%;
  min-height: 150px;
  border-radius: 8px;
  border: 1px solid #ccc;
  font-size: 16px;
  resize: vertical;
}

.comment-form input[type="submit"] {
    margin-top: 15px;
    color: #ffffff;
    padding: 10px 25px;
    border: none;
    border-radius: 35px;
    cursor: pointer;
    transition: background 0.3s;
    background-color: #6FBFC7 !important;
}

.comment-form input[type="submit"]:hover {
  background: ##B5FFFF !important;
	color:#5a5a5a !important;
	border: 1px solid #5a5a5a;
    border-radius: 35px;
}
input#wp-comment-cookies-consent {
    cursor: pointer;
}

/* === Breadcrumb === */
.breadcrumbs {
    max-width: 1200px;
    margin: 20px auto;
    padding: 0 20px;
    font-size: 14px;
    color: #888;
}
	
/* 	recent post  */
.recent-posts-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr); /* 2 column layout */
  gap: 10px; /* Gap between items */
  padding: 0;
  list-style: none;
}

.recent-post-item {
  background: #f9f9f9; /* Light background for items */
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 8px;
  text-align: center;
  font-size: 14px;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.recent-post-item a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
}

.recent-post-item a:hover {
  color: #0073aa;
}
/* tag title property  */
.tagcloud {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 0;
  margin-top: 10px;
}

.tagcloud a {
  display: inline-block;
  background-color: #0073aa; /* Tag ka background */
  color: #ffffff; /* Text color */
  padding: 8px 14px;
  border-radius: 20px;
  font-size: 14px;
  text-decoration: none;
  transition: background-color 0.3s ease, color 0.3s ease;
  white-space: nowrap;
}

.tagcloud a:hover {
  background-color: #005177;
  color: #ffffff;
}


/* === Responsive Design === */
@media (max-width: 768px) {
    .single-post-layout {
        flex-direction: column;
    }

    aside.sidebar-area {
        width: 100%;
        margin-top: 30px;
    }

    .related-posts ul {
        flex-direction: column;
    }

    .related-posts li {
        flex: 1 1 100%;
    }
}

	
	
.post-navigation a {
    display: flex;
    align-items: center;
    padding: 12px 25px;
    background-color: #6FBFC7;
    color: #fff;
    font-weight: bold;
    text-decoration: none;
    font-size: 16px;
    border-radius: 30px;
    margin: 5px;
    transition: background 0.3s ease;
}

.post-navigation a:hover {
    background-color: #1976d2;
}

.post-navigation a.prev {
    background-color: #f44336;
}

.post-navigation a.prev:hover {
    background-color: #d32f2f;
}
input.search-field {
   width: 265px;
    height: 47px;
    border: 2px solid #ccc;
    border-radius: 15px;
}
.tagcloud a {
    font-size: 14px !important;
}
@media (max-width: 768px) {
	aside.sidebar-area{
	width: 100%;
	}
}

/* calander css  */
aside#calendar-3 {
    padding: 10px;
}

/* reply buttons */
button.reply-button {
    font-size: 18px;
    background-color: #6FBFC7;
    border: none;
    border-radius: 15px;
    padding: 5px 20px;
    color: white;
    margin-top: 10px;
}
.widget_categorie nav ul li a {
    text-decoration: none;
}

@media (max-width: 768px) {
    .related-posts ul {
        display: grid;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
    }
}
/* reply input fild menuali seppppppppp */
@media (max-width: 768px) {
    aside.sidebar-area {
        display: contents;
    }
}



@media (max-width: 768px) {
    .social-share {
        margin-top: 15px !important;
        padding-top: 15px !important;
        border-top: 1px solid #ddd !important;
        font-size: 29px !important;
    }
}
@media (max-width: 768px) {
.comment-form-author,
	.comment-form-email {
    width: 100% !important;
	}
}
.comment-form {
    display: flex;
    flex-wrap:wrap;
}

.comment-form-author,
.comment-form-email {
    order: -1 !important;
	display: flex;
    width: 48%;
    flex-direction: column;
	margin-right: 10px;
}
p.comment-form-comment {
    width: 100%;
}


.share-post
	.comment-form-author, .comment-form-email{
	order: -1 !important;
	}
}
p.comment-notes {
    order: -1 !important;
}
p.form-submit {
    margin: -7px 90px;
}
/* category style sssss */

aside#categories-6 nav ul {
    list-style: none;
    font-size: 18px;
    font-family: 'Poppins';
    color: #00BCD4;
}
