/* --------------------------
   Blog List Hero
--------------------------- */
.hero-blogs h1 {
    font-size: clamp(2.5rem, 6vw, 5rem);
    font-weight: 800;
    letter-spacing: 2px;
    color: #111;
    margin-bottom: 0.5rem;
}

.hero-blogs p {
    font-size: clamp(1rem, 2.5vw, 1.2rem);
    font-weight: 400;
    color: rgba(17, 17, 17, 0.8);
    max-width: 700px;
    margin: 0 auto;
}

/* --------------------------
   Blog List Section
--------------------------- */
.blog-list {
    max-width: 900px;
    margin: 3rem auto 6rem auto;
    padding: 0 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

/* Blog Row */
.blog-card {
    display: flex;
    flex-direction: column;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 8px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    padding: 1rem 1.5rem;
    transition: background 0.25s ease, transform 0.25s ease,
        box-shadow 0.25s ease;
    cursor: pointer;
    text-decoration: none;
    color: #111;
    margin-bottom: 1rem;
}

.blog-card:hover {
    background: rgba(255, 255, 255, 1);
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.08);
}

.blog-card h3 {
    margin: 0;
    font-size: 1.25rem;
    font-weight: 700;
    line-height: 1.3;
    color: #111;
}

.blog-card p {
    margin: 0.4rem 0 0 0;
    font-size: 1rem;
    color: rgba(17, 17, 17, 0.7);
}

.blog-card .blog-date {
    font-size: 0.85rem;
    color: rgba(17, 17, 17, 0.5);
    margin-top: 0.1rem;
}

/* Add subtle separator between rows */
.blog-card + .blog-card {
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

/* --------------------------
   Responsive
--------------------------- */
@media (max-width: 768px) {
    .hero-blogs {
        height: 100vh;
        padding: 0 1rem;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        text-align: center;
    }

    .hero-blogs h1 {
        font-size: clamp(2rem, 6vw, 3rem);
        margin-bottom: 0.5rem;
    }

    .hero-blogs p {
        font-size: clamp(1rem, 3vw, 1.2rem);
        max-width: 90%;
    }

    .blog-list {
        max-width: 100%;       
        padding: 0 1rem;     
        display: flex;
        flex-direction: column;
        align-items: center; 
        gap: 1rem;
    }

    .blog-card {
        width: 100%;         
        max-width: 500px;      
        text-align: left;    
    }

    .blog-card h3 {
        font-size: 1.1rem;
    }

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

    .blog-card .blog-date {
        font-size: 0.8rem;
    }
}
