p,
ul,
li {
    font-size: 16px;
    line-height: 20px;
    color: #333;
}

.blog-card {
    border-radius: 15px;
    overflow: hidden;
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
    background: #fff;
    margin: 25px 0;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    padding: 10px;
}

.blog-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 25px rgba(0, 0, 0, 0.2);
}

/* Blog Image */
.blog-image-container {
    width: 100%;
    height: 250px;
    overflow: hidden;
    border-bottom: 3px solid #f7941e;
}

.blog-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease-in-out;
}

.blog-card:hover .blog-image {
    transform: scale(1.25);
}

/* Date & Author Meta */
.blog-meta {
    display: flex;
    justify-content: space-between;
    font-size: 14px;
    font-weight: bold;
    padding: 12px 20px;
    background: #fff;
    border-bottom: 2px solid #f5f5f5;
}

/* Blog Title */
.blog-title {
    font-size: 24px;
    font-weight: bold;
    padding: 15px 20px;
}

.blog-title a {
    text-decoration: none;
    color: #333;
    transition: color 0.3s ease-in-out;
}

.blog-title a:hover {
    color: #f7941e;
}

.blog-title span{
    font-size: 20px;
}
.comment_title{
    font-size: 24px;
    font-weight: bold;
    
}
/* Blog Description */
.blog-description {
    font-size: 16px;
    line-height: 1.8;
    padding: 0 20px 15px;
    color: #555;
}

/* Read More Button */
.read-more-btn {
    display: block;
    background: linear-gradient(to right, #f7941e, #d97706);
    color: #fff;
    font-weight: bold;
    padding: 14px 0;
    text-align: center;
    text-decoration: none;
    transition: background 0.3s ease-in-out;
    border-radius: 0 0 15px 15px;
}

.read-more-btn:hover {
    background: linear-gradient(to right, #b86504, #924b03);
}

/* Pagination */
.pagination .page-item .page-link {
    color: #f7941e;
    border-radius: 6px;
    margin: 3px;
    border: 1px solid #f7941e;
}

.pagination .page-item.active .page-link {
    background-color: #f7941e;
    color: #fff;
    border-color: #f7941e;
}

/* Sidebar Styling */
.sidebar_list {
    border-radius: 15px;
    padding: 20px;
    box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.1);
    background: #fdfdfd;
}

/* Search Input & Button */
.search-input {
    width: 80%;
    padding: 12px;
    border: 2px solid #f7941e;
    border-radius: 8px 0 0 8px;
}

.search-btn {
    width: 20%;
    background: #f7941e;
    color: white;
    border: 2px solid #f7941e;
    padding: 6px 15px;
    border-radius: 0 8px 8px 0;
    transition: background 0.3s ease-in-out;
}

.search-btn:hover {
    background: #d97706;
}

/* Widget Title */
.widget-title {
    font-size: 22px;
    font-weight: bold;
    text-transform: uppercase;
    color: #f7941e;
    border-bottom: 2px solid #f7941e;
    padding-bottom: 5px;
    margin-bottom: 15px;
}

/* Recent Posts */
.recentlist {
    padding-left: 10px;
}

.recent-item {
    padding: 12px;
    border-bottom: 1px solid #eee;
    transition: background 0.3s ease-in-out;
    border-radius: 8px;
    list-style: disc;
}

.recent-item:last-child {
    border-bottom: none;
}

.recent-item a {
    text-decoration: none;
    color: #333;
    font-weight: bold;
    display: block;
    transition: color 0.3s ease-in-out;
}

.recent-item:hover {
    background: #ffeed8;
}

.recent-item a:hover {
    color: #f7941e;
}

#pagination-nav ul {
    list-style: none !important;
}

.author-box {
    background: #e9f5ff;
    border-left: 5px solid #f7941e;
    padding: 15px;
    font-size: 16px;
    border-radius: 8px;
    font-weight: 500;
    margin-top: 25px;
    display: flex;
    justify-content: space-between;
}
.blog-social{
    display: flex;
    list-style: none;
    gap: 10px;
}
.blog-content{
    margin-top: 20px;
}
.blog-content p {
    margin-bottom: 16px;
    text-align: justify;
}
.blog-content ul, .blog-content ol {
    padding-left: 20px;
    margin-top: 10px;
}
.blog-content ul li {
    list-style: disc;
    margin-bottom: 8px;
}
.blog-content ol li {

    margin-bottom: 8px;
}

#content-area ul{
    list-style: disc;
    /* padding-left: 20px; */
}
.breadcrumb-area .breadcrumb-content .page-outlined-text h1{
    font-size: 35px;
    line-height: 2;
   
}
.breadcrumb-area .breadcrumb-content .page-outlined-text span{
    font-size: 35px;
    line-height: 2;
    font-weight: 900;
    text-transform: uppercase;
    color: #fff;
    margin-bottom: 10px;
    word-break: break-all;
}