/*
Theme Name: Kalsindur
Theme URI: https://chitabd.com
Template: hello-elementor
Author: Fazle Bari
Author URI: https://chitabd.com
Description: Kalsindur is a lightweight and minimalist WordPress theme that was built specifically to work seamlessly with the Elementor site builder plugin. The theme is free, open-source, and designed for users who want a flexible, easy-to-use, and customizable website. The theme, which is optimized for performance, provides a solid foundation for users to build their own unique designs using the Elementor drag-and-drop site builder. Its simplicity and flexibility make it a great choice for both beginners and experienced Web Creators.
Tags: accessibility-ready,flexible-header,custom-colors,custom-menu,custom-logo,featured-images,rtl-language-support,threaded-comments,translation-ready
Version: 1.0.0
Text Domain: kalsindur
Updated: 2025-08-04 04:00:00
*/

/* Sidebar Layout Styles */
.site-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.site-content-wrapper {
    display: flex;
    gap: 40px;
    margin-top: 40px;
}

/* Sidebar Styles - Right Side */
.main-sidebar {
    flex: 0 0 300px;
    order: 2;
}

.main-sidebar .widget {
    background: #f8f9fa;
    border-radius: 0;
    border: 1px solid;
    margin-bottom: 25px;
}

.main-sidebar .widget-title {
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid #007cba;
    color: #333;
    font-size: 18px;
    font-weight: 600;
}

/* Main Content Area - Left Side */
.site-main {
    flex: 1;
    order: 1;
}

/* Responsive Design */
@media (max-width: 768px) {
    .site-content-wrapper {
        flex-direction: column;
        gap: 20px;
    }
    
    .main-sidebar {
        flex: none;
        order: 2;
    }
    
    .site-main {
        order: 1;
    }
}

/* Content Styles */
.archive-content,
.single-content,
.search-content,
.error-404-content {
    background: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.page-header {
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
}

.entry-title {
    color: #333;
    margin: 0;
}

.page-content {
    line-height: 1.6;
}

/* Post Styles */
.post {
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 1px solid #eee;
}

.post:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.post .entry-title {
    font-size: 24px;
    margin-bottom: 15px;
}

.post .entry-title a {
    color: #333;
    text-decoration: none;
    transition: color 0.3s ease;
}

.post .entry-title a:hover {
    color: #007cba;
}

/* Pagination */
.pagination {
    display: flex;
    justify-content: space-between;
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

.nav-previous,
.nav-next {
    flex: 1;
}

.nav-next {
    text-align: right;
}

.pagination a {
    color: #007cba;
    text-decoration: none;
    font-weight: 500;
}

.pagination a:hover {
    text-decoration: underline;
}

/* Widget Styles */
.widget ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.widget ul li {
    padding: 8px 0;
    border-bottom: 1px solid #eee;
}

.widget ul li:last-child {
    border-bottom: none;
}

.widget ul li a {
    color: #555;
    text-decoration: none;
    transition: color 0.3s ease;
}

.widget ul li a:hover {
    color: #007cba;
}

/* Error 404 Widgets */
.error-404-widgets {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-top: 30px;
}

@media (max-width: 768px) {
    .error-404-widgets {
        grid-template-columns: 1fr;
    }
}

/* Custom Kalsindur Widget Styles */
.kalsindur-custom-widget {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* .kalsindur-custom-widget:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
} */

/* Widget Title with Gradient Background */
.kalsindur-widget-title {
    background: linear-gradient(135deg, #09a769, #046740);
    color: #fff;
    margin: 0;
    padding: 10px;
    font-size: 20px;
    font-weight: 600;
    text-align: center;
    text-shadow: 0 1px 2px rgba(0,0,0,0.2);
    position: relative;
}

.kalsindur-widget-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #fff, transparent, #fff);
    opacity: 0.3;
}

/* Widget Content */
.kalsindur-widget-content {
    padding: 25px;
}

/* Widget Image */
.kalsindur-widget-image {
    margin-bottom: 20px;
    text-align: center;
}

.kalsindur-widget-image img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

/* Widget Text */
.kalsindur-widget-text {
    line-height: 1.6;
    color: #555;
}

.kalsindur-widget-text p {
    margin: 0 0 15px 0;
}

.kalsindur-widget-text p:last-child {
    margin-bottom: 0;
}

/* Widget Button */
.kalsindur-widget-button {
    margin-bottom: 20px;
    text-align: center;
}

.kalsindur-btn {
    display: inline-block;
    background: linear-gradient(135deg, #09a769, #046740);
    color: #fff;
    padding: 12px 30px;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(9, 167, 105, 0.3);
    border: none;
    cursor: pointer;
}

.kalsindur-btn:hover {
    background: linear-gradient(135deg, #046740, #09a769);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(9, 167, 105, 0.4);
    color: #fff;
    text-decoration: none;
}

.kalsindur-btn:active {
    transform: translateY(0);
}

/* Multiple Buttons Layout */
.kalsindur-widget-buttons {
    margin-bottom: 20px;
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: flex-start;
}

.kalsindur-btn-secondary {
    background: #008080 none repeat scroll 0 0;
    box-shadow: 0 4px 15px rgba(108, 117, 125, 0.3);
    font-size: 14px;
    padding: 10px 25px;
    width: 100%;
    text-align: center;
}

.kalsindur-btn-secondary:hover {
    background:#000;
    box-shadow: 0 6px 20px rgba(108, 117, 125, 0.4);
}

/* Widget List - Enhanced Design */
.kalsindur-widget-list {
    margin: 0;
    padding: 0;
    list-style: none;
}

.kalsindur-widget-list li {
    padding: 15px 20px;
    margin-bottom: 8px;
    position: relative;
    padding-left: 50px;
    color: #495057;
    transition: all 0.3s ease;
}

.kalsindur-widget-list li a {
    color: inherit;
    text-decoration: none;
    transition: all 0.3s ease;
    display: block;
    width: 100%;
    font-weight: 500;
    font-size: 15px;
}

.kalsindur-widget-list li:last-child {
    margin-bottom: 0;
}

.kalsindur-widget-list li::before {
    content: '\f504';
    font-family: 'dashicons';
    position: absolute;
    left: -25px;
    top: 50%;
    transform: translateY(-50%);
    color: #09a769;
    font-size: 18px;
    font-weight: normal;
    transition: all 0.3s ease;
}

/* Different icons for different link types */
.kalsindur-widget-list li[data-link-type="external"]::before {
    content: '\f504'; /* dashicons-external */
}

.kalsindur-widget-list li[data-link-type="internal"]::before {
    content: '\f319'; /* dashicons-admin-links */
}

.kalsindur-widget-list li[data-link-type="email"]::before {
    content: '\f465'; /* dashicons-email */
}

.kalsindur-widget-list li[data-link-type="phone"]::before {
    content: '\f525'; /* dashicons-phone */
}

.kalsindur-widget-list li[data-link-type="social"]::before {
    content: '\f237'; /* dashicons-share */
}

/* Social media specific icons */
.kalsindur-widget-list li[data-link-type="external"] a[href*="facebook"] ~ *::before,
.kalsindur-widget-list li[data-link-type="external"] a[href*="facebook"]::before {
    content: '\f304'; /* dashicons-facebook */
}

.kalsindur-widget-list li[data-link-type="external"] a[href*="youtube"] ~ *::before,
.kalsindur-widget-list li[data-link-type="external"] a[href*="youtube"]::before {
    content: '\f236'; /* dashicons-video-alt3 */
}

.kalsindur-widget-list li[data-link-type="external"] a[href*="twitter"] ~ *::before,
.kalsindur-widget-list li[data-link-type="external"] a[href*="twitter"]::before {
    content: '\f301'; /* dashicons-twitter */
}

.kalsindur-widget-list li[data-link-type="external"] a[href*="instagram"] ~ *::before,
.kalsindur-widget-list li[data-link-type="external"] a[href*="instagram"]::before {
    content: '\f305'; /* dashicons-instagram */
}

.kalsindur-widget-list li[data-link-type="external"] a[href*="linkedin"] ~ *::before,
.kalsindur-widget-list li[data-link-type="external"] a[href*="linkedin"]::before {
    content: '\f307'; /* dashicons-linkedin */
}

.kalsindur-widget-list li:hover {
    color: #C0392B;
    transform: translateX(5px);
}

.kalsindur-widget-list li:hover::before {
    color: #C0392B;
    transform: translateY(-50%) scale(1.1);
}

.kalsindur-widget-list li:hover a {
    color: #C0392B;
}

/* Custom HTML content styling */
.kalsindur-widget-custom {
    margin-bottom: 20px;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 8px;
    border-left: 4px solid #09a769;
}

.kalsindur-widget-custom p {
    margin: 0 0 10px 0;
}

.kalsindur-widget-custom p:last-child {
    margin-bottom: 0;
}

/* Responsive adjustments for custom widget */
@media (max-width: 768px) {
    .kalsindur-widget-title {
        font-size: 18px;
        padding: 18px;
    }
    
    .kalsindur-widget-content {
        padding: 20px;
    }
    
    .kalsindur-btn {
        padding: 10px 25px;
        font-size: 15px;
    }
    
    .kalsindur-widget-list li {
        padding: 12px 15px;
        padding-left: 45px;
        font-size: 14px;
    }
    
    .kalsindur-widget-list li::before {
        left: 12px;
        font-size: 16px;
    }
}

/* Animation for list items */
@keyframes slideInFromLeft {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.kalsindur-widget-list li {
    animation: slideInFromLeft 0.3s ease forwards;
}

.kalsindur-widget-list li:nth-child(1) { animation-delay: 0.1s; }
.kalsindur-widget-list li:nth-child(2) { animation-delay: 0.2s; }
.kalsindur-widget-list li:nth-child(3) { animation-delay: 0.3s; }
.kalsindur-widget-list li:nth-child(4) { animation-delay: 0.4s; }
.kalsindur-widget-list li:nth-child(5) { animation-delay: 0.5s; }

.kalsindur-links-widget .kalsindur-widget-content{
    padding: 10px 30px;
}
.kalsindur-links-widget .kalsindur-widget-content ul li{
    margin-left: 10px;
}
.kalsindur-links-widget .kalsindur-widget-content ul li a:hover{
    color: #C0392B;
}

/* ========================================
   NOTICE ARCHIVE & SINGLE PAGE STYLES
   ======================================== */

/* Notice Archive Page */
.notice-archive-content {
    padding: 30px 0;
}

.page-header {
    margin-bottom: 40px;
    text-align: center;
}

.page-title {
    font-size: 2.5rem;
    color: #09a769;
    margin-bottom: 15px;
    font-weight: 700;
}

.archive-description {
    font-size: 1.1rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Notice Table */
.notice-table-container {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    margin-bottom: 40px;
}

.notice-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 15px;
}

.notice-table th {
    background: linear-gradient(135deg, #09a769, #046740);
    color: #fff;
    padding: 18px 20px;
    text-align: left;
    font-weight: 600;
    font-size: 16px;
}

.notice-table td {
    padding: 18px 20px;
    border-bottom: 1px solid #e9ecef;
    vertical-align: middle;
}

.notice-table tr:last-child td {
    border-bottom: none;
}

.notice-table tr:hover {
    background-color: #f8f9fa;
    transition: background-color 0.3s ease;
}

/* Table Columns */
.notice-title-header {
    width: 50%;
}

.notice-date-header {
    width: 25%;
}

.notice-action-header {
    width: 25%;
    text-align: center;
}

/* Notice Title Column */
.notice-title-link {
    color: #09a769;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: color 0.3s ease;
}

.notice-title-link:hover {
    color: #046740;
    text-decoration: underline;
}

/* Notice Date Column */
.notice-date {
    color: #666;
    font-size: 14px;
}

/* View Details Button */
.view-details-btn {
    display: inline-block;
    background: linear-gradient(135deg, #09a769, #046740);
    color: #fff;
    padding: 8px 20px;
    border-radius: 25px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(9, 167, 105, 0.3);
}

.view-details-btn:hover {
    background: linear-gradient(135deg, #046740, #09a769);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(9, 167, 105, 0.4);
    color: #fff;
    text-decoration: none;
}

/* Pagination */
.notice-archive-content .wp-pagenavi,
.notice-archive-content .navigation {
    text-align: center;
    margin: 40px 0;
}

.notice-archive-content .page-numbers,
.notice-archive-content .prev,
.notice-archive-content .next {
    display: inline-block;
    padding: 10px 15px;
    margin: 0 5px;
    background: #fff;
    border: 2px solid #09a769;
    color: #09a769;
    text-decoration: none;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.notice-archive-content .page-numbers:hover,
.notice-archive-content .prev:hover,
.notice-archive-content .next:hover,
.notice-archive-content .current {
    background: #09a769;
    color: #fff;
    text-decoration: none;
}

/* No Notices */
.no-notices {
    text-align: center;
    padding: 60px 20px;
    background: #f8f9fa;
    border-radius: 10px;
}

.no-notices p {
    font-size: 1.2rem;
    color: #666;
    margin: 0;
}

/* ========================================
   SINGLE NOTICE PAGE STYLES
   ======================================== */

.single-notice-content {
    padding: 30px 0;
}

.notice-single {
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

/* Notice Header */
.notice-header {
    background: linear-gradient(135deg, #09a769, #046740);
    color: #fff;
    padding: 40px 30px;
    text-align: center;
}

.notice-title {
    font-size: 2.2rem;
    margin: 0 0 25px 0;
    font-weight: 700;
    line-height: 1.3;
}

.notice-meta {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    font-size: 14px;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.meta-label {
    font-weight: 600;
    opacity: 0.9;
}

.published-date,
.author-name {
    font-weight: 500;
}

/* Notice Categories */
.notice-categories {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.category-link {
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
    padding: 4px 12px;
    border-radius: 15px;
    text-decoration: none;
    font-size: 12px;
    transition: all 0.3s ease;
}

.category-link:hover {
    background: rgba(255, 255, 255, 0.3);
    color: #fff;
    text-decoration: none;
}

/* Notice Featured Image */
.notice-featured-image {
    padding: 30px;
    text-align: center;
    background: #f8f9fa;
}

.featured-img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

/* Notice Content */
.notice-content {
    padding: 40px 30px;
    line-height: 1.8;
    font-size: 16px;
    color: #333;
}

.notice-content h2,
.notice-content h3,
.notice-content h4 {
    color: #09a769;
    margin-top: 30px;
    margin-bottom: 15px;
}

.notice-content p {
    margin-bottom: 20px;
}

.notice-content ul,
.notice-content ol {
    margin-bottom: 20px;
    padding-left: 30px;
}

/* Notice Excerpt */
.notice-excerpt {
    background: #f8f9fa;
    padding: 25px 30px;
    border-left: 4px solid #09a769;
    margin: 0 30px 30px 30px;
}

.notice-excerpt h3 {
    color: #09a769;
    margin: 0 0 15px 0;
    font-size: 1.3rem;
}

/* Notice Footer */
.notice-footer {
    background: #f8f9fa;
    padding: 30px;
}

/* Navigation Links */
.notice-navigation {
    margin-bottom: 30px;
}

.nav-links {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.nav-previous,
.nav-next {
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.nav-previous:hover,
.nav-next:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.nav-previous a,
.nav-next a {
    text-decoration: none;
    color: #333;
    display: block;
}

.nav-subtitle {
    display: block;
    font-size: 12px;
    color: #09a769;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 5px;
}

.nav-title {
    display: block;
    font-weight: 600;
    font-size: 14px;
    line-height: 1.4;
}

.nav-next {
    text-align: right;
}

/* Back to Notices Link */
.back-to-notices {
    text-align: center;
}

.back-link {
    display: inline-block;
    background: linear-gradient(135deg, #09a769, #046740);
    color: #fff;
    padding: 12px 25px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(9, 167, 105, 0.3);
}

.back-link:hover {
    background: linear-gradient(135deg, #046740, #09a769);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(9, 167, 105, 0.4);
    color: #fff;
    text-decoration: none;
}

/* Responsive Design */
@media (max-width: 768px) {
    .notice-table-container {
        overflow-x: auto;
    }
    
    .notice-table {
        min-width: 600px;
    }
    
    .notice-meta {
        flex-direction: column;
        gap: 15px;
        align-items: center;
    }
    
    .nav-links {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .notice-header,
    .notice-content,
    .notice-footer {
        padding: 20px;
    }
    
    .notice-title {
        font-size: 1.8rem;
    }
    
    .page-title {
        font-size: 2rem;
    }
}
.widget.kalsindur-links-widget,
.widget.kalsindur-buttons-widget,
.widget.kalsindur-image-text-widget {
    border: 1px solid;
    margin-bottom: 20px;
}

/* Blog Page Template Styles */
.blog-page-content {
    background: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.blog-posts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.blog-post-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #eee;
}

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

.post-thumbnail {
    position: relative;
    overflow: hidden;
}

.post-thumbnail img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.blog-post-card:hover .post-thumbnail img {
    transform: scale(1.05);
}

.post-content {
    padding: 25px;
}

.post-header {
    margin-bottom: 15px;
}

.post-title {
    font-size: 1.4rem;
    margin: 0 0 15px 0;
    line-height: 1.4;
}

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

.post-title a:hover {
    color: #09a769;
}

.post-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 15px;
}

.post-meta span {
    display: flex;
    align-items: center;
    gap: 5px;
}

.post-meta a {
    color: #09a769;
    text-decoration: none;
    font-weight: 500;
}

.post-meta a:hover {
    text-decoration: underline;
}

.post-categories a {
    background: #f0f8f5;
    padding: 3px 8px;
    border-radius: 12px;
    font-size: 0.8rem;
    color: #09a769;
    text-decoration: none;
    transition: background 0.3s ease;
}

.post-categories a:hover {
    background: #09a769;
    color: #fff;
}

.post-excerpt {
    color: #555;
    line-height: 1.6;
    margin-bottom: 20px;
}

.post-excerpt p {
    margin: 0;
}

.post-footer {
    text-align: center;
}

.read-more-btn {
    display: inline-block;
    background: linear-gradient(135deg, #09a769, #046740);
    color: #fff;
    padding: 10px 25px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(9, 167, 105, 0.3);
}

.read-more-btn:hover {
    background: linear-gradient(135deg, #046740, #09a769);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(9, 167, 105, 0.4);
    color: #fff;
    text-decoration: none;
}

/* Blog Pagination */
.blog-pagination {
    margin-top: 40px;
    text-align: center;
}

.blog-pagination .page-numbers {
    display: inline-block;
    padding: 10px 15px;
    margin: 0 5px;
    background: #f8f9fa;
    color: #333;
    text-decoration: none;
    border-radius: 5px;
    transition: all 0.3s ease;
    border: 1px solid #dee2e6;
}

.blog-pagination .page-numbers:hover,
.blog-pagination .page-numbers.current {
    background: #09a769;
    color: #fff;
    border-color: #09a769;
}

.blog-pagination .prev,
.blog-pagination .next {
    background: linear-gradient(135deg, #09a769, #046740);
    color: #fff;
    border-color: #09a769;
}

.blog-pagination .prev:hover,
.blog-pagination .next:hover {
    background: linear-gradient(135deg, #046740, #09a769);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(9, 167, 105, 0.4);
}

/* No Posts Message */
.no-posts {
    text-align: center;
    padding: 60px 20px;
    color: #666;
}

.no-posts p {
    font-size: 1.1rem;
    margin: 0;
}

/* Responsive Blog Grid */
@media (max-width: 768px) {
    .blog-posts-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .blog-page-content {
        padding: 20px;
    }
    
    .post-content {
        padding: 20px;
    }
    
    .post-title {
        font-size: 1.2rem;
    }
    
    .post-meta {
        flex-direction: column;
        gap: 10px;
    }
    
    .blog-pagination .page-numbers {
        padding: 8px 12px;
        margin: 0 3px;
        font-size: 0.9rem;
    }
}

/* Blog List Page Template Styles */
.blog-list-content {
    background: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.blog-posts-list {
    margin-top: 30px;
}

.blog-post-item {
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 1px solid #eee;
}

.blog-post-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.post-layout {
    display: flex;
    gap: 25px;
    align-items: flex-start;
}

.post-thumbnail {
    flex: 0 0 250px;
    position: relative;
    overflow: hidden;
    border-radius: 8px;
}

.post-thumbnail img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.blog-post-item:hover .post-thumbnail img {
    transform: scale(1.05);
}

.post-content {
    flex: 1;
}

.post-header {
    margin-bottom: 15px;
}

.post-title {
    font-size: 1.6rem;
    margin: 0 0 15px 0;
    line-height: 1.4;
}

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

.post-title a:hover {
    color: #09a769;
}

.post-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 15px;
}

.post-meta span {
    display: flex;
    align-items: center;
    gap: 5px;
}

.post-meta i {
    color: #09a769;
    font-size: 16px;
}

.post-meta a {
    color: #09a769;
    text-decoration: none;
    font-weight: 500;
}

.post-meta a:hover {
    text-decoration: underline;
}

.post-categories a,
.post-tags a {
    background: #f0f8f5;
    padding: 3px 8px;
    border-radius: 12px;
    font-size: 0.8rem;
    color: #09a769;
    text-decoration: none;
    transition: background 0.3s ease;
    margin-right: 5px;
}

.post-categories a:hover,
.post-tags a:hover {
    background: #09a769;
    color: #fff;
}

.post-excerpt {
    color: #555;
    line-height: 1.6;
    margin-bottom: 20px;
}

.post-excerpt p {
    margin: 0;
}

.post-footer {
    text-align: left;
}

.read-more-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #09a769, #046740);
    color: #fff;
    padding: 10px 25px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(9, 167, 105, 0.3);
}

.read-more-btn:hover {
    background: linear-gradient(135deg, #046740, #09a769);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(9, 167, 105, 0.4);
    color: #fff;
    text-decoration: none;
}

.read-more-btn i {
    font-size: 16px;
    transition: transform 0.3s ease;
}

.read-more-btn:hover i {
    transform: translateX(3px);
}

/* Responsive Blog List */
@media (max-width: 768px) {
    .post-layout {
        flex-direction: column;
        gap: 15px;
    }
    
    .post-thumbnail {
        flex: none;
        width: 100%;
    }
    
    .post-thumbnail img {
        height: 200px;
    }
    
    .blog-list-content {
        padding: 20px;
    }
    
    .post-title {
        font-size: 1.3rem;
    }
    
    .post-meta {
        flex-direction: column;
        gap: 10px;
    }
}