/* General Body Styles */
body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
    color: #333;
}

/* Header Styles */
header {
    background: #333;
    color: #fff;
    padding: 1rem 0;
    text-align: center;
}

header h1 {
    margin: 0;
    font-size: 2.5rem;
}

/* Main Content Styles */
main {
    width: 90%;
    max-width: 800px;
    margin: 2rem auto;
    padding: 1rem;
    background: #fff;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

.blog-posts {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

/* Post Summary Styles */
.post-summary {
    border-bottom: 1px solid #ddd;
    padding-bottom: 1.5rem;
}

.post-summary:last-child {
    border-bottom: none;
}

.post-summary h2 {
    margin-top: 0;
}

.post-summary h2 a {
    text-decoration: none;
    color: #333;
    transition: color 0.3s ease;
}

.post-summary h2 a:hover {
    color: #007bff;
}

.post-summary p {
    margin-bottom: 1rem;
}

.read-more {
    text-decoration: none;
    background: #007bff;
    color: #fff;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.read-more:hover {
    background: #0056b3;
}

/* Footer Styles */
footer {
    text-align: center;
    padding: 1rem 0;
    background: #333;
    color: #fff;
    margin-top: 2rem;
}

/* Responsive Design */
@media (max-width: 600px) {
    header h1 {
        font-size: 2rem;
    }

    main {
        width: 100%;
        margin: 1rem 0;
        padding: 0.5rem;
    }
}