/* blog listing page */
/* Blog Listing Page Styles */
.blog-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px 30px 20px;
}

/* Breadcrumbs */
.breadcrumb-nav {
    background: #f8f9fa;
    padding: 10px 0;
    margin-bottom: 20px;
}

.breadcrumb-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.breadcrumb-nav ol {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    margin: 0;
    padding: 0;
    font-size: 14px;
}

.breadcrumb-nav li {
    display: flex;
    align-items: center;
}

.breadcrumb-nav li + li:before {
    content: "›";
    padding: 0 8px;
    color: #666;
}

.breadcrumb-nav a {
    color: #059669;
    text-decoration: none;
}

.breadcrumb-nav a:hover {
    text-decoration: underline;
}

.breadcrumb-nav .active {
    color: #666;
}

/* Two Column Layout */
.blog-layout {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 30px;
    margin-bottom: 30px;
}

.blog-main {
    min-width: 0;
}

.page-title {
    font-size: 1.5rem;
    font-weight: normal;
    color: #333;
    margin-bottom: 20px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* Blog Post Card */
.blog-post-card {
    background: white;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    padding: 20px;
    margin-bottom: 20px;
}

.blog-post-title {
    font-size: 1.3rem;
    font-weight: normal;
    margin-bottom: 10px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.blog-post-title a {
    color: #333;
    text-decoration: none;
}

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

.blog-post-meta {
    color: #7f8c8d;
    font-size: 0.85rem;
    margin-bottom: 12px;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.blog-post-meta i {
    margin-right: 4px;
}

.blog-post-meta a {
    color: #7f8c8d;
    text-decoration: none;
}

.blog-post-meta a:hover {
    color: #059669;
}

.blog-post-excerpt {
    color: #555;
    line-height: 1.6;
    margin-bottom: 15px;
    font-size: 0.95rem;
}

.btn-primary {
    display: inline-block;
    padding: 8px 16px;
    background: #059669;
    color: white;
    border: none;
    border-radius: 4px;
    text-decoration: none;
    font-weight: normal;
    transition: background 0.2s;
    font-size: 0.9rem;
}

.btn-primary:hover {
    background: #2980b9;
}

.btn-primary i {
    margin-left: 5px;
}

.alert-info {
    background: #d1ecf1;
    color: #0c5460;
    padding: 12px 16px;
    border-radius: 4px;
    border-left: 3px solid #059669;
}

.alert-info i {
    margin-right: 6px;
}

/* Pagination */
.pagination-wrapper {
    margin-top: 20px;
    display: flex;
    justify-content: center;
}

.pagination {
    display: flex;
    gap: 5px;
    align-items: center;
    list-style: none;
}

.pagination a,
.pagination span {
    padding: 8px 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    color: #333;
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.2s;
}

.pagination a:hover {
    background: #059669;
    color: white;
    border-color: #059669;
}

.pagination .active {
    background: #059669;
    color: white;
    border-color: #059669;
    font-weight: normal;
}

.pagination .disabled {
    color: #ccc;
    cursor: not-allowed;
    border-color: #e0e0e0;
}

.pagination .page-info {
    border: none;
    padding: 8px 12px;
    color: #666;
    font-size: 0.85rem;
}

/* Sidebar */
.blog-sidebar {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.sidebar-widget {
    background: white;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    overflow: hidden;
}

.widget-header {
    background: #f8f9fa;
    padding: 12px 16px;
    border-bottom: 1px solid #e0e0e0;
    font-weight: normal;
    color: #333;
    font-size: 0.95rem;
}

.widget-header i {
    margin-right: 6px;
}

.widget-body {
    padding: 16px;
}

.widget-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.widget-list li {
    padding: 10px 16px;
    border-bottom: 1px solid #e0e0e0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

.widget-list a {
    color: #333;
    text-decoration: none;
    font-weight: normal;
    flex: 1;
    font-size: 0.9rem;
}

.widget-list a:hover {
    color: #059669;
}

.badge {
    background: #059669;
    color: white;
    padding: 3px 8px;
    border-radius: 10px;
    font-size: 0.8rem;
}

.about-text {
    color: #555;
    line-height: 1.6;
    font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 768px) {
    .blog-layout {
        grid-template-columns: 1fr;
    }

    .blog-post-card {
        padding: 20px;
    }

    .blog-post-title {
        font-size: 1.5rem;
    }

    .blog-post-meta {
        font-size: 0.85rem;
        gap: 10px;
    }

    .page-title {
        font-size: 1.75rem;
    }

    .blog-wrapper {
        padding: 0 10px 20px 10px;
    }

    .breadcrumb-inner {
        padding: 0 10px;
    }
}
