.post-list-2 {
    width: 100%;
}

.post-list-2__item {
    display: flex;
    align-items: flex-start;
    gap: 24px;
    padding: 24px 0;
    border-bottom: 1px solid #eeeeee;
}

.post-list-2__item:first-child {
    padding-top: 0;
}

.post-list-2__image {
    display: block;
    width: 280px;
    min-width: 280px;
    overflow: hidden;
    border-radius: 6px;
    flex-shrink: 0;
}

.post-list-2__image img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 6px;
    transition: transform 0.35s ease;
}

.post-list-2__item:hover .post-list-2__image img {
    transform: scale(1.05);
}

.post-list-2__content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-width: 0;
}

.post-list-2__title {
    font-size: 18px;
    font-weight: 700;
    color: #222222;
    margin: 0 0 10px;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.post-list-2__title a {
    color: inherit;
    text-decoration: none;
}

.post-list-2__title a:hover {
    color: #f28c28;
}

.post-list-2__excerpt {
    font-size: 14px;
    color: #555555;
    line-height: 1.7;
    margin: 0 0 14px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.post-list-2__meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: auto;
}

.post-list-2__meta-left {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.post-list-2__cat {
    display: inline-block;
    padding: 4px 14px;
    border-radius: 4px;
    background-color: #3b82f6;
    color: #ffffff;
    font-size: 12px;
    font-weight: 600;
    white-space: nowrap;
}

.post-list-2__author,
.post-list-2__date {
    font-size: 13px;
    color: #888888;
    white-space: nowrap;
}

.post-list-2__author::before {
    content: '';
}

.post-list-2__date::before {
    content: '·';
    margin-right: 6px;
}

.post-list-2__arrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    font-size: 18px;
    color: #888888;
    text-decoration: none;
    transition: color 0.2s ease;
    flex-shrink: 0;
}

.post-list-2__arrow:hover {
    color: #f28c28;
}

.post-list-2__pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 30px;
}

.post-list-2__page {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
    color: #333333;
    text-decoration: none;
    border: 1px solid #e0e0e0;
    transition: all 0.2s ease;
}

.post-list-2__page:hover {
    background-color: #f5f5f5;
    color: #f28c28;
    border-color: #f28c28;
}

.post-list-2__page.is-current {
    background-color: #f28c28;
    color: #ffffff;
    border-color: #f28c28;
}

@media (max-width: 767px) {
    .post-list-2__item {
        flex-direction: column;
        gap: 12px;
    }

    .post-list-2__image {
        width: 100%;
        min-width: 100%;
    }

    .post-list-2__image img {
        height: 200px;
    }

    .post-list-2__title {
        font-size: 15px;
    }

    .post-list-2__excerpt {
        display: none;
    }

    .post-list-2__meta-left {
        gap: 8px;
    }

    .post-list-2__cat {
        font-size: 11px;
        padding: 3px 10px;
    }

    .post-list-2__author,
    .post-list-2__date {
        font-size: 12px;
    }
}
