/* ===== BLOG BANNER ===== */
.blog-banner {
    background: url('https://images.unsplash.com/photo-1518770660439-4636190af475?w=1400') no-repeat center/cover;
    padding: 100px 20px;
    text-align: center;
    color: white;
}

.blog-banner h1 {
    font-size: 45px;
    text-shadow: 2px 2px 4px black;
}

.blog-banner p {
    font-size: 18px;
    margin-top: 10px;
}

/* ===== BLOG CARDS ===== */
.blog-container {
    padding: 40px 10%;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
}

.blog-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    transition: 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

.blog-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.blog-content {
    padding: 20px;
}

.blog-content h2 {
    font-size: 22px;
    margin-bottom: 10px;
}

.blog-content p {
    color: #444;
}

.read-more {
    display: inline-block;
    margin-top: 10px;
    color: #005eff;
    font-weight: bold;
}



