 h3,
 h4,
 h5,
 h6 {
     color: var(--color-dark);
     margin: 0px;
     font-weight: 500;
 }

 .blog-details-title {
     font-size: 34px;
     color: var(--color-dark);
     margin-bottom: 10px;
 }

 .blog-card-modern {
     background: #fff;
     border-radius: 16px;
     padding: 20px;
     gap: 20px;
     display: flex;
     align-items: flex-start;
     box-shadow: 0 6px 22px rgba(0, 0, 0, 0.08);
     transition: 0.3s ease;
     margin-bottom: 28px;
     position: relative;
 }

 .blog-card-modern {
     display: flex;
     align-items: stretch;
     /* important */
 }


 .blog-card-modern:hover {
     transform: translateY(-3px);
     box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
 }

 /* .blog-imgcard-wrap{

        } */
 /* Image */
 .blog-img-wrap {
     width: 200px;
     /* height: 100%; */
     /* same height as content */
     min-height: 160px;
     /* optional minimum */
     border-radius: 14px;
     overflow: hidden;
     flex-shrink: 0;
     position: relative;
 }


 .blog-modern-img {
     width: 100%;
     height: 100%;
     object-fit: cover;
 }

 .blog-modern-content {
     flex: 1;
     display: flex;
     flex-direction: column;
     justify-content: space-between;
 }

 .blog-card-down {
     margin-top: auto;
     display: flex;
     justify-content: space-between;
     align-items: center;
 }

 .blog-author-info {
     font-size: 14px;
     color: var(--theme-color);
     display: flex;
     align-items: center;
     gap: 6px;
 }

 /* Title */
 .blog-modern-title {
     font-size: 20px;
     font-weight: 700;
     color: #1d1d1d;
     margin-bottom: 10px;

     /* two-line clamp */
     display: -webkit-box;
     -webkit-line-clamp: 2;
     -webkit-box-orient: vertical;
     overflow: hidden;
 }

 .blog-modern-title a{
     font-size: 20px;
     font-weight: 700;
     color: #1d1d1d;
     margin-bottom: 10px;

     /* two-line clamp */
     display: inline-block;
     -webkit-line-clamp: 2;
     -webkit-box-orient: vertical;
     overflow: hidden;
 }

 /* Smaller paragraph */
 .blog-modern-desc {
     color: #555;
     font-size: 15px;
     line-height: 1.55;
     margin-bottom: 12px;

     /* optional line clamp */
     display: -webkit-box;
     -webkit-line-clamp: 2;
     -webkit-box-orient: vertical;
     overflow: hidden;
 }

 /* Author + Date */
 /* .blog-author-info {
            font-size: 14px;
            color: #777;
            margin-bottom: 14px;
            flex-direction: column;
        } */

 /* Read More Button */
 .blog-readmore-btn {
     font-size: 15px;
     font-weight: 600;
     background-color: var(--color-dark);
     color: #fff;
     text-decoration: none;
     padding: 5px 10px;
     display: inline-block;
     transition: 0.2s ease;
 }

 .blog-readmore-btn:hover {
     background-color: var(--theme-color);
     color: #fff;
 }

 .blog-postdate {
     width: 100%;
     text-align: center;
     position: absolute;
     bottom: 0px;
     left: 0px;
     z-index: 99;
     background: var(--theme-color);
     color: #fff;
 }

 /* Responsive */
 @media (max-width: 600px) {
     .blog-card-modern {
         flex-direction: column;
         padding: 16px;
     }

     .blog-img-wrap {
         width: 100%;
         height: 200px;
     }
 }

 /* Modern Clean Pagination */
 #pagination-nav .pagination {
     gap: 8px;
 }

 #pagination-nav .page-item .page-link {
     border: none;
     padding: 8px;
     border-radius: 12px;
     background: #ffffff;
     color: #18405B;
     font-weight: 600;
     box-shadow: 0 0 0 1px #dce3ea;
     /* light border look */
     transition: all 0.25s ease;
     text-align: center;
     align-items: center;
     align-content: center;
     width: max-content;
     height: max-content;
 }

 /* Hover effect */
 #pagination-nav .page-item .page-link:hover {
     background: var(--theme-color);
     color: #fff;
     transform: translateY(-2px);
 }

 /* Active page */
 #pagination-nav .page-item.active .page-link {
     background: var(--theme-color);
     color: #fff !important;
     box-shadow: 0 4px 12px rgba(0, 0, 0, 0.18);
     transform: translateY(-2px);
 }

 /* Disabled state (Prev, Next when inactive) */
 #pagination-nav .page-item.disabled .page-link {
     background: #f0f0f0;
     color: #b6b6b6;
     box-shadow: none;
     cursor: not-allowed;
 }

 /* Remove Bootstrap focus outline */
 #pagination-nav .page-link:focus {
     box-shadow: none;
 }



 /* Sidebar Wrapper */
 .sidebar_list {
     background: #f8f9fa !important;
     border-radius: 14px;
     padding: 20px;
     box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
     border: 1px solid #e6e6e6;
 }

 /* ----- Search Box Styling ----- */
 #search-2 .form {
     gap: 8px;
 }

 .search-input {
     border-radius: 10px !important;
     border: 1px solid #d6dbe1;
     padding: 10px 12px;
     font-size: 15px;
     transition: 0.2s ease-in-out;
 }

 .search-input:focus {
     border-color: var(--color-dark);
     box-shadow: 0 0 0 3px rgba(24, 64, 91, 0.2);
 }

 /* Search Button */
 .search-btn {
     background: var(--color-dark);
     color: #fff;
     border-radius: 10px;
     padding: 0 14px;
     transition: 0.2s ease;
 }

 .search-btn:hover {
     background: var(--theme-color);
 }

 /* ----- Widget Title ----- */
 .widget-title {
     width: 100%;
     display: inline-block;
     background: var(--color-dark);
     color: #fff;
     font-size: 24px;
     font-weight: 700;
     border-radius: 8px;
     padding: 8px;
 }



 /* ----- Recent Posts List ----- */
 .recentlist {
     list-style: none;
     padding-left: 0;
     margin: 0;
 }

 .recent-item {
     margin-bottom: 12px;
     padding-bottom: 10px;
     border-bottom: 1px dashed #d5d8dd;
 }

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

 .recent-item a {
     color: #18405B;
     font-weight: 500;
     font-size: 15px;
     text-decoration: none;
     display: block;
     transition: 0.2s ease;
 }

 .recent-item a:hover {
     color: var(--theme-color);
     padding-left: 4px;
 }

 .social-share-link a {
     width: 35px;
     height: 35px;
     line-height: 32px;
     border: 2px solid var(--theme-color);
     color: var(--theme-color);
     text-align: center;
     margin-right: 5px;
     border-radius: 50px;
     transition: var(--transition);
 }

 .author-box {
     background: #f8f9fa;
     border-left: 4px solid var(--theme-color);
     padding: 8px 22px;
     border-radius: 12px;
     display: flex;
     justify-content: space-between;
     align-items: center;
     gap: 15px;
     flex-wrap: wrap;
 }

 .author-info .label {
     font-weight: 700;
     color: var(--theme-color);
     margin-right: 6px;
 }

 .author-info .name {
     font-weight: 600;
     color: #333;
 }

 .author-social {
     display: flex;
     align-items: center;
     gap: 14px;
     margin: 0;
     padding: 0;
     list-style: none;
 }

 .author-social li {
     display: flex;
     align-items: center;
 }

 .author-social a {
     width: 36px;
     height: 36px;
     background: #ffffff;
     border-radius: 50%;
     display: flex;
     justify-content: center;
     align-items: center;
     color: var(--theme-color);
     border: 1px solid #ddd;
     transition: 0.25s ease;
     font-size: 15px;
 }

 .author-social a:hover {
     background: var(--theme-color);
     color: #fff;
     border-color: var(--theme-color);
     transform: translateY(-3px);
     box-shadow: 0 4px 14px rgba(0, 0, 0, 0.15);
 }

 .author-social .share-label {
     color: #888;
     margin-right: 6px;
 }

 @media (max-width: 576px) {
     .author-box {
         flex-direction: column;
         align-items: flex-start;
         padding: 16px;
     }

     .author-social {
         gap: 10px;
     }
 }

 .blog-card-details ul {
    /* list-style: square; */
    padding-left: 20px;
 }

 .blog-card-details ul li {
    list-style: square;
    /* padding-left: 20px; */
 }