body {
    font-family: 'Poppins', sans-serif;
}

.guide-bck-image {
    background: url("/blogs/images/stories-tips-trends-bck-img.png") center/cover no-repeat;
    padding: 75px 20px;
    text-align: center;
}

.description {
    max-width: 650px;
    margin: 20px auto 0;
    color: #4D4D4D;
    font-size: 14px;
}

.blog-header {
    text-align: center;
    margin: 30px 20px 0px;
}

.blog-header h1 {
    font-size: 32px;
    font-weight: 700;
}

.blog-page {
    display: flex;
    justify-content: center;
    padding-bottom: 80px;
}

.blog-list {
    width: 100%;
    max-width: 760px;  
}

.blog-card {
    background: #fff;
    border-radius: 16px;
    padding: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.06);
    margin-bottom: 40px;
    cursor: pointer;
}

.blog-card img {
    width: 100%;
    border-radius: 14px;
    margin-bottom: 16px;
}

.blog-card h3 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 10px;
}

.blog-meta {
    display: flex;
    gap: 10px;
    font-size: 13px;
    color: #777;
    margin-bottom: 6px;
}

.meta-author {
    color: #1a73e8;
    font-weight: 500;
}

@media (max-width: 768px) {
    .blog-header h1 {
        font-size: 26px;
    }
    .blog-header {
        text-align: center;
        margin: 15px 20px 0px;
    }
    .blog-list {
        max-width: 100%;
        padding: 0 16px;
    }

    .blog-card {
        padding: 16px;
    }

    .blog-card h3 {
        font-size: 18px;
    }
}
