/*!
Theme Name: Which
Author: Shah Kamal
Author URI: http://coderpick.xyz
Description: Description
Version: 1.0.0
Tested up to: 5.4
Requires PHP: 5.6
License: GNU General Public License v2 or later
License URI: LICENSE
Text Domain: which
Tags: custom-background, custom-logo, custom-menu, featured-images, threaded-comments, translation-ready
*/




/* Section */
.blog-section {
    padding: 40px 0;
}
.blog-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}
.blog-card {
    border: 1px solid #ddd;
    padding: 15px;
    border-radius: 10px;
    transition: 0.3s;
    background: #fff;
}
.blog-card:hover {
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}
.blog-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}
.blog-title {
    font-size: 20px;
    margin: 10px 0;
}
.blog-title a {
    text-decoration: none;
    color: #000;
}
.blog-title a:hover {
    color: #0073aa;
}
.blog-excerpt {
    color: #555;
    font-size: 14px;
}
@media (max-width: 768px) {
    .blog-grid {
        grid-template-columns: 1fr;
    }
}

/* 404 Page */
.error-404 {
    padding: 100px 20px;
    text-align: center;
}
.error-title {
    font-size: 80px;
    margin: 0;
    color: #000;
}
.error-heading {
    font-size: 24px;
    margin: 10px 0;
}
.error-text {
    color: #666;
    margin-bottom: 20px;
}
.error-btn {
    display: inline-block;
    padding: 10px 20px;
    background: #000;
    color: #fff;
    text-decoration: none;
    border-radius: 6px;
    transition: 0.3s;
}
.error-btn:hover {
    background: #0073aa;
}