/* ================= HERO SECTION ================= */
.blog-hero {
    height: 60vh;
    background: url('../../../static/assets/img/Canon Images/camera-plants-marble-surface.jpg') center/cover no-repeat;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.blog-hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.55); /* the dark overlay */
    backdrop-filter: blur(1px);
}

.blog-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

    .blog-hero-content h1 {
        font-size: 3.5rem;
        font-weight: 700;
        color: white;
        line-height: 1.3;
    }

        .blog-hero-content h1 span {
            color: #e7c46c; /* gold */
        }

/* ================= BLOG LAYOUT ================= */
.blog-container {
    width: 90%;
    max-width: 1400px;
    margin: 70px auto;
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 40px;
}

/* LEFT SIDE */
.blog-left h2 {
    font-size: 2.5rem;
    color: #e7c46c;
}

.blog-left p {
    color: #ccc;
    margin-bottom: 20px;
}

.search-box input {
    width: 100%;
    padding: 12px 15px;
    background: #111;
    border: 1px solid #333;
    border-radius: 8px;
    color: #fff;
}

/* RIGHT SIDE */
.blog-right h2 {
    font-size: 2rem;
    color: white;
}

    .blog-right h2 span {
        color: #e7c46c;
    }

.blog-grid {
    margin-top: 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
}

/* BLOG CARD */
.blog-card {
    background: #111;
    padding: 15px;
    border-radius: 14px;
    color: #fff;
}

    .blog-card img {
        width: 100%;
        height: 220px;
        object-fit: cover;
        border-radius: 12px;
    }

.tags span {
    background: #222;
    color: #e7c46c;
    padding: 3px 10px;
    border-radius: 8px;
    font-size: 12px;
    margin-right: 5px;
}

.blog-card h3 {
    margin: 10px 0 5px;
    font-size: 1.2rem;
}

.blog-card p {
    color: #aaa;
    font-size: 0.95rem;
}

/* RESPONSIVE */
@media(max-width: 900px) {
    .blog-container {
        grid-template-columns: 1fr;
    }

    .blog-grid {
        grid-template-columns: 1fr;
    }
}
