body {
    font-family: Arial, sans-serif; 
    margin: 0;
    padding: 0;
    display: flex; 
    justify-content: center; 
    align-items: center; 
    min-height: 100vh; 
    background-color: #f9f9f9;
}

.container {
    width: 100%; 
    padding: 20px; 
    text-align: center; 
}

.heading {
    font-size: clamp(2rem, 2.5rem + 1vw, 3rem); 
    margin-bottom: 10px; 
    font-family: 'Source Sans Pro', sans-serif;
    font-weight: 700;
}

.subheading {
    font-size: clamp(1rem, 1.2rem + 1vw, 1.5rem);
    margin-bottom: 40px; 
    font-family: 'Source Sans Pro', sans-serif;
    font-weight: 300;
}

.blog-posts {
    width: 100%;
    display: flex; 
    justify-content: center;
    align-items: center;
    flex-direction: column; 
    gap: 20px; 
}

.blog-post {
    display: flex; 
    align-items: flex-start; 
    padding: 20px; 
    width: 80%;
    height: auto;
    background-color: #fff; 
    border: 1px solid #ccc; 
    border-radius: 10px; 
}

.blog-post img {
    width: 200px; 
    height: 200px; 
    border-radius: 10px; 
    margin-right: 20px; 
}

.post-content {
    text-align: left; 
    flex: 1;
}

.date {
    font-size: 0.9rem; 
    color: #888; 
}

.category {
    font-size: 0.9rem; 
    color: #888;
}

.title {
    font-size: 1.5rem;
    margin: 10px 0; 
    font-family: 'Source Sans Pro', sans-serif;
    font-weight: 700;
}

.excerpt {
    margin: 10px 0; 
    font-family: 'Source Sans Pro', sans-serif;
    font-weight: 300;
}

.author {
    font-size: 0.9rem; 
    color: #888;
}
