/* style.css */

/* 1. General Page Setup */
body {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.7;
    color: #333;
    max-width: 750px;
    margin: 40px auto;
    padding: 0 20px;
    background-color: #ffffff;
}

/* 2. Header and Typography */
header {
    text-align: left;
    margin-bottom: 60px;
    border-bottom: 1px solid #eee;
    padding-bottom: 20px;
}

h1 {
    font-size: 2.5rem;
    margin-bottom: 5px;
    letter-spacing: -1px;
}

h2 {
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #777;
    margin-bottom: 30px;
}

/* 3. The Post List Class */
.post-list {
    list-style: none;
    padding: 0;
}

.post-list li {
    margin-bottom: 40px;
    transition: transform 0.2s ease;
}

/* Post Titles */
.post-list a {
    text-decoration: none;
    color: #1a1a1a;
    font-size: 1.4rem;
    font-weight: 600;
    display: block;
}

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

/* Post Metadata (Dates/Tags) */
.post-date {
    font-size: 0.85rem;
    color: #999;
    display: block;
    margin-bottom: 8px;
}

/* Post Snippets/Teasers */
.post-list p {
    margin-top: 10px;
    color: #555;
    font-size: 1.05rem;
}

/* 4. Footer */
footer {
    margin-top: 80px;
    padding-top: 20px;
    border-top: 1px solid #eee;
    font-size: 0.9rem;
    color: #bbb;
}
