
.btn-black {
    background: var(--primary-black) !important;
    color: white !important;
    padding: 12px 30px;
    border-radius: 0;
    font-weight: 600;
    transition: 0.3s;
    border: none;
}

.btn-black:hover {
    background: #333 !important;
}

.page-header {
    padding: 100px 0 60px 0;
    background: #fff;
    border-bottom: 1px solid var(--border-color);
}

.hero-title {
    font-size: 3.5rem;
    line-height: 1;
    margin-bottom: 20px;
}

/* Blog Card */
    .blog-card {
        border: 1px solid var(--border-color);
        background: #fff;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        height: 100%;
        display: flex;
        flex-direction: column;
    }
    .blog-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 30px rgba(0,0,0,0.05);
        border-color: var(--primary-black);
    }
    
    .blog-img-wrap {
        position: relative;
        padding-top: 60%; /* 16:9 Aspect Ratio */
        overflow: hidden;
        background: #eee;
    }
    .blog-img-wrap img {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: 0.5s;
    }
    .blog-card:hover .blog-img-wrap img {
        transform: scale(1.05);
    }

    .blog-badge {
        position: absolute;
        top: 20px;
        left: 20px;
        background: var(--primary-black);
        color: white;
        padding: 5px 15px;
        font-size: 11px;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 1px;
        z-index: 1;
    }

    .blog-content {
        padding: 30px;
        flex-grow: 1;
        display: flex;
        flex-direction: column;
    }
    
    .blog-meta {
        font-size: 12px;
        color: #888;
        margin-bottom: 10px;
        font-weight: 600;
        text-transform: uppercase;
    }
    
    .blog-title {
        font-size: 1.4rem;
        margin-bottom: 15px;
        line-height: 1.3;
    }
    .blog-title a {
        color: var(--primary-black);
        text-decoration: none;
        transition: 0.2s;
    }
    .blog-title a:hover {
        color: #555;
    }

    /* Sidebar Widgets */
    .widget {
        background: #fff;
        border: 1px solid var(--border-color);
        padding: 30px;
        margin-bottom: 30px;
    }
    .widget-title {
        font-size: 18px;
        margin-bottom: 20px;
        padding-bottom: 15px;
        border-bottom: 1px solid var(--border-color);
    }
    
    .cat-list {
        list-style: none;
        padding: 0;
        margin: 0;
    }
    .cat-list li {
        margin-bottom: 12px;
    }
    .cat-list a {
        color: #555;
        text-decoration: none;
        font-weight: 500;
        display: flex;
        justify-content: space-between;
        transition: 0.2s;
    }
    .cat-list a:hover {
        color: var(--primary-black);
        padding-left: 5px;
    }
    .cat-count {
        background: #f4f4f4;
        padding: 2px 8px;
        font-size: 12px;
        border-radius: 4px;
    }

    /* Search Input */
    .search-form .form-control {
        border: 1px solid #ddd;
        border-radius: 0;
        padding: 12px;
    }
    .search-form .btn {
        border-radius: 0;
    }

    /* Pagination */
    .pagination .page-link {
        color: var(--primary-black);
        border: 1px solid #ddd;
        margin: 0 5px;
        padding: 10px 15px;
        border-radius: 0 !important;
    }
    .pagination .page-item.active .page-link {
        background-color: var(--primary-black);
        border-color: var(--primary-black);
        color: white;
    }
    .pagination .page-link:hover {
        background-color: #eee;
    }