body {
    font-family: Poppins, Arial, sans-serif;
    margin: 40px auto;
    max-width: 800px;
    padding: 0 20px;
    line-height: 1.6;
    color: #222;
    text-align: center;
}

header {
    text-align: center;
    margin-bottom: 40px;
}

.subtitle {
    color: #555;
    font-size: 18px;
}

h1, h2 {
    margin-bottom: 20px;
}

#post-list a {
    display: block;
    padding: 15px;
    margin-bottom: 15px;
    border: 1px solid #ddd;
    border-radius: 6px;
    text-decoration: none;
    color: #222;
    transition: 0.2s;
}

#post-list a:hover {
    background: #f5f5f5;
}

.post h1 {
    margin-bottom: 10px;
}

.date {
    color: #777;
    font-size: 14px;
    margin-bottom: 20px;
}

.feature-image img {
    width: 100%;
    max-width: 760px;
    height: auto;
    object-fit: cover;
    border-radius: 6px;
    display: block;
    margin: 0 auto 20px auto; /* centers the image */
}


p,
h2,
ul {
    text-align: left;
}

.date {
    text-align: right;
}

.home-button {
    display: inline-block;
    margin-bottom: 20px;
    padding: 8px 14px;
    background-color: #333;
    color: white;
    text-decoration: none;
    border-radius: 4px;
    font-size: 14px;
}

.home-button:hover {
    background-color: #555;
}

.top-banner {
    width: 100%;
    max-height: 499px;   /* controls how tall the banner can get */
    object-fit: cover;   /* crops the image nicely instead of stretching */
    display: block;
}


