* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'poppins', sans-serif;
}

h1,h2,h3,h4,h5,h6{
    font-family: 'poppins', sans-serif;
}

p,a,input,label,textarea,span,ul,li{
    font-family: 'poppins', sans-serif;
}

.blog-section {
    padding-bottom: 150px;
}

.blog-row {
    padding-top: 40px;
    margin: 40px auto;
    max-width: 800px;
    text-align: center;
}

.blog-row h1 {
    font-family: 'Yantramanav', sans-serif;
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.blog-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.blog-grid {
    display: grid;
    grid-template-columns: 1fr minmax(0, 1fr);
    gap: 30px;
}

.featured-post {
    position: relative;
    height: 360px;
    overflow: hidden;
    border-radius: 8px;
}

.featured-post img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.featured-post-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 30px;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    color: white;
}

.category-tag {
    background-color: #005587;
    color: white;
    padding: 4px 12px;
    border-radius: 4px;
    font-size: 14px;
    display: inline-block;
}

.featured-title {
    font-size: 24px;
    margin: 10px 0;
}

.featured-desc {
    font-size: 16px;
    opacity: 0.9;
}

.post-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.post-card {
    display: flex;
    gap: 20px;
}

.post-thumbnail {
    width: 150px;
    height: 100px;
    flex-shrink: 0;
}

.post-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}

.post-content {
    flex-grow: 1;
}

.post-title {
    font-size: 18px;
    color: #333;
    margin-bottom: 8px;
}

.post-category {
    color: #005587;
    margin-bottom: 4px;
}

.post-desc {
    color: #666;
    font-size: 14px;
    line-height: 1.4;
}

@media (max-width: 768px) {
    .blog-grid {
        grid-template-columns: 1fr;
    }

    .featured-post {
        height: 400px;
    }

    .post-card {
        flex-direction: column;
    }

    .post-thumbnail {
        width: 100%;
        height: 200px;
    }
}