/* Blog Archive Styles */

/* Blog Hero */
.blog-hero {
    background: #2877db;
    padding: 80px 0;
    text-align: center;
}

.blog-hero-title {
    font-family: 'Poppins', sans-serif;
    font-size: 48px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 15px;
}

.blog-hero-description {
    font-family: 'Muli', sans-serif;
    font-size: 18px;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

/* Blog Content */
.blog-content {
    padding: 80px 0;
    background: #f8f9fa;
}

/* Blog Post Card */
.blog-post-card {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    margin-bottom: 30px;
    transition: all 0.3s ease;
}

.blog-post-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.blog-post-link {
    display: block;
    text-decoration: none;
    color: inherit;
}

/* Post Image */
.blog-post-image {
    position: relative;
    height: 280px;
    overflow: hidden;
}

.blog-post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

/* Post Content */
.blog-post-content {
    padding: 30px;
}

.blog-post-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 15px;
}

.blog-post-meta span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: 'Muli', sans-serif;
    font-size: 13px;
    color: #888;
}

.blog-post-meta a {
    color: #888;
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.blog-post-title {
    font-family: 'Poppins', sans-serif;
    font-size: 24px;
    font-weight: 600;
    color: #222;
    margin-bottom: 15px;
    line-height: 1.4;
    transition: color 0.3s ease;
}

.blog-post-card:hover .blog-post-title {
    color: #2877db;
}

.blog-post-excerpt {
    font-family: 'Muli', sans-serif;
    font-size: 15px;
    color: #666;
    line-height: 1.8;
    margin-bottom: 20px;
}

.blog-post-read-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #2877db;
}

.blog-post-read-more i {
    transition: transform 0.3s ease;
}

.blog-post-card:hover .blog-post-read-more i {
    transform: translateX(5px);
}

/* No Posts */
.blog-no-posts {
    text-align: center;
    padding: 80px 40px;
    background: #fff;
    border-radius: 8px;
}

.blog-no-posts i {
    font-size: 60px;
    color: #ddd;
    margin-bottom: 20px;
}

.blog-no-posts h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 24px;
    font-weight: 600;
    color: #333;
    margin-bottom: 10px;
}

.blog-no-posts p {
    font-family: 'Muli', sans-serif;
    font-size: 16px;
    color: #666;
}

/* Pagination */
.blog-pagination {
    margin-top: 40px;
}

.blog-pagination .nav-links {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.blog-pagination .page-numbers {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 45px;
    height: 45px;
    padding: 0 15px;
    background: #fff;
    border: 2px solid #e0e0e0;
    border-radius: 4px;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #333;
    text-decoration: none;
    transition: all 0.3s ease;
}

.blog-pagination .page-numbers:hover {
    border-color: #2877db;
    color: #2877db;
}

.blog-pagination .page-numbers.current {
    background: #2877db;
    border-color: #2877db;
    color: #fff;
}

.blog-pagination .prev,
.blog-pagination .next {
    gap: 8px;
}

/* Sidebar */
.blog-sidebar {
    position: sticky;
    top: 100px;
}

.sidebar-widget {
    background: #fff;
    border-radius: 8px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.sidebar-widget:last-child {
    margin-bottom: 0;
}

.sidebar-widget-title {
    font-family: 'Poppins', sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: #222;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid #f0f0f0;
}

/* Search Widget */
.sidebar-search form {
    display: flex;
    position: relative;
}

.sidebar-search input {
    flex: 1;
    padding: 14px 50px 14px 18px;
    border: 2px solid #e0e0e0;
    border-radius: 4px;
    font-family: 'Muli', sans-serif;
    font-size: 15px;
    color: #333;
    transition: border-color 0.3s ease;
}

.sidebar-search input:focus {
    outline: none;
    border-color: #2877db;
}

.sidebar-search button {
    position: absolute;
    right: 5px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    padding: 10px 15px;
    color: #888;
    cursor: pointer;
    transition: color 0.3s ease;
}

.sidebar-search button:hover {
    color: #2877db;
}

/* Categories Widget */
.sidebar-categories ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sidebar-categories ul li {
    margin-bottom: 12px;
}

.sidebar-categories ul li:last-child {
    margin-bottom: 0;
}

.sidebar-categories ul li a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: 'Muli', sans-serif;
    font-size: 15px;
    color: #555;
    text-decoration: none;
    transition: color 0.3s ease;
}

.sidebar-categories ul li a:hover {
    color: #2877db;
}

.sidebar-categories .category-count {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 28px;
    height: 28px;
    background: #f0f0f0;
    border-radius: 14px;
    font-size: 12px;
    font-weight: 600;
    color: #888;
    transition: all 0.3s ease;
}

.sidebar-categories ul li a:hover .category-count {
    background: #2877db;
    color: #fff;
}

/* Recent Posts Widget */
.sidebar-recent-posts ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sidebar-recent-posts ul li {
    margin-bottom: 20px;
}

.sidebar-recent-posts ul li:last-child {
    margin-bottom: 0;
}

.sidebar-recent-posts ul li a {
    display: flex;
    gap: 15px;
    text-decoration: none;
    color: inherit;
}

.sidebar-recent-posts .recent-post-thumb {
    flex-shrink: 0;
    width: 70px;
    height: 70px;
    border-radius: 4px;
    overflow: hidden;
}

.sidebar-recent-posts .recent-post-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.sidebar-recent-posts ul li a:hover .recent-post-thumb img {
    transform: scale(1.1);
}

.sidebar-recent-posts .recent-post-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.sidebar-recent-posts .recent-post-title {
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #333;
    line-height: 1.4;
    margin-bottom: 5px;
    transition: color 0.3s ease;
}

.sidebar-recent-posts ul li a:hover .recent-post-title {
    color: #2877db;
}

.sidebar-recent-posts .recent-post-date {
    font-family: 'Muli', sans-serif;
    font-size: 12px;
    color: #888;
}

/* Responsive */
@media (max-width: 991px) {
    .blog-hero {
        padding: 60px 0;
    }
    
    .blog-hero-title {
        font-size: 36px;
    }
    
    .blog-content {
        padding: 60px 0;
    }
    
    .blog-sidebar {
        position: static;
        margin-top: 50px;
    }
}

@media (max-width: 767px) {
    .blog-hero {
        padding: 50px 0;
    }
    
    .blog-hero-title {
        font-size: 30px;
    }
    
    .blog-hero-description {
        font-size: 16px;
    }
    
    .blog-content {
        padding: 40px 0;
    }
    
    .blog-post-image {
        height: 200px;
    }
    
    .blog-post-content {
        padding: 25px;
    }
    
    .blog-post-title {
        font-size: 20px;
    }
    
    .blog-pagination .page-numbers {
        min-width: 40px;
        height: 40px;
        font-size: 13px;
    }
    
    .sidebar-widget {
        padding: 25px;
    }
}

/* Search Results Styles */

/* Search Hero */
.search-hero {
    background: linear-gradient(135deg, #000000 0%, #001a3a 100%);
    padding: 80px 0;
    text-align: center;
}

.search-hero-title {
    font-family: 'Poppins', sans-serif;
    font-size: 48px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 15px;
}

.search-hero-description {
    font-family: 'Muli', sans-serif;
    font-size: 18px;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

.search-hero-description strong {
    color: #fff;
}

/* Search Content */
.search-content {
    padding: 80px 0;
    background: #f8f9fa;
}

/* Search Result Card */
.search-result-card {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    margin-bottom: 25px;
    transition: all 0.3s ease;
}

.search-result-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.search-result-link {
    display: flex;
    text-decoration: none;
    color: inherit;
}

/* Result Image */
.search-result-image {
    flex-shrink: 0;
    width: 200px;
    min-height: 180px;
    overflow: hidden;
}

.search-result-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.search-result-card:hover .search-result-image img {
    transform: scale(1.05);
}

/* Result Content */
.search-result-content {
    padding: 25px 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    flex: 1;
}

.search-result-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 12px;
}

.search-result-type {
    display: inline-block;
    padding: 4px 12px;
    background: #2877db;
    color: #fff;
    font-family: 'Poppins', sans-serif;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 3px;
}

.search-result-date {
    font-family: 'Muli', sans-serif;
    font-size: 13px;
    color: #888;
}

.search-result-title {
    font-family: 'Poppins', sans-serif;
    font-size: 20px;
    font-weight: 600;
    color: #222;
    margin-bottom: 10px;
    line-height: 1.4;
    transition: color 0.3s ease;
}

.search-result-card:hover .search-result-title {
    color: #2877db;
}

.search-result-excerpt {
    font-family: 'Muli', sans-serif;
    font-size: 14px;
    color: #666;
    line-height: 1.7;
    margin-bottom: 15px;
}

.search-result-read-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #2877db;
}

.search-result-read-more i {
    transition: transform 0.3s ease;
}

.search-result-card:hover .search-result-read-more i {
    transform: translateX(5px);
}

/* No Results */
.search-no-results {
    text-align: center;
    padding: 60px 40px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.search-no-results > i {
    font-size: 60px;
    color: #ddd;
    margin-bottom: 25px;
}

.search-no-results h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 28px;
    font-weight: 600;
    color: #333;
    margin-bottom: 15px;
}

.search-no-results > p {
    font-family: 'Muli', sans-serif;
    font-size: 16px;
    color: #666;
    max-width: 450px;
    margin: 0 auto 30px;
    line-height: 1.7;
}

/* Try Again Form */
.search-try-again {
    max-width: 450px;
    margin: 0 auto 40px;
}

.search-try-again form {
    display: flex;
    gap: 10px;
}

.search-try-again input {
    flex: 1;
    padding: 14px 20px;
    border: 2px solid #e0e0e0;
    border-radius: 4px;
    font-family: 'Muli', sans-serif;
    font-size: 15px;
    color: #333;
    transition: border-color 0.3s ease;
}

.search-try-again input:focus {
    outline: none;
    border-color: #2877db;
}

.search-try-again button {
    padding: 14px 30px;
    background: #2877db;
    border: none;
    border-radius: 4px;
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    font-weight: 600;
    color: #fff;
    cursor: pointer;
    transition: all 0.3s ease;
}

.search-try-again button:hover {
    background: #1f5fa8;
}

/* Suggestions */
.search-suggestions {
    padding-top: 30px;
    border-top: 1px solid #eee;
}

.search-suggestions h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: #333;
    margin-bottom: 15px;
}

.suggestion-tags {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
}

.suggestion-tag {
    display: inline-block;
    padding: 8px 18px;
    background: #f0f0f0;
    border-radius: 20px;
    font-family: 'Muli', sans-serif;
    font-size: 14px;
    color: #555;
    text-decoration: none;
    transition: all 0.3s ease;
}

.suggestion-tag:hover {
    background: #2877db;
    color: #fff;
}

/* Pagination */
.search-pagination {
    margin-top: 40px;
}

.search-pagination .nav-links {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.search-pagination .page-numbers {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 45px;
    height: 45px;
    padding: 0 15px;
    background: #fff;
    border: 2px solid #e0e0e0;
    border-radius: 4px;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #333;
    text-decoration: none;
    transition: all 0.3s ease;
}

.search-pagination .page-numbers:hover {
    border-color: #2877db;
    color: #2877db;
}

.search-pagination .page-numbers.current {
    background: #2877db;
    border-color: #2877db;
    color: #fff;
}

/* Sidebar */
.search-sidebar {
    position: sticky;
    top: 100px;
}

.search-sidebar .sidebar-widget {
    background: #fff;
    border-radius: 8px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.search-sidebar .sidebar-widget:last-child {
    margin-bottom: 0;
}

.search-sidebar .sidebar-widget-title {
    font-family: 'Poppins', sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: #222;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid #f0f0f0;
}

/* Search Widget */
.search-sidebar .sidebar-search form {
    display: flex;
    position: relative;
}

.search-sidebar .sidebar-search input {
    flex: 1;
    padding: 14px 50px 14px 18px;
    border: 2px solid #e0e0e0;
    border-radius: 4px;
    font-family: 'Muli', sans-serif;
    font-size: 15px;
    color: #333;
    transition: border-color 0.3s ease;
}

.search-sidebar .sidebar-search input:focus {
    outline: none;
    border-color: #2877db;
}

.search-sidebar .sidebar-search button {
    position: absolute;
    right: 5px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    padding: 10px 15px;
    color: #888;
    cursor: pointer;
    transition: color 0.3s ease;
}

.search-sidebar .sidebar-search button:hover {
    color: #2877db;
}

/* Categories Widget */
.search-sidebar .sidebar-categories ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.search-sidebar .sidebar-categories ul li {
    margin-bottom: 12px;
}

.search-sidebar .sidebar-categories ul li:last-child {
    margin-bottom: 0;
}

.search-sidebar .sidebar-categories ul li a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: 'Muli', sans-serif;
    font-size: 15px;
    color: #555;
    text-decoration: none;
    transition: color 0.3s ease;
}

.search-sidebar .sidebar-categories ul li a:hover {
    color: #2877db;
}

.search-sidebar .sidebar-categories .category-count {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 28px;
    height: 28px;
    background: #f0f0f0;
    border-radius: 14px;
    font-size: 12px;
    font-weight: 600;
    color: #888;
    transition: all 0.3s ease;
}

.search-sidebar .sidebar-categories ul li a:hover .category-count {
    background: #2877db;
    color: #fff;
}

/* Recent Posts Widget */
.search-sidebar .sidebar-recent-posts ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.search-sidebar .sidebar-recent-posts ul li {
    margin-bottom: 20px;
}

.search-sidebar .sidebar-recent-posts ul li:last-child {
    margin-bottom: 0;
}

.search-sidebar .sidebar-recent-posts ul li a {
    display: flex;
    gap: 15px;
    text-decoration: none;
    color: inherit;
}

.search-sidebar .recent-post-thumb {
    flex-shrink: 0;
    width: 70px;
    height: 70px;
    border-radius: 4px;
    overflow: hidden;
}

.search-sidebar .recent-post-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.search-sidebar ul li a:hover .recent-post-thumb img {
    transform: scale(1.1);
}

.search-sidebar .recent-post-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.search-sidebar .recent-post-title {
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #333;
    line-height: 1.4;
    margin-bottom: 5px;
    transition: color 0.3s ease;
}

.search-sidebar ul li a:hover .recent-post-title {
    color: #2877db;
}

.search-sidebar .recent-post-date {
    font-family: 'Muli', sans-serif;
    font-size: 12px;
    color: #888;
}

/* Responsive */
@media (max-width: 991px) {
    .search-hero {
        padding: 60px 0;
    }
    
    .search-hero-title {
        font-size: 36px;
    }
    
    .search-content {
        padding: 60px 0;
    }
    
    .search-sidebar {
        position: static;
        margin-top: 50px;
    }
}

@media (max-width: 767px) {
    .search-hero {
        padding: 50px 0;
    }
    
    .search-hero-title {
        font-size: 30px;
    }
    
    .search-hero-description {
        font-size: 16px;
    }
    
    .search-content {
        padding: 40px 0;
    }
    
    .search-result-link {
        flex-direction: column;
    }
    
    .search-result-image {
        width: 100%;
        height: 180px;
    }
    
    .search-result-content {
        padding: 20px;
    }
    
    .search-result-title {
        font-size: 18px;
    }
    
    .search-no-results {
        padding: 40px 25px;
    }
    
    .search-no-results h2 {
        font-size: 22px;
    }
    
    .search-try-again form {
        flex-direction: column;
    }
    
    .search-pagination .page-numbers {
        min-width: 40px;
        height: 40px;
        font-size: 13px;
    }
    
    .search-sidebar .sidebar-widget {
        padding: 25px;
    }
}

/* Category Archive Styles */

/* Category Hero */
.category-hero {
    background: linear-gradient(135deg, #000000 0%, #001a3a 100%);
    padding: 80px 0;
    text-align: center;
}

.category-hero-label {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(40, 119, 219, 0.2);
    border: 1px solid rgba(40, 119, 219, 0.4);
    border-radius: 20px;
    font-family: 'Poppins', sans-serif;
    font-size: 12px;
    font-weight: 600;
    color: #2877db;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.category-hero-title {
    font-family: 'Poppins', sans-serif;
    font-size: 48px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 15px;
}

.category-hero-description {
    font-family: 'Muli', sans-serif;
    font-size: 18px;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Category Content */
.category-content {
    padding: 80px 0;
    background: #f8f9fa;
}

/* Category Post Card */
.category-post-card {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    margin-bottom: 30px;
    transition: all 0.3s ease;
}

.category-post-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.category-post-link {
    display: block;
    text-decoration: none;
    color: inherit;
}

/* Post Image */
.category-post-image {
    position: relative;
    height: 280px;
    overflow: hidden;
}

.category-post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.category-post-card:hover .category-post-image img {
    transform: scale(1.05);
}

/* Post Content */
.category-post-content {
    padding: 30px;
}

.category-post-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 15px;
}

.category-post-meta span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: 'Muli', sans-serif;
    font-size: 13px;
    color: #888;
}

.category-post-title {
    font-family: 'Poppins', sans-serif;
    font-size: 24px;
    font-weight: 600;
    color: #222;
    margin-bottom: 15px;
    line-height: 1.4;
    transition: color 0.3s ease;
}

.category-post-card:hover .category-post-title {
    color: #2877db;
}

.category-post-excerpt {
    font-family: 'Muli', sans-serif;
    font-size: 15px;
    color: #666;
    line-height: 1.8;
    margin-bottom: 20px;
}

.category-post-read-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #2877db;
}

.category-post-read-more i {
    transition: transform 0.3s ease;
}

.category-post-card:hover .category-post-read-more i {
    transform: translateX(5px);
}

/* No Posts */
.category-no-posts {
    text-align: center;
    padding: 80px 40px;
    background: #fff;
    border-radius: 8px;
}

.category-no-posts i {
    font-size: 60px;
    color: #ddd;
    margin-bottom: 20px;
}

.category-no-posts h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 24px;
    font-weight: 600;
    color: #333;
    margin-bottom: 10px;
}

.category-no-posts p {
    font-family: 'Muli', sans-serif;
    font-size: 16px;
    color: #666;
    margin-bottom: 25px;
}

.btn-back-blog {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    background: #2877db;
    color: #fff;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 600;
    border-radius: 4px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-back-blog:hover {
    background: #1f5fa8;
    color: #fff;
    transform: translateY(-2px);
}

/* Pagination */
.category-pagination {
    margin-top: 40px;
}

.category-pagination .nav-links {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.category-pagination .page-numbers {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 45px;
    height: 45px;
    padding: 0 15px;
    background: #fff;
    border: 2px solid #e0e0e0;
    border-radius: 4px;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #333;
    text-decoration: none;
    transition: all 0.3s ease;
}

.category-pagination .page-numbers:hover {
    border-color: #2877db;
    color: #2877db;
}

.category-pagination .page-numbers.current {
    background: #2877db;
    border-color: #2877db;
    color: #fff;
}

.category-pagination .prev,
.category-pagination .next {
    gap: 8px;
}

/* Sidebar */
.category-sidebar {
    position: sticky;
    top: 100px;
}

.category-sidebar .sidebar-widget {
    background: #fff;
    border-radius: 8px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.category-sidebar .sidebar-widget:last-child {
    margin-bottom: 0;
}

.category-sidebar .sidebar-widget-title {
    font-family: 'Poppins', sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: #222;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid #f0f0f0;
}

/* Search Widget */
.category-sidebar .sidebar-search form {
    display: flex;
    position: relative;
}

.category-sidebar .sidebar-search input {
    flex: 1;
    padding: 14px 50px 14px 18px;
    border: 2px solid #e0e0e0;
    border-radius: 4px;
    font-family: 'Muli', sans-serif;
    font-size: 15px;
    color: #333;
    transition: border-color 0.3s ease;
}

.category-sidebar .sidebar-search input:focus {
    outline: none;
    border-color: #2877db;
}

.category-sidebar .sidebar-search button {
    position: absolute;
    right: 5px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    padding: 10px 15px;
    color: #888;
    cursor: pointer;
    transition: color 0.3s ease;
}

.category-sidebar .sidebar-search button:hover {
    color: #2877db;
}

/* Categories Widget */
.category-sidebar .sidebar-categories ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.category-sidebar .sidebar-categories ul li {
    margin-bottom: 12px;
}

.category-sidebar .sidebar-categories ul li:last-child {
    margin-bottom: 0;
}

.category-sidebar .sidebar-categories ul li a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: 'Muli', sans-serif;
    font-size: 15px;
    color: #555;
    text-decoration: none;
    transition: color 0.3s ease;
}

.category-sidebar .sidebar-categories ul li a:hover {
    color: #2877db;
}

/* Current category highlight */
.category-sidebar .sidebar-categories ul li.current-cat a {
    color: #2877db;
    font-weight: 600;
}

.category-sidebar .sidebar-categories ul li.current-cat .category-count {
    background: #2877db;
    color: #fff;
}

.category-sidebar .sidebar-categories .category-count {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 28px;
    height: 28px;
    background: #f0f0f0;
    border-radius: 14px;
    font-size: 12px;
    font-weight: 600;
    color: #888;
    transition: all 0.3s ease;
}

.category-sidebar .sidebar-categories ul li a:hover .category-count {
    background: #2877db;
    color: #fff;
}

/* Recent Posts Widget */
.category-sidebar .sidebar-recent-posts ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.category-sidebar .sidebar-recent-posts ul li {
    margin-bottom: 20px;
}

.category-sidebar .sidebar-recent-posts ul li:last-child {
    margin-bottom: 0;
}

.category-sidebar .sidebar-recent-posts ul li a {
    display: flex;
    gap: 15px;
    text-decoration: none;
    color: inherit;
}

.category-sidebar .recent-post-thumb {
    flex-shrink: 0;
    width: 70px;
    height: 70px;
    border-radius: 4px;
    overflow: hidden;
}

.category-sidebar .recent-post-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.category-sidebar ul li a:hover .recent-post-thumb img {
    transform: scale(1.1);
}

.category-sidebar .recent-post-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.category-sidebar .recent-post-title {
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #333;
    line-height: 1.4;
    margin-bottom: 5px;
    transition: color 0.3s ease;
}

.category-sidebar ul li a:hover .recent-post-title {
    color: #2877db;
}

.category-sidebar .recent-post-date {
    font-family: 'Muli', sans-serif;
    font-size: 12px;
    color: #888;
}

/* Responsive */
@media (max-width: 991px) {
    .category-hero {
        padding: 60px 0;
    }
    
    .category-hero-title {
        font-size: 36px;
    }
    
    .category-content {
        padding: 60px 0;
    }
    
    .category-sidebar {
        position: static;
        margin-top: 50px;
    }
}

@media (max-width: 767px) {
    .category-hero {
        padding: 50px 0;
    }
    
    .category-hero-title {
        font-size: 30px;
    }
    
    .category-hero-description {
        font-size: 16px;
    }
    
    .category-content {
        padding: 40px 0;
    }
    
    .category-post-image {
        height: 200px;
    }
    
    .category-post-content {
        padding: 25px;
    }
    
    .category-post-title {
        font-size: 20px;
    }
    
    .category-pagination .page-numbers {
        min-width: 40px;
        height: 40px;
        font-size: 13px;
    }
    
    .category-sidebar .sidebar-widget {
        padding: 25px;
    }
}

/* Single Post Styles */

/* Post Hero */
.single-hero {
    position: relative;
    min-height: 500px;
    display: flex;
    align-items: flex-end;
    padding: 60px 0;
    background: linear-gradient(135deg, #000000 0%, #001a3a 100%);
}

.single-hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.single-hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.single-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.3) 100%);
}

.single-hero-no-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #000000 0%, #001a3a 100%);
}

.single-hero .container {
    position: relative;
    z-index: 1;
}

.single-hero-content {
    max-width: 800px;
}

.single-hero-categories {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 20px;
}

.single-hero-category {
    display: inline-block;
    padding: 6px 16px;
    background: #2877db;
    border-radius: 4px;
    font-family: 'Poppins', sans-serif;
    font-size: 12px;
    font-weight: 600;
    color: #fff;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.single-hero-category:hover {
    background: #1f5fa8;
    color: #fff;
}

.single-hero-title {
    font-family: 'Poppins', sans-serif;
    font-size: 48px;
    font-weight: 700;
    color: #fff;
    line-height: 1.2;
    margin-bottom: 25px;
}

.single-hero-meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 25px;
}

.single-hero-meta span {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: 'Muli', sans-serif;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
}

.single-meta-author img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
}

/* Post Content Section */
.single-content {
    padding: 80px 0;
    background: #f8f9fa;
}

/* Article Body */
.single-article {
    background: #fff;
    border-radius: 8px;
    padding: 50px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    margin-bottom: 40px;
}

.single-article-body {
    font-family: 'Muli', sans-serif;
    font-size: 17px;
    color: #444;
    line-height: 1.9;
}

.single-article-body p {
    margin-bottom: 25px;
}

.single-article-body h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 28px;
    font-weight: 600;
    color: #222;
    margin: 40px 0 20px;
}

.single-article-body h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 24px;
    font-weight: 600;
    color: #222;
    margin: 35px 0 18px;
}

.single-article-body h4 {
    font-family: 'Poppins', sans-serif;
    font-size: 20px;
    font-weight: 600;
    color: #222;
    margin: 30px 0 15px;
}

.single-article-body img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 30px 0;
}

.single-article-body a {
    color: #2877db;
    text-decoration: underline;
}

.single-article-body a:hover {
    color: #1f5fa8;
}

.single-article-body ul,
.single-article-body ol {
    margin: 25px 0;
    padding-left: 25px;
}

.single-article-body li {
    margin-bottom: 10px;
}

.single-article-body blockquote {
    margin: 35px 0;
    padding: 30px 35px;
    background: #f8f9fa;
    border-left: 4px solid #2877db;
    border-radius: 0 8px 8px 0;
    font-style: italic;
    font-size: 18px;
    color: #555;
}

.single-article-body blockquote p:last-child {
    margin-bottom: 0;
}

.single-article-body pre,
.single-article-body code {
    font-family: 'Monaco', 'Consolas', monospace;
    background: #1a1a2e;
    color: #e0e0e0;
    border-radius: 6px;
}

.single-article-body code {
    padding: 3px 8px;
    font-size: 14px;
}

.single-article-body pre {
    padding: 25px;
    overflow-x: auto;
    margin: 30px 0;
}

.single-article-body pre code {
    padding: 0;
    background: none;
}

/* Tags */
.single-tags {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
    padding-top: 30px;
    margin-top: 40px;
    border-top: 1px solid #eee;
}

.single-tags-label {
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #333;
}

.single-tag {
    display: inline-block;
    padding: 6px 14px;
    background: #f0f0f0;
    border-radius: 4px;
    font-family: 'Muli', sans-serif;
    font-size: 13px;
    color: #666;
    text-decoration: none;
    transition: all 0.3s ease;
}

.single-tag:hover {
    background: #2877db;
    color: #fff;
}

/* Share */
.single-share {
    display: flex;
    align-items: center;
    gap: 15px;
    padding-top: 25px;
    margin-top: 25px;
    border-top: 1px solid #eee;
}

.single-share-label {
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #333;
}

.single-share-buttons {
    display: flex;
    gap: 10px;
}

.share-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 16px;
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
}

.share-btn:hover {
    transform: translateY(-3px);
    color: #fff;
}

.share-facebook {
    background: #1877f2;
}

.share-facebook:hover {
    background: #0d65d9;
}

.share-twitter {
    background: #000;
}

.share-twitter:hover {
    background: #333;
}

.share-linkedin {
    background: #0a66c2;
}

.share-linkedin:hover {
    background: #084d94;
}

.share-email {
    background: #555;
}

.share-email:hover {
    background: #333;
}

/* Author Box */
.single-author-box {
    display: flex;
    gap: 25px;
    background: #fff;
    border-radius: 8px;
    padding: 35px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    margin-bottom: 40px;
}

.author-avatar img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
}

.author-info {
    flex: 1;
}

.author-label {
    font-family: 'Muli', sans-serif;
    font-size: 13px;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.author-name {
    font-family: 'Poppins', sans-serif;
    font-size: 22px;
    font-weight: 600;
    color: #222;
    margin: 8px 0 12px;
}

.author-bio {
    font-family: 'Muli', sans-serif;
    font-size: 15px;
    color: #666;
    line-height: 1.7;
    margin: 0;
}

/* Post Navigation */
.single-navigation {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 40px;
}

.nav-prev,
.nav-next {
    display: flex;
    flex-direction: column;
    padding: 25px 30px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    text-decoration: none;
    transition: all 0.3s ease;
}

.nav-prev:hover,
.nav-next:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

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

.nav-empty {
    visibility: hidden;
}

.nav-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: 'Muli', sans-serif;
    font-size: 13px;
    color: #888;
    margin-bottom: 8px;
}

.nav-title {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: #222;
    line-height: 1.4;
    transition: color 0.3s ease;
}

.nav-prev:hover .nav-title,
.nav-next:hover .nav-title {
    color: #2877db;
}

/* Comments */
.single-comments {
    background: #fff;
    border-radius: 8px;
    padding: 40px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.single-comments .comments-title {
    font-family: 'Poppins', sans-serif;
    font-size: 24px;
    font-weight: 600;
    color: #222;
    margin-bottom: 30px;
}

.single-comments .comment-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.single-comments .comment {
    padding: 25px 0;
    border-bottom: 1px solid #eee;
}

.single-comments .comment:last-child {
    border-bottom: none;
}

.single-comments .comment-author img {
    border-radius: 50%;
}

.single-comments .comment-body {
    font-family: 'Muli', sans-serif;
    font-size: 15px;
    color: #555;
    line-height: 1.7;
}

.single-comments .reply a {
    font-family: 'Poppins', sans-serif;
    font-size: 13px;
    font-weight: 600;
    color: #2877db;
    text-decoration: none;
}

.single-comments .comment-form input[type="text"],
.single-comments .comment-form input[type="email"],
.single-comments .comment-form textarea {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid #e0e0e0;
    border-radius: 4px;
    font-family: 'Muli', sans-serif;
    font-size: 15px;
    color: #333;
    transition: border-color 0.3s ease;
    margin-bottom: 20px;
}

.single-comments .comment-form input:focus,
.single-comments .comment-form textarea:focus {
    outline: none;
    border-color: #2877db;
}

.single-comments .comment-form .submit {
    padding: 14px 30px;
    background: #2877db;
    border: none;
    border-radius: 4px;
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    font-weight: 600;
    color: #fff;
    cursor: pointer;
    transition: all 0.3s ease;
}

.single-comments .comment-form .submit:hover {
    background: #1f5fa8;
}

/* Sidebar */
.single-sidebar {
    position: sticky;
    top: 100px;
}

.single-sidebar .sidebar-widget {
    background: #fff;
    border-radius: 8px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.single-sidebar .sidebar-widget:last-child {
    margin-bottom: 0;
}

.single-sidebar .sidebar-widget-title {
    font-family: 'Poppins', sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: #222;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid #f0f0f0;
}

/* Search Widget */
.single-sidebar .sidebar-search form {
    display: flex;
    position: relative;
}

.single-sidebar .sidebar-search input {
    flex: 1;
    padding: 14px 50px 14px 18px;
    border: 2px solid #e0e0e0;
    border-radius: 4px;
    font-family: 'Muli', sans-serif;
    font-size: 15px;
    color: #333;
    transition: border-color 0.3s ease;
}

.single-sidebar .sidebar-search input:focus {
    outline: none;
    border-color: #2877db;
}

.single-sidebar .sidebar-search button {
    position: absolute;
    right: 5px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    padding: 10px 15px;
    color: #888;
    cursor: pointer;
    transition: color 0.3s ease;
}

.single-sidebar .sidebar-search button:hover {
    color: #2877db;
}

/* Categories Widget */
.single-sidebar .sidebar-categories ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.single-sidebar .sidebar-categories ul li {
    margin-bottom: 12px;
}

.single-sidebar .sidebar-categories ul li:last-child {
    margin-bottom: 0;
}

.single-sidebar .sidebar-categories ul li a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: 'Muli', sans-serif;
    font-size: 15px;
    color: #555;
    text-decoration: none;
    transition: color 0.3s ease;
}

.single-sidebar .sidebar-categories ul li a:hover {
    color: #2877db;
}

.single-sidebar .sidebar-categories .category-count {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 28px;
    height: 28px;
    background: #f0f0f0;
    border-radius: 14px;
    font-size: 12px;
    font-weight: 600;
    color: #888;
    transition: all 0.3s ease;
}

.single-sidebar .sidebar-categories ul li a:hover .category-count {
    background: #2877db;
    color: #fff;
}

/* Recent Posts Widget */
.single-sidebar .sidebar-recent-posts ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.single-sidebar .sidebar-recent-posts ul li {
    margin-bottom: 20px;
}

.single-sidebar .sidebar-recent-posts ul li:last-child {
    margin-bottom: 0;
}

.single-sidebar .sidebar-recent-posts ul li a {
    display: flex;
    gap: 15px;
    text-decoration: none;
    color: inherit;
}

.single-sidebar .recent-post-thumb {
    flex-shrink: 0;
    width: 70px;
    height: 70px;
    border-radius: 4px;
    overflow: hidden;
}

.single-sidebar .recent-post-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.single-sidebar ul li a:hover .recent-post-thumb img {
    transform: scale(1.1);
}

.single-sidebar .recent-post-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.single-sidebar .recent-post-title {
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #333;
    line-height: 1.4;
    margin-bottom: 5px;
    transition: color 0.3s ease;
}

.single-sidebar ul li a:hover .recent-post-title {
    color: #2877db;
}

.single-sidebar .recent-post-date {
    font-family: 'Muli', sans-serif;
    font-size: 12px;
    color: #888;
}

/* Related Posts */
.single-related {
    padding: 80px 0;
    background: #fff;
}

.related-title {
    font-family: 'Poppins', sans-serif;
    font-size: 32px;
    font-weight: 700;
    color: #222;
    text-align: center;
    margin-bottom: 50px;
}

.related-card {
    background: #f8f9fa;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
    height: 100%;
}

.related-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.related-card-link {
    display: flex;
    flex-direction: column;
    height: 100%;
    text-decoration: none;
    color: inherit;
}

.related-card-image {
    height: 200px;
    overflow: hidden;
}

.related-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.related-card:hover .related-card-image img {
    transform: scale(1.1);
}

.related-card-no-image {
    background: linear-gradient(135deg, #000000 0%, #001a3a 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.related-card-no-image i {
    font-size: 48px;
    color: rgba(255, 255, 255, 0.3);
}

.related-card-content {
    padding: 25px;
}

.related-card-title {
    font-family: 'Poppins', sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: #222;
    line-height: 1.4;
    margin-bottom: 10px;
    transition: color 0.3s ease;
}

.related-card:hover .related-card-title {
    color: #2877db;
}

.related-card-date {
    font-family: 'Muli', sans-serif;
    font-size: 13px;
    color: #888;
}

/* Responsive */
@media (max-width: 991px) {
    .single-hero {
        min-height: 400px;
    }
    
    .single-hero-title {
        font-size: 36px;
    }
    
    .single-content {
        padding: 60px 0;
    }
    
    .single-article {
        padding: 35px;
    }
    
    .single-sidebar {
        position: static;
        margin-top: 50px;
    }
    
    .single-related {
        padding: 60px 0;
    }
}

@media (max-width: 767px) {
    .single-hero {
        min-height: 350px;
        padding: 40px 0;
    }
    
    .single-hero-title {
        font-size: 28px;
    }
    
    .single-hero-meta {
        gap: 15px;
    }
    
    .single-hero-meta span {
        font-size: 13px;
    }
    
    .single-content {
        padding: 40px 0;
    }
    
    .single-article {
        padding: 25px;
    }
    
    .single-article-body {
        font-size: 16px;
    }
    
    .single-article-body h2 {
        font-size: 24px;
    }
    
    .single-article-body h3 {
        font-size: 20px;
    }
    
    .single-author-box {
        flex-direction: column;
        text-align: center;
    }
    
    .author-avatar img {
        width: 80px;
        height: 80px;
    }
    
    .single-navigation {
        grid-template-columns: 1fr;
    }
    
    .nav-next {
        text-align: left;
    }
    
    .single-comments {
        padding: 25px;
    }
    
    .single-sidebar .sidebar-widget {
        padding: 25px;
    }
    
    .single-related {
        padding: 50px 0;
    }
    
    .related-title {
        font-size: 26px;
        margin-bottom: 35px;
    }
}