
body {
    background-color: #fff;
    color: #000;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    line-height: 1.8;
    max-width: 800px;
    margin: 40px auto;
    padding: 0 20px;
}
h1 {
    color: #031123;
    font-size: 2.5em;
    margin-bottom: 1em;
    border-bottom: 2px solid #2e5991;
    padding-bottom: 0.2em;
}
a {
    color: #2e5991;
    text-decoration: none;
    transition: color 0.2s ease-in-out;
}
a:hover {
    color: #031123;
}
hr {
    border: none;
    border-top: 1px solid #eee;
    margin: 40px 0;
}
ul {
    list-style-type: none;
    padding: 0;
}
.post-list-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
    border-bottom: 1px solid #eee;
    padding-bottom: 25px;
}
.post-list-item:last-child {
    border-bottom: none;
}
.post-list-item img {
    width: 150px;
    height: 150px;
    object-fit: cover;
    margin-right: 20px;
    border-radius: 5px;
}
.post-list-item-content {
    flex: 1;
}
.post-list-item-content a {
    font-size: 1.3em;
    font-weight: bold;
    display: block;
    margin-bottom: 5px;
}
