body {
    color: #333;
}

.banner-container {
    width: 100%;
    height: 850px;
    overflow: hidden;
    margin-bottom: 40px;
}

.banner-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.post-list-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.post {
    display: flex;
    padding: 30px 0;
    border-bottom: 1px solid #e0e0e0;
    position: relative;
}

.post::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 1px;
    background: linear-gradient(to right, transparent, #bdc3c7, transparent);
}

.post:last-child {
    border-bottom: none;
}

.post:last-child::after {
    display: none;
}

.post-image {
    width: 300px;
    height: 200px;
    object-fit: cover;
    margin-right: 30px;
    border-radius: 5px;
}

.post-content {
    flex-grow: 1;
}

.post-title {
    font-size: 1.6em;
    margin: 0 0 15px 0;
    color: #2c3e50;
}

.post-title a {
    color: #2c3e50;
    text-decoration: none;
    transition: color 0.3s ease;
}

.post-title a:hover {
    color: #3498db;
}

.post-subtitle {
    font-size: 1.2em;
    color: #7f8c8d;
    margin: 0 0 15px 0;
}

.post-date {
    font-size: 0.9em;
    color: #95a5a6;
}

.pagination {
    display: flex;
    justify-content: center;
    list-style: none;
    padding: 30px 0;
}

.pagination li {
    margin: 0 5px;
}

.pagination a {
    text-decoration: none;
    color: #3498db;
    padding: 8px 15px;
    border: 1px solid #3498db;
    border-radius: 3px;
    transition: all 0.3s ease;
}

.pagination a:hover {
    background-color: #3498db;
    color: white;
}

.pagination .active a {
    background-color: #3498db;
    color: white;
}

@media (max-width: 768px) {
    .banner-container {
        height: 200px;
    }

    .post {
        flex-direction: column;
    }

    .post-image {
        width: 100%;
        height: auto;
        margin-right: 0;
        margin-bottom: 15px;
    }
}