.wpt-custome3-post-item {
    display: flex;
    align-items: center;
    padding: 10px;
    border-bottom: 1px solid #e0e0e0;
    transition: background 0.3s ease-in-out, transform 0.2s ease-in-out;
    gap: 15px;
    border-radius: 8px;
}

.wpt-custome3-post-item:hover {
    background: #f0f8ff; /* Warna biru muda saat hover */
    transform: scale(1.02);
}

.wpt-custome3-thumb {
    width: 80px;
    height: 80px;
    border-radius: 8px;
    overflow: hidden;
    background: #eee;
    flex-shrink: 0;
    box-shadow: 2px 2px 8px rgba(0, 0, 0, 0.1);
}

.wpt-custome3-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}

.wpt-custome3-post-content {
    flex: 1;
    transition: color 0.3s ease-in-out;
}

.wpt-custome3-post-info {
    font-size: 14px;
    font-weight: 600;
    color: #333;
    text-decoration: none;
    transition: color 0.3s ease-in-out;
    display: block;
    line-height: 1.4;
}

.wpt-custome3-post-info a {
    color: #222;
    text-decoration: none;
    transition: color 0.3s ease-in-out;
}

.wpt-custome3-post-item:hover .wpt-custome3-post-info a {
    color: #007bff; /* Warna biru terang saat hover */
    text-decoration: underline;
}

.wpt-custome3-meta {
    font-size: 12px;
    color: #777;
    margin-top: 5px;
    font-style: italic;
}